From 02b55757cccfc66510b8a7e4c8a138229bc51123 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Thu, 21 Apr 2022 10:20:48 +0530 Subject: [PATCH 01/18] Support client encryption policy during container creation --- src/CosmosDB/CosmosDB/Helpers/Constants.cs | 1 + .../Models/PSClientEncryptionIncludedPath.cs | 59 ++++++ .../Models/PSClientEncryptionPolicy.cs | 180 ++++++++++++++++++ .../Sql/PSSqlClientEncryptionIncludedPath.cs | 29 +++ .../Models/Sql/PSSqlClientEncryptionPolicy.cs | 35 ++++ .../PSSqlContainerGetPropertiesResource.cs | 6 + .../CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs | 11 +- 7 files changed, 320 insertions(+), 1 deletion(-) create mode 100644 src/CosmosDB/CosmosDB/Models/PSClientEncryptionIncludedPath.cs create mode 100644 src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs create mode 100644 src/CosmosDB/CosmosDB/Models/Sql/PSSqlClientEncryptionIncludedPath.cs create mode 100644 src/CosmosDB/CosmosDB/Models/Sql/PSSqlClientEncryptionPolicy.cs diff --git a/src/CosmosDB/CosmosDB/Helpers/Constants.cs b/src/CosmosDB/CosmosDB/Helpers/Constants.cs index f73377a77b02..9b4691e38eab 100644 --- a/src/CosmosDB/CosmosDB/Helpers/Constants.cs +++ b/src/CosmosDB/CosmosDB/Helpers/Constants.cs @@ -90,6 +90,7 @@ internal static class Constants public const string SqlUniqueKeyPolciyHelpMessage = "UniqueKeyPolicy Object of type Microsoft.Azure.Commands.CosmosDB.PSSqlUniqueKeyPolicy. "; public const string UniqueKeyPolciyHelpMessage = "UniqueKeyPolicy Object of type Microsoft.Azure.Commands.CosmosDB.PSUniqueKeyPolicy. "; public const string SqlConflictResolutionPolicyHelpMessage = "ConflictResolutionPolicy Object of type PSSqlConflictResolutionPolicy, when provided this is set as the ConflictResolutionPolicy of the container."; + public const string SqlClientEncryptionPolicyHelpMessage = "ClientEncryptionPolicy Object of type PSSqlClientEncryptionPolicy, when provided this is set as the ClientEncryptionPolicy of the container."; public const string ConflictResolutionPolicyHelpMessage = "ConflictResolutionPolicy Object of type PSConflictResolutionPolicy, when provided this is set as the ConflictResolutionPolicy of the container."; public const string PartitionKeyPathHelpMessage = "Partition Key Path, e.g., '/address/zipcode'."; public const string SqlContainerThroughputHelpMessage = "The throughput of SQL container (RU/s). Default value is 400."; diff --git a/src/CosmosDB/CosmosDB/Models/PSClientEncryptionIncludedPath.cs b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionIncludedPath.cs new file mode 100644 index 000000000000..276e339f2100 --- /dev/null +++ b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionIncludedPath.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.CosmosDB.Models; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.CosmosDB.Models +{ + public class PSClientEncryptionIncludedPath + { + public PSClientEncryptionIncludedPath() + { + } + + public PSClientEncryptionIncludedPath(ClientEncryptionIncludedPath clientEncryptionIncludedPath) + { + if (clientEncryptionIncludedPath == null) + { + return; + } + + Path = clientEncryptionIncludedPath.Path; + ClientEncryptionKeyId = clientEncryptionIncludedPath.ClientEncryptionKeyId; + EncryptionType = clientEncryptionIncludedPath.EncryptionType; + EncryptionAlgorithm = clientEncryptionIncludedPath.EncryptionAlgorithm; + } + + /// + /// Gets or sets the path to be encrypted. Must be a top level path, eg. /salary + /// + public string Path { get; set; } + + /// + /// Gets or sets the identifier of the Client Encryption Key to be used to encrypt the path. + /// + public string ClientEncryptionKeyId { get; set; } + + /// + /// Gets or sets the type of encryption to be performed. Eg - Deterministic, Randomized + /// + public string EncryptionType { get; set; } + + /// + /// Gets or sets the encryption algorithm which will be used. Eg - AEAD_AES_256_CBC_HMAC_SHA256 + /// + public string EncryptionAlgorithm { get; set; } + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs new file mode 100644 index 000000000000..6a6998108fc9 --- /dev/null +++ b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs @@ -0,0 +1,180 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.CosmosDB.Models; +using Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.Models; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; + +namespace Microsoft.Azure.Commands.CosmosDB.Models +{ + + public class PSClientEncryptionPolicy + { + public PSClientEncryptionPolicy() + { + } + + public PSClientEncryptionPolicy(ClientEncryptionPolicy clientEncryptionPolicy) + { + if (clientEncryptionPolicy == null) + { + return; + } + + if (ModelHelper.IsNotNullOrEmpty(clientEncryptionPolicy.IncludedPaths)) + { + PSClientEncryptionPolicy.ValidateIncludedPaths(clientEncryptionPolicy.IncludedPaths); + + IncludedPaths = new List(); + foreach (ClientEncryptionIncludedPath key in clientEncryptionPolicy.IncludedPaths) + { + IncludedPaths.Add(new PSClientEncryptionIncludedPath(key)); + } + } + + this.PolicyFormatVersion = (int)clientEncryptionPolicy.PolicyFormatVersion; + } + + // + // Summary: + // Gets or sets list of unique keys on that enforces uniqueness constraint on documents + // in the collection in the Azure Cosmos DB service. + public IList IncludedPaths { get; set; } + + /// + /// Version of the client encryption policy definition. + /// + public int PolicyFormatVersion { get; private set; } + + public static ClientEncryptionPolicy ToSDKModel(PSClientEncryptionPolicy pSClientEncryptionPolicy, List partitionKeyPathTokens) + { + if (pSClientEncryptionPolicy == null) + { + return null; + } + + ClientEncryptionPolicy clientEncryptionPolicy = new ClientEncryptionPolicy + { + IncludedPaths = new List(), + PolicyFormatVersion = pSClientEncryptionPolicy.PolicyFormatVersion + }; + + if (ModelHelper.IsNotNullOrEmpty(pSClientEncryptionPolicy.IncludedPaths)) + { + foreach (PSClientEncryptionIncludedPath includedPath in pSClientEncryptionPolicy.IncludedPaths) + { + ClientEncryptionIncludedPath clientEncryptionIncludedPath = new ClientEncryptionIncludedPath + { + Path = includedPath.Path, + ClientEncryptionKeyId = includedPath.ClientEncryptionKeyId, + EncryptionAlgorithm = includedPath.EncryptionAlgorithm, + EncryptionType = includedPath.EncryptionType + }; + + clientEncryptionPolicy.IncludedPaths.Add(clientEncryptionIncludedPath); + } + } + + PSClientEncryptionPolicy.ValidatePartitionKeyPathsAreNotEncrypted(clientEncryptionPolicy.IncludedPaths, partitionKeyPathTokens); + + if(clientEncryptionPolicy.PolicyFormatVersion != 1) + { + throw new InvalidOperationException($"Invalid PolicyFormatVersion:{clientEncryptionPolicy.PolicyFormatVersion} used in Client Encryption Policy. "); + } + + return clientEncryptionPolicy; + } + + /// + /// Ensures that partition key paths are not specified in the client encryption policy for encryption. + /// + /// Tokens corresponding to validated partition key. + private static void ValidatePartitionKeyPathsAreNotEncrypted(IEnumerable clientEncryptionIncludedPath, List partitionKeyPathTokens) + { + Debug.Assert(partitionKeyPathTokens != null); + IEnumerable propertiesToEncrypt = clientEncryptionIncludedPath.Select(p => p.Path.Substring(1)); + foreach (string tokenInPath in partitionKeyPathTokens) + { + Debug.Assert(String.IsNullOrEmpty(tokenInPath)); + if (propertiesToEncrypt.Contains(tokenInPath.Substring(1))) + { + throw new ArgumentException($"Paths which are part of the partition key({tokenInPath}) may not be included in the Client Encryption Policy. "); + } + } + } + + private static void ValidateIncludedPaths(IEnumerable clientEncryptionIncludedPath) + { + List includedPathsList = new List(); + foreach (ClientEncryptionIncludedPath path in clientEncryptionIncludedPath) + { + PSClientEncryptionPolicy.ValidateClientEncryptionIncludedPath(path); + if (includedPathsList.Contains(path.Path)) + { + throw new ArgumentException($"Duplicate Path({path.Path}) found.", nameof(clientEncryptionIncludedPath)); + } + + includedPathsList.Add(path.Path); + } + } + + private static void ValidateClientEncryptionIncludedPath(ClientEncryptionIncludedPath clientEncryptionIncludedPath) + { + if (clientEncryptionIncludedPath == null) + { + throw new ArgumentNullException(nameof(clientEncryptionIncludedPath)); + } + + if (string.IsNullOrWhiteSpace(clientEncryptionIncludedPath.Path)) + { + throw new ArgumentNullException(nameof(clientEncryptionIncludedPath.Path)); + } + + if (clientEncryptionIncludedPath.Path[0] != '/' + || clientEncryptionIncludedPath.Path.LastIndexOf('/') != 0 + || string.Equals(clientEncryptionIncludedPath.Path.Substring(1), "id")) + { + throw new ArgumentException($"Invalid path '{clientEncryptionIncludedPath.Path ?? string.Empty}'."); + } + + if (string.IsNullOrWhiteSpace(clientEncryptionIncludedPath.ClientEncryptionKeyId)) + { + throw new ArgumentNullException(nameof(clientEncryptionIncludedPath.ClientEncryptionKeyId)); + } + + if (string.IsNullOrWhiteSpace(clientEncryptionIncludedPath.EncryptionType)) + { + throw new ArgumentNullException(nameof(clientEncryptionIncludedPath.EncryptionType)); + } + + if (!string.Equals(clientEncryptionIncludedPath.EncryptionType, "Deterministic") && + !string.Equals(clientEncryptionIncludedPath.EncryptionType, "Randomized")) + { + throw new ArgumentException("EncryptionType should be either 'Deterministic' or 'Randomized'. ", nameof(clientEncryptionIncludedPath)); + } + + if (string.IsNullOrWhiteSpace(clientEncryptionIncludedPath.EncryptionAlgorithm)) + { + throw new ArgumentNullException(nameof(clientEncryptionIncludedPath.EncryptionAlgorithm)); + } + + if (!string.Equals(clientEncryptionIncludedPath.EncryptionAlgorithm, "AEAD_AES_256_CBC_HMAC_SHA256")) + { + throw new ArgumentException("EncryptionAlgorithm should be 'AEAD_AES_256_CBC_HMAC_SHA256'. ", nameof(clientEncryptionIncludedPath)); + } + } + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/Models/Sql/PSSqlClientEncryptionIncludedPath.cs b/src/CosmosDB/CosmosDB/Models/Sql/PSSqlClientEncryptionIncludedPath.cs new file mode 100644 index 000000000000..9fdbbc2b2f56 --- /dev/null +++ b/src/CosmosDB/CosmosDB/Models/Sql/PSSqlClientEncryptionIncludedPath.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.CosmosDB.Models; + +namespace Microsoft.Azure.Commands.CosmosDB.Models +{ + public class PSSqlClientEncryptionIncludedPath : PSClientEncryptionIncludedPath + { + public PSSqlClientEncryptionIncludedPath() : base() + { + } + + public PSSqlClientEncryptionIncludedPath(ClientEncryptionIncludedPath clientEncryptionIncludedPath) : base(clientEncryptionIncludedPath) + { + } + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/Models/Sql/PSSqlClientEncryptionPolicy.cs b/src/CosmosDB/CosmosDB/Models/Sql/PSSqlClientEncryptionPolicy.cs new file mode 100644 index 000000000000..c7c9f263ae2d --- /dev/null +++ b/src/CosmosDB/CosmosDB/Models/Sql/PSSqlClientEncryptionPolicy.cs @@ -0,0 +1,35 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.CosmosDB.Models; + +namespace Microsoft.Azure.Commands.CosmosDB.Models +{ + + public class PSSqlClientEncryptionPolicy : PSClientEncryptionPolicy + { + public PSSqlClientEncryptionPolicy() : base() + { + } + + public PSSqlClientEncryptionPolicy(ClientEncryptionPolicy clientEncryptionPolicy) : base(PSSqlClientEncryptionPolicy.SetSupportedPolicyVersionOnClientEncryptionPolicy(clientEncryptionPolicy)) + { + } + + private static ClientEncryptionPolicy SetSupportedPolicyVersionOnClientEncryptionPolicy(ClientEncryptionPolicy clientEncryptionPolicy) + { + clientEncryptionPolicy.PolicyFormatVersion = 1; + return clientEncryptionPolicy; + } + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/Models/Sql/PSSqlContainerGetPropertiesResource.cs b/src/CosmosDB/CosmosDB/Models/Sql/PSSqlContainerGetPropertiesResource.cs index 7f9a32c33288..a3ce51484a23 100644 --- a/src/CosmosDB/CosmosDB/Models/Sql/PSSqlContainerGetPropertiesResource.cs +++ b/src/CosmosDB/CosmosDB/Models/Sql/PSSqlContainerGetPropertiesResource.cs @@ -34,6 +34,7 @@ public PSSqlContainerGetPropertiesResource(SqlContainerGetPropertiesResource sql PartitionKey = new PSContainerPartitionKey(sqlContainerGetPropertiesResource.PartitionKey); DefaultTtl = sqlContainerGetPropertiesResource.DefaultTtl; UniqueKeyPolicy = new PSUniqueKeyPolicy(sqlContainerGetPropertiesResource.UniqueKeyPolicy); + ClientEncryptionPolicy = new PSClientEncryptionPolicy(sqlContainerGetPropertiesResource.ClientEncryptionPolicy); ConflictResolutionPolicy = new PSConflictResolutionPolicy(sqlContainerGetPropertiesResource.ConflictResolutionPolicy); AnalyticalStorageTtl = (int?)sqlContainerGetPropertiesResource.AnalyticalStorageTtl; _rid = sqlContainerGetPropertiesResource._rid; @@ -68,6 +69,11 @@ public PSSqlContainerGetPropertiesResource(SqlContainerGetPropertiesResource sql // Summary: // Gets or sets the conflict resolution policy for the container. public PSConflictResolutionPolicy ConflictResolutionPolicy { get; set; } + // + // Summary: + // Gets or sets the client encryption policy for the container. + public PSClientEncryptionPolicy ClientEncryptionPolicy { get; set; } + // // Summary: // Gets or sets analytical TTL. diff --git a/src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs b/src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs index da1f2569c328..6113e76a79bf 100644 --- a/src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs +++ b/src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs @@ -91,6 +91,10 @@ public class NewAzCosmosDBSqlContainer : AzureCosmosDBCmdletBase [ValidateNotNull] public PSSqlConflictResolutionPolicy ConflictResolutionPolicy { get; set; } + [Parameter(Mandatory = false, ValueFromPipeline = true, HelpMessage = Constants.SqlClientEncryptionPolicyHelpMessage)] + [ValidateNotNull] + public PSSqlClientEncryptionPolicy ClientEncryptionPolicy { get; set; } + [Parameter(Mandatory = false, HelpMessage = Constants.SqlContainerAnalyticalStorageTtlHelpMessage)] public int? AnalyticalStorageTtl { get; set; } @@ -156,6 +160,11 @@ public override void ExecuteCmdlet() sqlContainerResource.ConflictResolutionPolicy = PSConflictResolutionPolicy.ToSDKModel(ConflictResolutionPolicy); } + if (ClientEncryptionPolicy != null) + { + sqlContainerResource.ClientEncryptionPolicy = PSClientEncryptionPolicy.ToSDKModel(ClientEncryptionPolicy, Paths); + } + if (ConflictResolutionPolicyMode != null) { ConflictResolutionPolicy conflictResolutionPolicy = new ConflictResolutionPolicy @@ -184,7 +193,7 @@ public override void ExecuteCmdlet() { sqlContainerResource.AnalyticalStorageTtl = AnalyticalStorageTtl; } - + CreateUpdateOptions options = ThroughputHelper.PopulateCreateUpdateOptions(Throughput, AutoscaleMaxThroughput); SqlContainerCreateUpdateParameters sqlContainerCreateUpdateParameters = new SqlContainerCreateUpdateParameters From 27c5327086aed584167554be000a831b5dcdc080 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Tue, 26 Apr 2022 15:30:49 +0530 Subject: [PATCH 02/18] Update SqlOperationsTests.ps1 --- .../ScenarioTests/SqlOperationsTests.ps1 | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 index 080aeeefaa2f..824bd6e2d3fe 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 @@ -896,6 +896,8 @@ function Test-ClientEncryptionKeyCmdlets $DatabaseName = "dbNameCdbAE" $ClientEncryptionKeyName = "cek1" $EncryptionAlgorithm = "AEAD_AES_256_CBC_HMAC_SHA256" + $EncryptionType_1 = "Deterministic" + $EncryptionType_2 = "Randomized" $keywrapmetadataName = "cmk1v1" $keywrapmetadataName2 = "cmk1v2" $keywrapmetadataType = "AZURE_KEY_VAULT" @@ -932,6 +934,7 @@ function Test-ClientEncryptionKeyCmdlets Remove-AzKeyVault -VaultName $vaultName -InRemovedState -Force -Location $location } catch{} + $encryptionKeyVault=New-AzKeyVault -VaultName $vaultName -ResourceGroupName $rgName -Location $location # add access police for key-vault @@ -985,6 +988,37 @@ function Test-ClientEncryptionKeyCmdlets Assert-AreEqual $UpdatedClientEncryptionKey.Resource.keyWrapMetadata.type $keywrapmetadataType Assert-AreEqual $UpdatedClientEncryptionKey.Resource.keyWrapMetadata.value $encryptionKey2 Assert-AreEqual $UpdatedClientEncryptionKey.Resource.keyWrapMetadata.algorithm $keywrapmetadataAlgo + + #Test - validate client encryption policy creation. + $includedPath_1 = [Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionIncludedPath]::new("/path1",$ClientEncryptionKeyName,$EncryptionType_1,$EncryptionAlgorithm); + $includedPath_2 = [Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionIncludedPath]::new("/path2",$ClientEncryptionKeyName,$EncryptionType_2,$EncryptionAlgorithm); + $listofIncludedPaths = New-Object Collections.Generic.List[Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionIncludedPath] + $listofIncludedPaths.Add($includedPath_1) + $listofIncludedPaths.Add($includedPath_2) + $newClientEncryptionPolicy = New-Object Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionPolicy + $newClientEncryptionPolicy.IncludedPaths = $listofIncludedPaths + #verify the default policy version 1 is picked up + $newClientEncryptionPolicy.PolicyFormatVersion = 187 + $newPSSqlClientEncryptionPolicy = [Microsoft.Azure.Commands.CosmosDB.Models.PSSqlClientEncryptionPolicy]::new($newClientEncryptionPolicy) + + $ContainerWithEncryptionPolicy = "containerWithEncryptionPolicy" + #create a container with the above policy + New-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerWithEncryptionPolicy -PartitionKeyPath "/pk" -PartitionKeyKind Hash -ClientEncryptionPolicy $newPSSqlClientEncryptionPolicy + + $ContainerWithEncryptionPolicy = Get-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerWithEncryptionPolicy + + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[0].Path "/path1" + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[0].ClientEncryptionKeyId $ClientEncryptionKeyName + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[0].EncryptionAlgorithm $EncryptionAlgorithm + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[0].EncryptionType $EncryptionType_1 + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.PolicyFormatVersion 1 + + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[1].Path "/path2" + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[1].ClientEncryptionKeyId $ClientEncryptionKeyName + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[1].EncryptionAlgorithm $EncryptionAlgorithm + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[1].EncryptionType $EncryptionType_2 + Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.PolicyFormatVersion 1 + } Finally { Remove-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName From e2f7ab6165a1917a598d86459b80e251266eb693 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Tue, 26 Apr 2022 16:10:11 +0530 Subject: [PATCH 03/18] Update New-AzCosmosDBSqlContainer.md --- .../help/New-AzCosmosDBSqlContainer.md | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md index fd17b6405031..8a70897d8e14 100644 --- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md +++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md @@ -20,8 +20,8 @@ New-AzCosmosDBSqlContainer -ResourceGroupName -AccountName -Da [-AutoscaleMaxThroughput ] [-TtlInSeconds ] [-UniqueKeyPolicy ] [-ConflictResolutionPolicyMode ] [-ConflictResolutionPolicyPath ] [-ConflictResolutionPolicyProcedure ] [-ConflictResolutionPolicy ] - [-AnalyticalStorageTtl ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-ClientEncryptionPolicy ] [-AnalyticalStorageTtl ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByParentObjectParameterSet @@ -31,8 +31,9 @@ New-AzCosmosDBSqlContainer -Name [-IndexingPolicy [-AutoscaleMaxThroughput ] [-TtlInSeconds ] [-UniqueKeyPolicy ] [-ConflictResolutionPolicyMode ] [-ConflictResolutionPolicyPath ] [-ConflictResolutionPolicyProcedure ] [-ConflictResolutionPolicy ] - [-AnalyticalStorageTtl ] -ParentObject - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ClientEncryptionPolicy ] [-AnalyticalStorageTtl ] + -ParentObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -101,6 +102,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ClientEncryptionPolicy +ClientEncryptionPolicy Object of type PSSqlClientEncryptionPolicy, when provided this is set as the ClientEncryptionPolicy of the container. + +```yaml +Type: Microsoft.Azure.Commands.CosmosDB.Models.PSSqlClientEncryptionPolicy +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -ConflictResolutionPolicy ConflictResolutionPolicy Object of type PSSqlConflictResolutionPolicy, when provided this is set as the ConflictResolutionPolicy of the container. From 6cd0df8a4ef811478f5f4ce0841565be1cbe9464 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Thu, 5 May 2022 10:10:44 +0530 Subject: [PATCH 04/18] Update PSClientEncryptionPolicy.cs --- src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs index 6a6998108fc9..4da8f40120ee 100644 --- a/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs +++ b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs @@ -48,11 +48,10 @@ public PSClientEncryptionPolicy(ClientEncryptionPolicy clientEncryptionPolicy) this.PolicyFormatVersion = (int)clientEncryptionPolicy.PolicyFormatVersion; } - // - // Summary: - // Gets or sets list of unique keys on that enforces uniqueness constraint on documents - // in the collection in the Azure Cosmos DB service. - public IList IncludedPaths { get; set; } + /// + /// Gets or sets paths of the item that need encryption along with path-specific settings. + /// + public IList IncludedPaths { get; private set; } /// /// Version of the client encryption policy definition. From 5bfcd30cffa4c65c2a528f8eaf4a6bb8657393ef Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Thu, 5 May 2022 10:18:55 +0530 Subject: [PATCH 05/18] Update NewAzCosmosDBSqlContainer.cs --- src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs b/src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs index 6113e76a79bf..8dedddef2b79 100644 --- a/src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs +++ b/src/CosmosDB/CosmosDB/SQL/NewAzCosmosDBSqlContainer.cs @@ -193,7 +193,7 @@ public override void ExecuteCmdlet() { sqlContainerResource.AnalyticalStorageTtl = AnalyticalStorageTtl; } - + CreateUpdateOptions options = ThroughputHelper.PopulateCreateUpdateOptions(Throughput, AutoscaleMaxThroughput); SqlContainerCreateUpdateParameters sqlContainerCreateUpdateParameters = new SqlContainerCreateUpdateParameters From 8f53054f7c0ee14d8b8c339370a105790e79123e Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Thu, 5 May 2022 10:28:37 +0530 Subject: [PATCH 06/18] Update ChangeLog.md --- src/CosmosDB/CosmosDB/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index 5a9d922f9cc7..96d70c56abaf 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Introduced support for creating containers with Client Encryption Policy. The current supported version of Client Encryption Policy is 1. ## Version 1.7.0 * Introduced support for client encryption key resource management required for CosmosDB Client-Side Encryption by adding support for creating, updating and retrieving client encryption keys with following cmdlets: `Get-AzCosmosDbClientEncryptionKey`, `New-AzCosmosDbClientEncryptionKey` and `Update-AzCosmosDbClientEncryptionKey` From 758a3ec6502b6c2170d432ac8b87c26f6f7a8c94 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Thu, 12 May 2022 12:34:29 +0530 Subject: [PATCH 07/18] Updated package. --- src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj | 2 +- src/CosmosDB/CosmosDB/CosmosDB.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj index dd5e67bc91b2..2d2042fa986a 100644 --- a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj +++ b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj @@ -5,7 +5,7 @@ - + diff --git a/src/CosmosDB/CosmosDB/CosmosDB.csproj b/src/CosmosDB/CosmosDB/CosmosDB.csproj index db17f2f81de8..78ae462544e2 100644 --- a/src/CosmosDB/CosmosDB/CosmosDB.csproj +++ b/src/CosmosDB/CosmosDB/CosmosDB.csproj @@ -7,7 +7,7 @@ - + \ No newline at end of file From ff1cf28dce6a27e2d295e2bb9eb659f430fc42fd Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Thu, 12 May 2022 12:51:02 +0530 Subject: [PATCH 08/18] Update CosmosDB.Test.csproj --- src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj index 2d2042fa986a..caa8a754088f 100644 --- a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj +++ b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj @@ -6,6 +6,6 @@ - + From 82bfd1d16503494849a841d843c98542f3ad050d Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Thu, 12 May 2022 16:06:25 +0530 Subject: [PATCH 09/18] Updated example, session records. --- .../TestAccountRelatedCmdlets.json | 1404 +- .../TestAccountRelatedCmdletsUsingObject.json | 1238 +- .../TestAccountRelatedCmdletsUsingRid.json | 870 +- .../TestAddRegionOperation.json | 380 +- ...AnalyticalStorageSchemaTypeNewAccount.json | 736 +- ...lyticalStorageSchemaTypeUpdateAccount.json | 838 +- .../TestCosmosDBLocations.json | 48 +- .../TestPrivateEndpoint.json | 83599 +--------------- .../TestCassandraCreateUpdateGetCmdlets.json | 1100 +- ...ssandraCreateUpdateGetCmdletsByPiping.json | 1194 +- ...TestCassandraMigrateThroughputCmdlets.json | 1088 +- .../TestCassandraThroughputCmdlets.json | 1174 +- .../help/New-AzCosmosDBSqlContainer.md | 22 + 13 files changed, 10447 insertions(+), 83244 deletions(-) diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdlets.json index 6f5432194c5f..4da8188979b0 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1d52022-cf18-4555-9386-9e2946f1ce25" + "b1299aed-6eb8-49f1-85c8-27e08a1946f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "79a32843-4556-4fd7-80e2-e39d0a784e60" + "e56292cf-b4fc-4e6f-9262-da3a9a23102b" ], "x-ms-correlation-request-id": [ - "79a32843-4556-4fd7-80e2-e39d0a784e60" + "e56292cf-b4fc-4e6f-9262-da3a9a23102b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180855Z:79a32843-4556-4fd7-80e2-e39d0a784e60" + "CENTRALINDIA:20220512T091225Z:e56292cf-b4fc-4e6f-9262-da3a9a23102b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:08:55 GMT" + "Thu, 12 May 2022 09:12:25 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f21a0b3-eb3e-4890-a760-3d501e7174df" + "fa67380b-dc61-41fc-9d88-8753d7afd93f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "3074c30a-f460-41d7-ac1c-25cd8de05a56" + "8d354ff0-ab0c-4dd1-ad29-e0f3a9512b79" ], "x-ms-correlation-request-id": [ - "3074c30a-f460-41d7-ac1c-25cd8de05a56" + "8d354ff0-ab0c-4dd1-ad29-e0f3a9512b79" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180857Z:3074c30a-f460-41d7-ac1c-25cd8de05a56" + "CENTRALINDIA:20220512T091227Z:8d354ff0-ab0c-4dd1-ad29-e0f3a9512b79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:08:56 GMT" + "Thu, 12 May 2022 09:12:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f21a0b3-eb3e-4890-a760-3d501e7174df" + "fa67380b-dc61-41fc-9d88-8753d7afd93f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-request-id": [ - "2d9da6fe-a716-41bc-8fb1-0cbf3fc68a4a" + "5b692aa7-b035-48dd-a697-5574da0211f7" ], "x-ms-correlation-request-id": [ - "2d9da6fe-a716-41bc-8fb1-0cbf3fc68a4a" + "5b692aa7-b035-48dd-a697-5574da0211f7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181108Z:2d9da6fe-a716-41bc-8fb1-0cbf3fc68a4a" + "CENTRALINDIA:20220512T091438Z:5b692aa7-b035-48dd-a697-5574da0211f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:08 GMT" + "Thu, 12 May 2022 09:14:37 GMT" ], "Content-Length": [ "2495" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c46d214b-c09e-4504-bcbb-9ddec504684e" + "95be5a36-6a25-43e2-b0f3-6f0d046ff184" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "b56363d6-d851-49ca-b26e-a40b5b5c3c46" + "9e47e04c-bd56-4701-b8e2-06001a3076f2" ], "x-ms-correlation-request-id": [ - "b56363d6-d851-49ca-b26e-a40b5b5c3c46" + "9e47e04c-bd56-4701-b8e2-06001a3076f2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181109Z:b56363d6-d851-49ca-b26e-a40b5b5c3c46" + "CENTRALINDIA:20220512T091440Z:9e47e04c-bd56-4701-b8e2-06001a3076f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:08 GMT" + "Thu, 12 May 2022 09:14:40 GMT" ], "Content-Length": [ "2495" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65764d01-6b8c-4e6c-8639-68dc3642af0a" + "d8689731-46e2-48bb-a152-def2e0424d07" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -285,22 +285,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "a19f2bfc-0320-4b8d-a11b-9e316607ac52" + "37120e0c-491c-4f45-afd8-b98beda5adb7" ], "x-ms-correlation-request-id": [ - "a19f2bfc-0320-4b8d-a11b-9e316607ac52" + "37120e0c-491c-4f45-afd8-b98beda5adb7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181109Z:a19f2bfc-0320-4b8d-a11b-9e316607ac52" + "CENTRALINDIA:20220512T091441Z:37120e0c-491c-4f45-afd8-b98beda5adb7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:08 GMT" + "Thu, 12 May 2022 09:14:41 GMT" ], "Content-Length": [ "2495" @@ -309,23 +309,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65764d01-6b8c-4e6c-8639-68dc3642af0a" + "d8689731-46e2-48bb-a152-def2e0424d07" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -345,22 +345,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-request-id": [ - "b4297b1e-4924-42fb-ad87-af441f70e20b" + "dbb04278-b895-4f0e-875a-8baa8f0dcf79" ], "x-ms-correlation-request-id": [ - "b4297b1e-4924-42fb-ad87-af441f70e20b" + "dbb04278-b895-4f0e-875a-8baa8f0dcf79" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181144Z:b4297b1e-4924-42fb-ad87-af441f70e20b" + "CENTRALINDIA:20220512T091518Z:dbb04278-b895-4f0e-875a-8baa8f0dcf79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:44 GMT" + "Thu, 12 May 2022 09:15:18 GMT" ], "Content-Length": [ "2592" @@ -369,26 +369,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e55e3d9-b030-42c1-8307-2c2e527d64e6" + "1e6f7bdd-4d2f-41fb-8291-5be3cc09a04f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -408,22 +408,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-request-id": [ - "40b8ab88-4bfa-4478-bfe3-d23b1541520e" + "9f4ab676-3e8e-46ce-bc91-4a533033b343" ], "x-ms-correlation-request-id": [ - "40b8ab88-4bfa-4478-bfe3-d23b1541520e" + "9f4ab676-3e8e-46ce-bc91-4a533033b343" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181145Z:40b8ab88-4bfa-4478-bfe3-d23b1541520e" + "CENTRALINDIA:20220512T091520Z:9f4ab676-3e8e-46ce-bc91-4a533033b343" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:44 GMT" + "Thu, 12 May 2022 09:15:20 GMT" ], "Content-Length": [ "2592" @@ -432,26 +432,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -471,22 +471,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11992" ], "x-ms-request-id": [ - "8274bac7-1c37-44a0-b35f-978a2e262d06" + "3bf0ba3f-0af9-43ce-bd12-5f8a167625aa" ], "x-ms-correlation-request-id": [ - "8274bac7-1c37-44a0-b35f-978a2e262d06" + "3bf0ba3f-0af9-43ce-bd12-5f8a167625aa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181149Z:8274bac7-1c37-44a0-b35f-978a2e262d06" + "CENTRALINDIA:20220512T091525Z:3bf0ba3f-0af9-43ce-bd12-5f8a167625aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:48 GMT" + "Thu, 12 May 2022 09:15:25 GMT" ], "Content-Length": [ "2592" @@ -495,23 +495,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -531,22 +531,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11978" ], "x-ms-request-id": [ - "92cad9b1-a3aa-49bc-ab56-1effdeb82423" + "9b1518b3-c28c-4240-8d6b-4567eef705ef" ], "x-ms-correlation-request-id": [ - "92cad9b1-a3aa-49bc-ab56-1effdeb82423" + "9b1518b3-c28c-4240-8d6b-4567eef705ef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181927Z:92cad9b1-a3aa-49bc-ab56-1effdeb82423" + "CENTRALINDIA:20220512T092205Z:9b1518b3-c28c-4240-8d6b-4567eef705ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:19:27 GMT" + "Thu, 12 May 2022 09:22:05 GMT" ], "Content-Length": [ "2594" @@ -555,26 +555,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Local\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Local\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableFreeTier\": false,\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"enableAnalyticalStorage\": false,\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16\r\n }\r\n },\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n }\r\n}", + "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableFreeTier\": false,\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"enableAnalyticalStorage\": false,\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16\r\n }\r\n },\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8f21a0b3-eb3e-4890-a760-3d501e7174df" + "fa67380b-dc61-41fc-9d88-8753d7afd93f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,13 +591,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/operationResults/9921f5ed-e887-4bb1-a23e-cc5e00d15e82?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/operationResults/2c317115-aa02-47af-b4cd-14b1f452a56f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "9921f5ed-e887-4bb1-a23e-cc5e00d15e82" + "2c317115-aa02-47af-b4cd-14b1f452a56f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9921f5ed-e887-4bb1-a23e-cc5e00d15e82?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c317115-aa02-47af-b4cd-14b1f452a56f?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,19 +609,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "f7a875b7-8cfa-45a3-89a0-3151560e1ed8" + "2a570557-2c55-4a8a-a393-e78647850f4e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180907Z:f7a875b7-8cfa-45a3-89a0-3151560e1ed8" + "CENTRALINDIA:20220512T091236Z:2a570557-2c55-4a8a-a393-e78647850f4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:09:06 GMT" + "Thu, 12 May 2022 09:12:36 GMT" ], "Content-Length": [ "2154" @@ -630,23 +630,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:09:03.8393023Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:12:33.1344624Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9921f5ed-e887-4bb1-a23e-cc5e00d15e82?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTkyMWY1ZWQtZTg4Ny00YmIxLWEyM2UtY2M1ZTAwZDE1ZTgyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c317115-aa02-47af-b4cd-14b1f452a56f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMzMTcxMTUtYWEwMi00N2FmLWI0Y2QtMTRiMWY0NTJhNTZmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f21a0b3-eb3e-4890-a760-3d501e7174df" + "fa67380b-dc61-41fc-9d88-8753d7afd93f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -666,22 +666,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "1cdbc05a-db3d-4320-9694-58672b4cdd89" + "3fc4cfa1-01fb-4120-9385-fe3100ed48e0" ], "x-ms-correlation-request-id": [ - "1cdbc05a-db3d-4320-9694-58672b4cdd89" + "3fc4cfa1-01fb-4120-9385-fe3100ed48e0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180937Z:1cdbc05a-db3d-4320-9694-58672b4cdd89" + "CENTRALINDIA:20220512T091306Z:3fc4cfa1-01fb-4120-9385-fe3100ed48e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:09:37 GMT" + "Thu, 12 May 2022 09:13:06 GMT" ], "Content-Length": [ "21" @@ -694,19 +694,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9921f5ed-e887-4bb1-a23e-cc5e00d15e82?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTkyMWY1ZWQtZTg4Ny00YmIxLWEyM2UtY2M1ZTAwZDE1ZTgyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c317115-aa02-47af-b4cd-14b1f452a56f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMzMTcxMTUtYWEwMi00N2FmLWI0Y2QtMTRiMWY0NTJhNTZmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f21a0b3-eb3e-4890-a760-3d501e7174df" + "fa67380b-dc61-41fc-9d88-8753d7afd93f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -726,22 +726,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "548d5c19-5d29-4051-a448-2725567947f3" + "d85c5d3f-9de0-4bf4-a7bc-1efe33b520ff" ], "x-ms-correlation-request-id": [ - "548d5c19-5d29-4051-a448-2725567947f3" + "d85c5d3f-9de0-4bf4-a7bc-1efe33b520ff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181007Z:548d5c19-5d29-4051-a448-2725567947f3" + "CENTRALINDIA:20220512T091337Z:d85c5d3f-9de0-4bf4-a7bc-1efe33b520ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:10:07 GMT" + "Thu, 12 May 2022 09:13:36 GMT" ], "Content-Length": [ "21" @@ -754,19 +754,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9921f5ed-e887-4bb1-a23e-cc5e00d15e82?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTkyMWY1ZWQtZTg4Ny00YmIxLWEyM2UtY2M1ZTAwZDE1ZTgyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c317115-aa02-47af-b4cd-14b1f452a56f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMzMTcxMTUtYWEwMi00N2FmLWI0Y2QtMTRiMWY0NTJhNTZmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f21a0b3-eb3e-4890-a760-3d501e7174df" + "fa67380b-dc61-41fc-9d88-8753d7afd93f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -786,22 +786,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "026d37f7-976f-47ed-b504-925d17219b8b" + "5e099277-5e63-4c08-aba5-e55f210370e5" ], "x-ms-correlation-request-id": [ - "026d37f7-976f-47ed-b504-925d17219b8b" + "5e099277-5e63-4c08-aba5-e55f210370e5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181038Z:026d37f7-976f-47ed-b504-925d17219b8b" + "CENTRALINDIA:20220512T091407Z:5e099277-5e63-4c08-aba5-e55f210370e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:10:37 GMT" + "Thu, 12 May 2022 09:14:06 GMT" ], "Content-Length": [ "21" @@ -814,19 +814,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9921f5ed-e887-4bb1-a23e-cc5e00d15e82?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTkyMWY1ZWQtZTg4Ny00YmIxLWEyM2UtY2M1ZTAwZDE1ZTgyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c317115-aa02-47af-b4cd-14b1f452a56f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMzMTcxMTUtYWEwMi00N2FmLWI0Y2QtMTRiMWY0NTJhNTZmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f21a0b3-eb3e-4890-a760-3d501e7174df" + "fa67380b-dc61-41fc-9d88-8753d7afd93f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -846,22 +846,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "d519d29a-2750-4dd6-8427-6bb7d12a53d5" + "89d32721-6544-4c35-a060-c5bcd2e1aa06" ], "x-ms-correlation-request-id": [ - "d519d29a-2750-4dd6-8427-6bb7d12a53d5" + "89d32721-6544-4c35-a060-c5bcd2e1aa06" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181108Z:d519d29a-2750-4dd6-8427-6bb7d12a53d5" + "CENTRALINDIA:20220512T091437Z:89d32721-6544-4c35-a060-c5bcd2e1aa06" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:07 GMT" + "Thu, 12 May 2022 09:14:37 GMT" ], "Content-Length": [ "22" @@ -874,22 +874,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "65764d01-6b8c-4e6c-8639-68dc3642af0a" + "d8689731-46e2-48bb-a152-def2e0424d07" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -906,13 +906,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/operationResults/16712338-13e5-414c-8164-b11a8c2112ec?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/operationResults/ed24d16b-6480-49ae-85c6-227115bbefc2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "16712338-13e5-414c-8164-b11a8c2112ec" + "ed24d16b-6480-49ae-85c6-227115bbefc2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/16712338-13e5-414c-8164-b11a8c2112ec?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ed24d16b-6480-49ae-85c6-227115bbefc2?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,47 +924,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "e146f350-abb4-4afa-8176-980ca4ff3dab" + "fbd60117-2d82-4a33-80e6-568716194bad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181114Z:e146f350-abb4-4afa-8176-980ca4ff3dab" + "CENTRALINDIA:20220512T091447Z:fbd60117-2d82-4a33-80e6-568716194bad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:13 GMT" + "Thu, 12 May 2022 09:14:46 GMT" ], "Content-Length": [ - "2491" + "2494" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7e55e3d9-b030-42c1-8307-2c2e527d64e6" + "1e6f7bdd-4d2f-41fb-8291-5be3cc09a04f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -990,22 +990,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "d5c1933d-4aa6-4416-949f-0fa969b302ab" + "a2f67ff5-7fd1-4ca3-a4b1-0ae8b9cecbae" ], "x-ms-correlation-request-id": [ - "d5c1933d-4aa6-4416-949f-0fa969b302ab" + "a2f67ff5-7fd1-4ca3-a4b1-0ae8b9cecbae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181149Z:d5c1933d-4aa6-4416-949f-0fa969b302ab" + "CENTRALINDIA:20220512T091524Z:a2f67ff5-7fd1-4ca3-a4b1-0ae8b9cecbae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:48 GMT" + "Thu, 12 May 2022 09:15:24 GMT" ], "Content-Length": [ "2592" @@ -1014,26 +1014,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupStorageRedundancy\": \"Local\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1050,13 +1050,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/operationResults/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/operationResults/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "fbe00fc6-8fd4-46fd-ac8d-e320a29faec0" + "3ef1754a-8b49-4812-8af6-c023eeada130" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,44 +1068,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "0d45a877-866f-43bb-a483-c2216698c25a" + "0abb699b-9aed-4483-bd50-afae67ea0866" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181152Z:0d45a877-866f-43bb-a483-c2216698c25a" + "CENTRALINDIA:20220512T091531Z:0abb699b-9aed-4483-bd50-afae67ea0866" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:51 GMT" + "Thu, 12 May 2022 09:15:30 GMT" ], "Content-Length": [ - "2588" + "2591" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:10:27.8412302Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d1b495c9-8f78-4320-b16c-a8c877e51f4a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903\",\r\n \"name\": \"cosmosdb678903\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:14:02.2395964Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cosmosdb678903.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d6b0b23b-651c-4647-96f8-2ce7a5656dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678903-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678903-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\r\n ],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/16712338-13e5-414c-8164-b11a8c2112ec?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTY3MTIzMzgtMTNlNS00MTRjLTgxNjQtYjExYThjMjExMmVjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ed24d16b-6480-49ae-85c6-227115bbefc2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQyNGQxNmItNjQ4MC00OWFlLTg1YzYtMjI3MTE1YmJlZmMyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65764d01-6b8c-4e6c-8639-68dc3642af0a" + "d8689731-46e2-48bb-a152-def2e0424d07" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1125,22 +1125,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-request-id": [ - "49b0f33d-9258-4831-8621-1737257ceb83" + "993ca314-2c78-437f-964d-d58931907793" ], "x-ms-correlation-request-id": [ - "49b0f33d-9258-4831-8621-1737257ceb83" + "993ca314-2c78-437f-964d-d58931907793" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181144Z:49b0f33d-9258-4831-8621-1737257ceb83" + "CENTRALINDIA:20220512T091518Z:993ca314-2c78-437f-964d-d58931907793" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:11:44 GMT" + "Thu, 12 May 2022 09:15:17 GMT" ], "Content-Length": [ "22" @@ -1153,139 +1153,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "ec4e3af5-574f-466d-98d2-bddab5b5913f" - ], - "x-ms-correlation-request-id": [ - "ec4e3af5-574f-466d-98d2-bddab5b5913f" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181222Z:ec4e3af5-574f-466d-98d2-bddab5b5913f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 18:12:22 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "75e1d184-e4b6-4568-b5c8-3b4ab1c2fec2" - ], - "x-ms-correlation-request-id": [ - "75e1d184-e4b6-4568-b5c8-3b4ab1c2fec2" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181252Z:75e1d184-e4b6-4568-b5c8-3b4ab1c2fec2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 18:12:52 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1305,22 +1185,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11991" ], "x-ms-request-id": [ - "7ecf8c76-3ad5-49da-92a6-759bb6a712b5" + "acb75c03-f690-4d3b-9683-f169982970b0" ], "x-ms-correlation-request-id": [ - "7ecf8c76-3ad5-49da-92a6-759bb6a712b5" + "acb75c03-f690-4d3b-9683-f169982970b0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181323Z:7ecf8c76-3ad5-49da-92a6-759bb6a712b5" + "CENTRALINDIA:20220512T091601Z:acb75c03-f690-4d3b-9683-f169982970b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:13:22 GMT" + "Thu, 12 May 2022 09:16:01 GMT" ], "Content-Length": [ "21" @@ -1333,19 +1213,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1365,22 +1245,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11990" ], "x-ms-request-id": [ - "10e1bd05-1056-4c67-a7dc-fa0bed52c5e2" + "e9e8da5a-b6de-4226-b3cc-214299c0a1a6" ], "x-ms-correlation-request-id": [ - "10e1bd05-1056-4c67-a7dc-fa0bed52c5e2" + "e9e8da5a-b6de-4226-b3cc-214299c0a1a6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181353Z:10e1bd05-1056-4c67-a7dc-fa0bed52c5e2" + "CENTRALINDIA:20220512T091631Z:e9e8da5a-b6de-4226-b3cc-214299c0a1a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:13:53 GMT" + "Thu, 12 May 2022 09:16:31 GMT" ], "Content-Length": [ "21" @@ -1393,19 +1273,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1425,22 +1305,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11989" ], "x-ms-request-id": [ - "647b206e-05bf-466e-bf43-d3e2748be3d3" + "7b0d9586-166e-43bf-9aaa-19272ac9a422" ], "x-ms-correlation-request-id": [ - "647b206e-05bf-466e-bf43-d3e2748be3d3" + "7b0d9586-166e-43bf-9aaa-19272ac9a422" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181424Z:647b206e-05bf-466e-bf43-d3e2748be3d3" + "CENTRALINDIA:20220512T091702Z:7b0d9586-166e-43bf-9aaa-19272ac9a422" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:14:23 GMT" + "Thu, 12 May 2022 09:17:01 GMT" ], "Content-Length": [ "21" @@ -1453,19 +1333,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1485,22 +1365,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11988" ], "x-ms-request-id": [ - "e7062337-3240-4ef2-845b-f59a68d96436" + "ae042d23-4ada-480f-af9f-f84aeff827e2" ], "x-ms-correlation-request-id": [ - "e7062337-3240-4ef2-845b-f59a68d96436" + "ae042d23-4ada-480f-af9f-f84aeff827e2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181454Z:e7062337-3240-4ef2-845b-f59a68d96436" + "CENTRALINDIA:20220512T091732Z:ae042d23-4ada-480f-af9f-f84aeff827e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:14:54 GMT" + "Thu, 12 May 2022 09:17:31 GMT" ], "Content-Length": [ "21" @@ -1513,19 +1393,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1545,22 +1425,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11987" ], "x-ms-request-id": [ - "39f0bef7-ab5e-4749-8bf7-66bb0fe52cc5" + "1921fd33-b958-4a47-8f5f-4c1c50e72ae1" ], "x-ms-correlation-request-id": [ - "39f0bef7-ab5e-4749-8bf7-66bb0fe52cc5" + "1921fd33-b958-4a47-8f5f-4c1c50e72ae1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181524Z:39f0bef7-ab5e-4749-8bf7-66bb0fe52cc5" + "CENTRALINDIA:20220512T091802Z:1921fd33-b958-4a47-8f5f-4c1c50e72ae1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:15:23 GMT" + "Thu, 12 May 2022 09:18:02 GMT" ], "Content-Length": [ "21" @@ -1573,19 +1453,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1605,22 +1485,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11986" ], "x-ms-request-id": [ - "ae119d24-f598-4b5d-bdef-7991590d9201" + "ed4400ec-7b08-4576-860a-b2f5a83f2786" ], "x-ms-correlation-request-id": [ - "ae119d24-f598-4b5d-bdef-7991590d9201" + "ed4400ec-7b08-4576-860a-b2f5a83f2786" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181554Z:ae119d24-f598-4b5d-bdef-7991590d9201" + "CENTRALINDIA:20220512T091832Z:ed4400ec-7b08-4576-860a-b2f5a83f2786" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:15:54 GMT" + "Thu, 12 May 2022 09:18:32 GMT" ], "Content-Length": [ "21" @@ -1633,19 +1513,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1665,22 +1545,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11985" ], "x-ms-request-id": [ - "d10f64bc-229c-414f-a3a1-9de39f3b5781" + "71c2d182-35ea-4c5d-b5df-8fb1da3c7fac" ], "x-ms-correlation-request-id": [ - "d10f64bc-229c-414f-a3a1-9de39f3b5781" + "71c2d182-35ea-4c5d-b5df-8fb1da3c7fac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181625Z:d10f64bc-229c-414f-a3a1-9de39f3b5781" + "CENTRALINDIA:20220512T091903Z:71c2d182-35ea-4c5d-b5df-8fb1da3c7fac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:16:24 GMT" + "Thu, 12 May 2022 09:19:02 GMT" ], "Content-Length": [ "21" @@ -1693,19 +1573,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1725,22 +1605,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11984" ], "x-ms-request-id": [ - "712479c7-ab49-4672-8903-179a8410b0eb" + "f9fa0bd1-c613-40f0-bc9b-d8ad8a2e9f50" ], "x-ms-correlation-request-id": [ - "712479c7-ab49-4672-8903-179a8410b0eb" + "f9fa0bd1-c613-40f0-bc9b-d8ad8a2e9f50" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181655Z:712479c7-ab49-4672-8903-179a8410b0eb" + "CENTRALINDIA:20220512T091933Z:f9fa0bd1-c613-40f0-bc9b-d8ad8a2e9f50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:16:55 GMT" + "Thu, 12 May 2022 09:19:32 GMT" ], "Content-Length": [ "21" @@ -1753,19 +1633,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1785,22 +1665,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11983" ], "x-ms-request-id": [ - "e95d43f8-ca30-4bf3-94e3-dd2abd6973e9" + "f4eaeb42-f31f-428c-af03-5a69a44da96d" ], "x-ms-correlation-request-id": [ - "e95d43f8-ca30-4bf3-94e3-dd2abd6973e9" + "f4eaeb42-f31f-428c-af03-5a69a44da96d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181725Z:e95d43f8-ca30-4bf3-94e3-dd2abd6973e9" + "CENTRALINDIA:20220512T092003Z:f4eaeb42-f31f-428c-af03-5a69a44da96d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:17:25 GMT" + "Thu, 12 May 2022 09:20:02 GMT" ], "Content-Length": [ "21" @@ -1813,19 +1693,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1845,22 +1725,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11982" ], "x-ms-request-id": [ - "7d141b68-dc7b-4499-8674-3a4aa8834687" + "c6b4a81f-9096-4e65-875c-44523bab1538" ], "x-ms-correlation-request-id": [ - "7d141b68-dc7b-4499-8674-3a4aa8834687" + "c6b4a81f-9096-4e65-875c-44523bab1538" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181756Z:7d141b68-dc7b-4499-8674-3a4aa8834687" + "CENTRALINDIA:20220512T092033Z:c6b4a81f-9096-4e65-875c-44523bab1538" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:17:55 GMT" + "Thu, 12 May 2022 09:20:33 GMT" ], "Content-Length": [ "21" @@ -1873,19 +1753,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1905,22 +1785,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11981" ], "x-ms-request-id": [ - "d3fe060c-df7b-4753-8b0d-d91b86ab2ae3" + "519d1b8c-7244-44b8-b369-0c20fd66ca2d" ], "x-ms-correlation-request-id": [ - "d3fe060c-df7b-4753-8b0d-d91b86ab2ae3" + "519d1b8c-7244-44b8-b369-0c20fd66ca2d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181826Z:d3fe060c-df7b-4753-8b0d-d91b86ab2ae3" + "CENTRALINDIA:20220512T092104Z:519d1b8c-7244-44b8-b369-0c20fd66ca2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:18:25 GMT" + "Thu, 12 May 2022 09:21:04 GMT" ], "Content-Length": [ "21" @@ -1933,19 +1813,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1965,22 +1845,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11980" ], "x-ms-request-id": [ - "309ad11c-b4e7-4ecd-af99-123bdf65adf3" + "c2180c47-22ec-40f0-b423-d3d34545b6f4" ], "x-ms-correlation-request-id": [ - "309ad11c-b4e7-4ecd-af99-123bdf65adf3" + "c2180c47-22ec-40f0-b423-d3d34545b6f4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181857Z:309ad11c-b4e7-4ecd-af99-123bdf65adf3" + "CENTRALINDIA:20220512T092135Z:c2180c47-22ec-40f0-b423-d3d34545b6f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:18:56 GMT" + "Thu, 12 May 2022 09:21:34 GMT" ], "Content-Length": [ "21" @@ -1993,19 +1873,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe00fc6-8fd4-46fd-ac8d-e320a29faec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlMDBmYzYtOGZkNC00NmZkLWFjOGQtZTMyMGEyOWZhZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef1754a-8b49-4812-8af6-c023eeada130?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMTc1NGEtOGI0OS00ODEyLThhZjYtYzAyM2VlYWRhMTMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51014e42-db81-4e80-b03d-de829f8ba226" + "4ebf07b4-7fa3-4781-bf07-2284c5369246" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2025,22 +1905,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11979" ], "x-ms-request-id": [ - "c96162fb-a8ff-4fd2-8134-e6d5c545bdd4" + "ed787243-d420-474c-8739-cbf07bccaad0" ], "x-ms-correlation-request-id": [ - "c96162fb-a8ff-4fd2-8134-e6d5c545bdd4" + "ed787243-d420-474c-8739-cbf07bccaad0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181927Z:c96162fb-a8ff-4fd2-8134-e6d5c545bdd4" + "CENTRALINDIA:20220512T092205Z:ed787243-d420-474c-8739-cbf07bccaad0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:19:27 GMT" + "Thu, 12 May 2022 09:22:05 GMT" ], "Content-Length": [ "22" @@ -2053,22 +1933,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/listKeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/listKeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "235b7523-72d4-462f-8e61-9ba23e44ecfb" + "acb6ca50-1c6f-4925-88ea-10b5b8aae5b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2091,19 +1971,19 @@ "1199" ], "x-ms-request-id": [ - "f7aa8cf4-7997-45e6-9eaa-926dc76e4df0" + "d03457b1-415d-4c5b-8280-f1a62c9ba0ac" ], "x-ms-correlation-request-id": [ - "f7aa8cf4-7997-45e6-9eaa-926dc76e4df0" + "d03457b1-415d-4c5b-8280-f1a62c9ba0ac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181928Z:f7aa8cf4-7997-45e6-9eaa-926dc76e4df0" + "CENTRALINDIA:20220512T092208Z:d03457b1-415d-4c5b-8280-f1a62c9ba0ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:19:28 GMT" + "Thu, 12 May 2022 09:22:08 GMT" ], "Content-Length": [ "461" @@ -2112,26 +1992,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"7xNXj09R7dHGYRrxwTBP3kh3jqZF2z9CGYQ0LlGPEUC2BAZWRG97PqgkwlOHSQASPMjmNUiF5fl7ofG1TLGqjQ==\",\r\n \"secondaryMasterKey\": \"mqGlh8k51DuKqfAOKQRVVs6FDgeRaJjV8X3WjTA36UZmTZCFKeLYBCgUhnvU9sLeCt21Z90pCZDeVTC96aYlHA==\",\r\n \"primaryReadonlyMasterKey\": \"fT9zizxSN7LCYQ4Zm365iaiRELY1S1m73BIDCe0eFJ9CFcZiQBapqkmENkqC6CTMgWHZCOOXtTfjphVC3Sr1Xw==\",\r\n \"secondaryReadonlyMasterKey\": \"sAq4UJSvQWXPtABhzBXbEXygcpZmNVnADslHiaDWeIcyHwtPIMWSJZ6KDrDFCX7maNY2cuuiFJhhONxZcADygA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"0EnbCcrIFv19rSe9spB2gtvhoBIiaMa1PEYvXKpGvdLMoBsKKlHWhXeIS4eLZmS9NuQvHRLVVaX1tFf82ojohg==\",\r\n \"secondaryMasterKey\": \"GAsSFzbqJp5lHD6fAJdT2FEeVWBwbSenfMc3BiBwszAYXxSxNgKmDRRtkKjktOm3stauuGjRGyIRUlisrRz1zA==\",\r\n \"primaryReadonlyMasterKey\": \"LQcn6gr06v2CNIPa1ySPvBA9VDk6Ul7n6HyaptMl6fjuRN2URATILiE1nojCeXHLDJZIwkKMs7dOTs0jbkuo8g==\",\r\n \"secondaryReadonlyMasterKey\": \"Av8fYwZcWG1TXqHQ0s0RGBYaFTTeeJhd5UgU1W2B9Z85qnXcNzCiKT2vCCpV1N2vVdEy4BXCyatsLP8xcpcBkw==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/listKeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/listKeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63b3e8e9-9435-45a3-ab41-aa0e24d4de4b" + "958fea3a-7313-406e-a982-392601fef95d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2151,22 +2031,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "dbe979fe-cb22-4cd5-b6b3-c7c795fc597a" + "664275a9-e9e5-46a3-9267-27aa5882b358" ], "x-ms-correlation-request-id": [ - "dbe979fe-cb22-4cd5-b6b3-c7c795fc597a" + "664275a9-e9e5-46a3-9267-27aa5882b358" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182001Z:dbe979fe-cb22-4cd5-b6b3-c7c795fc597a" + "CENTRALINDIA:20220512T092247Z:664275a9-e9e5-46a3-9267-27aa5882b358" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:20:01 GMT" + "Thu, 12 May 2022 09:22:47 GMT" ], "Content-Length": [ "461" @@ -2175,26 +2055,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"P1aKFRFAp8LmzRnrHOiAaWBqUELq4FgvHc0xrMVIsdihX2IYVM8ThCxHf3CJe3myEQ2ZHYO4w9gZ23mzNFmN9A==\",\r\n \"secondaryMasterKey\": \"mqGlh8k51DuKqfAOKQRVVs6FDgeRaJjV8X3WjTA36UZmTZCFKeLYBCgUhnvU9sLeCt21Z90pCZDeVTC96aYlHA==\",\r\n \"primaryReadonlyMasterKey\": \"fT9zizxSN7LCYQ4Zm365iaiRELY1S1m73BIDCe0eFJ9CFcZiQBapqkmENkqC6CTMgWHZCOOXtTfjphVC3Sr1Xw==\",\r\n \"secondaryReadonlyMasterKey\": \"sAq4UJSvQWXPtABhzBXbEXygcpZmNVnADslHiaDWeIcyHwtPIMWSJZ6KDrDFCX7maNY2cuuiFJhhONxZcADygA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"5f3MwKcEisxIb2x9DBUNsxwVpQTRHuWDKSkmTr5t93a1btqyLEQWYDHMf8lJGScukndFhWFu9MU9xIAIg3EEjA==\",\r\n \"secondaryMasterKey\": \"GAsSFzbqJp5lHD6fAJdT2FEeVWBwbSenfMc3BiBwszAYXxSxNgKmDRRtkKjktOm3stauuGjRGyIRUlisrRz1zA==\",\r\n \"primaryReadonlyMasterKey\": \"LQcn6gr06v2CNIPa1ySPvBA9VDk6Ul7n6HyaptMl6fjuRN2URATILiE1nojCeXHLDJZIwkKMs7dOTs0jbkuo8g==\",\r\n \"secondaryReadonlyMasterKey\": \"Av8fYwZcWG1TXqHQ0s0RGBYaFTTeeJhd5UgU1W2B9Z85qnXcNzCiKT2vCCpV1N2vVdEy4BXCyatsLP8xcpcBkw==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/listConnectionStrings?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/listConnectionStrings?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0508c2d4-4c1c-4f08-86be-409cb1300be3" + "76f41d81-de22-4405-9f37-b0bf9f50d930" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2214,22 +2094,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "8937bf9c-c19e-4f57-894e-d0425c30fc64" + "f56e8344-9b48-41a2-9dcf-26f2e05ee811" ], "x-ms-correlation-request-id": [ - "8937bf9c-c19e-4f57-894e-d0425c30fc64" + "f56e8344-9b48-41a2-9dcf-26f2e05ee811" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181928Z:8937bf9c-c19e-4f57-894e-d0425c30fc64" + "CENTRALINDIA:20220512T092210Z:f56e8344-9b48-41a2-9dcf-26f2e05ee811" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:19:28 GMT" + "Thu, 12 May 2022 09:22:10 GMT" ], "Content-Length": [ "1079" @@ -2238,26 +2118,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678903:7xNXj09R7dHGYRrxwTBP3kh3jqZF2z9CGYQ0LlGPEUC2BAZWRG97PqgkwlOHSQASPMjmNUiF5fl7ofG1TLGqjQ==@cosmosdb678903.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678903:mqGlh8k51DuKqfAOKQRVVs6FDgeRaJjV8X3WjTA36UZmTZCFKeLYBCgUhnvU9sLeCt21Z90pCZDeVTC96aYlHA==@cosmosdb678903.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678903:fT9zizxSN7LCYQ4Zm365iaiRELY1S1m73BIDCe0eFJ9CFcZiQBapqkmENkqC6CTMgWHZCOOXtTfjphVC3Sr1Xw==@cosmosdb678903.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary Read-Only MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678903:sAq4UJSvQWXPtABhzBXbEXygcpZmNVnADslHiaDWeIcyHwtPIMWSJZ6KDrDFCX7maNY2cuuiFJhhONxZcADygA==@cosmosdb678903.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary Read-Only MongoDB Connection String\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678903:0EnbCcrIFv19rSe9spB2gtvhoBIiaMa1PEYvXKpGvdLMoBsKKlHWhXeIS4eLZmS9NuQvHRLVVaX1tFf82ojohg==@cosmosdb678903.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678903:GAsSFzbqJp5lHD6fAJdT2FEeVWBwbSenfMc3BiBwszAYXxSxNgKmDRRtkKjktOm3stauuGjRGyIRUlisrRz1zA==@cosmosdb678903.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678903:LQcn6gr06v2CNIPa1ySPvBA9VDk6Ul7n6HyaptMl6fjuRN2URATILiE1nojCeXHLDJZIwkKMs7dOTs0jbkuo8g==@cosmosdb678903.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary Read-Only MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678903:Av8fYwZcWG1TXqHQ0s0RGBYaFTTeeJhd5UgU1W2B9Z85qnXcNzCiKT2vCCpV1N2vVdEy4BXCyatsLP8xcpcBkw==@cosmosdb678903.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary Read-Only MongoDB Connection String\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/readonlykeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/readonlykeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1587efe-79ca-4059-8e75-27036a69b381" + "7c471e92-03a5-44b0-87a7-c8df3086ad4b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2276,23 +2156,23 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "fa05d0ee-da93-4cd5-a702-e284683b925a" + "e22427e9-8979-4e63-ab5a-fbefa6f30f37" ], "x-ms-correlation-request-id": [ - "fa05d0ee-da93-4cd5-a702-e284683b925a" + "e22427e9-8979-4e63-ab5a-fbefa6f30f37" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181929Z:fa05d0ee-da93-4cd5-a702-e284683b925a" + "CENTRALINDIA:20220512T092212Z:e22427e9-8979-4e63-ab5a-fbefa6f30f37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:19:29 GMT" + "Thu, 12 May 2022 09:22:11 GMT" ], "Content-Length": [ "239" @@ -2301,26 +2181,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"fT9zizxSN7LCYQ4Zm365iaiRELY1S1m73BIDCe0eFJ9CFcZiQBapqkmENkqC6CTMgWHZCOOXtTfjphVC3Sr1Xw==\",\r\n \"secondaryReadonlyMasterKey\": \"sAq4UJSvQWXPtABhzBXbEXygcpZmNVnADslHiaDWeIcyHwtPIMWSJZ6KDrDFCX7maNY2cuuiFJhhONxZcADygA==\"\r\n}", + "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"LQcn6gr06v2CNIPa1ySPvBA9VDk6Ul7n6HyaptMl6fjuRN2URATILiE1nojCeXHLDJZIwkKMs7dOTs0jbkuo8g==\",\r\n \"secondaryReadonlyMasterKey\": \"Av8fYwZcWG1TXqHQ0s0RGBYaFTTeeJhd5UgU1W2B9Z85qnXcNzCiKT2vCCpV1N2vVdEy4BXCyatsLP8xcpcBkw==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/regenerateKey?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/regenerateKey?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyKind\": \"primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63b3e8e9-9435-45a3-ab41-aa0e24d4de4b" + "958fea3a-7313-406e-a982-392601fef95d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2337,13 +2217,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/regenerateKey/operationResults/99cd772d-fc97-4902-b762-61371640f845?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/regenerateKey/operationResults/ef26de29-d15e-4bae-9783-6ee9fad51144?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/99cd772d-fc97-4902-b762-61371640f845?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ef26de29-d15e-4bae-9783-6ee9fad51144?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "99cd772d-fc97-4902-b762-61371640f845" + "ef26de29-d15e-4bae-9783-6ee9fad51144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2355,19 +2235,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "66fdc9f1-d9a7-44ed-80b4-da78f8009a90" + "98fd0d07-6f3f-4e5e-b751-a95731dee34a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T181930Z:66fdc9f1-d9a7-44ed-80b4-da78f8009a90" + "CENTRALINDIA:20220512T092216Z:98fd0d07-6f3f-4e5e-b751-a95731dee34a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:19:30 GMT" + "Thu, 12 May 2022 09:22:16 GMT" ], "Content-Length": [ "21" @@ -2380,19 +2260,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/99cd772d-fc97-4902-b762-61371640f845?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTljZDc3MmQtZmM5Ny00OTAyLWI3NjItNjEzNzE2NDBmODQ1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ef26de29-d15e-4bae-9783-6ee9fad51144?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWYyNmRlMjktZDE1ZS00YmFlLTk3ODMtNmVlOWZhZDUxMTQ0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63b3e8e9-9435-45a3-ab41-aa0e24d4de4b" + "958fea3a-7313-406e-a982-392601fef95d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2412,22 +2292,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11999" ], "x-ms-request-id": [ - "a0b13e60-9a83-42c7-9fb2-78081b561901" + "bc39d0f1-4e8c-4309-9e4f-969bbeb745f7" ], "x-ms-correlation-request-id": [ - "a0b13e60-9a83-42c7-9fb2-78081b561901" + "bc39d0f1-4e8c-4309-9e4f-969bbeb745f7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182000Z:a0b13e60-9a83-42c7-9fb2-78081b561901" + "CENTRALINDIA:20220512T092246Z:bc39d0f1-4e8c-4309-9e4f-969bbeb745f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:20:00 GMT" + "Thu, 12 May 2022 09:22:46 GMT" ], "Content-Length": [ "22" @@ -2440,19 +2320,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/regenerateKey/operationResults/99cd772d-fc97-4902-b762-61371640f845?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy85OWNkNzcyZC1mYzk3LTQ5MDItYjc2Mi02MTM3MTY0MGY4NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903/regenerateKey/operationResults/ef26de29-d15e-4bae-9783-6ee9fad51144?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzL3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy9lZjI2ZGUyOS1kMTVlLTRiYWUtOTc4My02ZWU5ZmFkNTExNDQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63b3e8e9-9435-45a3-ab41-aa0e24d4de4b" + "958fea3a-7313-406e-a982-392601fef95d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2472,22 +2352,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11998" ], "x-ms-request-id": [ - "828a114a-a10a-4702-9216-49adc818ecf5" + "4818069a-9873-4c95-a5e0-905d7a71733d" ], "x-ms-correlation-request-id": [ - "828a114a-a10a-4702-9216-49adc818ecf5" + "4818069a-9873-4c95-a5e0-905d7a71733d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182001Z:828a114a-a10a-4702-9216-49adc818ecf5" + "CENTRALINDIA:20220512T092247Z:4818069a-9873-4c95-a5e0-905d7a71733d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:20:01 GMT" + "Thu, 12 May 2022 09:22:46 GMT" ], "Content-Length": [ "22" @@ -2500,22 +2380,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678903?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2526,13 +2406,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "3e45adfd-6e8b-4a53-9796-f083679d65cb" + "012041a3-cf4f-4e97-8c92-d5d4f825a368" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,19 +2424,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "3d015675-9db9-4d20-af8d-b370b228d07c" + "ae7cdb64-0cf4-4271-95a5-73868d312baa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182003Z:3d015675-9db9-4d20-af8d-b370b228d07c" + "CENTRALINDIA:20220512T092250Z:ae7cdb64-0cf4-4271-95a5-73868d312baa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:20:03 GMT" + "Thu, 12 May 2022 09:22:49 GMT" ], "Content-Length": [ "21" @@ -2569,19 +2449,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2601,22 +2481,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11993" ], "x-ms-request-id": [ - "66891bad-dc00-4163-9b87-d97b05525ad3" + "0cca73d6-340f-404d-ba64-16189526ef29" ], "x-ms-correlation-request-id": [ - "66891bad-dc00-4163-9b87-d97b05525ad3" + "0cca73d6-340f-404d-ba64-16189526ef29" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182033Z:66891bad-dc00-4163-9b87-d97b05525ad3" + "CENTRALINDIA:20220512T092320Z:0cca73d6-340f-404d-ba64-16189526ef29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:20:33 GMT" + "Thu, 12 May 2022 09:23:20 GMT" ], "Content-Length": [ "21" @@ -2629,19 +2509,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2661,22 +2541,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11992" ], "x-ms-request-id": [ - "93369437-b15f-4b19-b078-fd8cd06f965f" + "78dcccdf-ac10-4f5d-89fc-5b7641323f72" ], "x-ms-correlation-request-id": [ - "93369437-b15f-4b19-b078-fd8cd06f965f" + "78dcccdf-ac10-4f5d-89fc-5b7641323f72" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182103Z:93369437-b15f-4b19-b078-fd8cd06f965f" + "CENTRALINDIA:20220512T092350Z:78dcccdf-ac10-4f5d-89fc-5b7641323f72" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:21:02 GMT" + "Thu, 12 May 2022 09:23:49 GMT" ], "Content-Length": [ "21" @@ -2689,19 +2569,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2721,22 +2601,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11991" ], "x-ms-request-id": [ - "b3aff676-5f7a-4218-bd44-83607cf07e6a" + "20e5655f-7323-433a-a0b3-8c7576dd24d5" ], "x-ms-correlation-request-id": [ - "b3aff676-5f7a-4218-bd44-83607cf07e6a" + "20e5655f-7323-433a-a0b3-8c7576dd24d5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182134Z:b3aff676-5f7a-4218-bd44-83607cf07e6a" + "CENTRALINDIA:20220512T092420Z:20e5655f-7323-433a-a0b3-8c7576dd24d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:21:33 GMT" + "Thu, 12 May 2022 09:24:20 GMT" ], "Content-Length": [ "21" @@ -2749,19 +2629,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2781,22 +2661,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11990" ], "x-ms-request-id": [ - "76b84345-312a-4d0b-b0fa-ebd1a0e944ff" + "dfbd0702-bb99-4c42-a26f-98c36e8211e8" ], "x-ms-correlation-request-id": [ - "76b84345-312a-4d0b-b0fa-ebd1a0e944ff" + "dfbd0702-bb99-4c42-a26f-98c36e8211e8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182204Z:76b84345-312a-4d0b-b0fa-ebd1a0e944ff" + "CENTRALINDIA:20220512T092451Z:dfbd0702-bb99-4c42-a26f-98c36e8211e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:22:03 GMT" + "Thu, 12 May 2022 09:24:51 GMT" ], "Content-Length": [ "21" @@ -2809,19 +2689,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2841,22 +2721,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11989" ], "x-ms-request-id": [ - "8f1cc4db-12bc-4d1f-a3de-583e8faa2704" + "36d1a5dd-6ce6-42c1-95c8-8f94a72062ed" ], "x-ms-correlation-request-id": [ - "8f1cc4db-12bc-4d1f-a3de-583e8faa2704" + "36d1a5dd-6ce6-42c1-95c8-8f94a72062ed" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182234Z:8f1cc4db-12bc-4d1f-a3de-583e8faa2704" + "CENTRALINDIA:20220512T092521Z:36d1a5dd-6ce6-42c1-95c8-8f94a72062ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:22:34 GMT" + "Thu, 12 May 2022 09:25:21 GMT" ], "Content-Length": [ "21" @@ -2869,19 +2749,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2901,22 +2781,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11988" ], "x-ms-request-id": [ - "00f3c8e5-7806-4dcc-a43f-29d0b2c307b4" + "66d8be47-8016-46ea-b11b-f0286c4872a1" ], "x-ms-correlation-request-id": [ - "00f3c8e5-7806-4dcc-a43f-29d0b2c307b4" + "66d8be47-8016-46ea-b11b-f0286c4872a1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182304Z:00f3c8e5-7806-4dcc-a43f-29d0b2c307b4" + "CENTRALINDIA:20220512T092551Z:66d8be47-8016-46ea-b11b-f0286c4872a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:23:04 GMT" + "Thu, 12 May 2022 09:25:51 GMT" ], "Content-Length": [ "21" @@ -2929,19 +2809,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2961,22 +2841,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11987" ], "x-ms-request-id": [ - "dd518618-48fd-438c-9140-4971ba6ba68c" + "6bbbc47f-17c2-4d63-b12b-2dc85130fba8" ], "x-ms-correlation-request-id": [ - "dd518618-48fd-438c-9140-4971ba6ba68c" + "6bbbc47f-17c2-4d63-b12b-2dc85130fba8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182335Z:dd518618-48fd-438c-9140-4971ba6ba68c" + "CENTRALINDIA:20220512T092621Z:6bbbc47f-17c2-4d63-b12b-2dc85130fba8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:23:35 GMT" + "Thu, 12 May 2022 09:26:21 GMT" ], "Content-Length": [ "21" @@ -2989,19 +2869,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3021,22 +2901,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11986" ], "x-ms-request-id": [ - "3231b7df-5b7f-466a-8d02-ca073eb378a2" + "8d0e8d1a-2818-4b05-a0a8-8ca215e1b62e" ], "x-ms-correlation-request-id": [ - "3231b7df-5b7f-466a-8d02-ca073eb378a2" + "8d0e8d1a-2818-4b05-a0a8-8ca215e1b62e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182406Z:3231b7df-5b7f-466a-8d02-ca073eb378a2" + "CENTRALINDIA:20220512T092652Z:8d0e8d1a-2818-4b05-a0a8-8ca215e1b62e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:24:05 GMT" + "Thu, 12 May 2022 09:26:52 GMT" ], "Content-Length": [ "21" @@ -3049,19 +2929,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3081,22 +2961,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11985" ], "x-ms-request-id": [ - "3edffe1d-0a1c-4ff1-919a-e96e0aff7668" + "31b680c5-3728-4ad4-983a-7bae36b7a561" ], "x-ms-correlation-request-id": [ - "3edffe1d-0a1c-4ff1-919a-e96e0aff7668" + "31b680c5-3728-4ad4-983a-7bae36b7a561" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182437Z:3edffe1d-0a1c-4ff1-919a-e96e0aff7668" + "CENTRALINDIA:20220512T092722Z:31b680c5-3728-4ad4-983a-7bae36b7a561" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:24:36 GMT" + "Thu, 12 May 2022 09:27:21 GMT" ], "Content-Length": [ "21" @@ -3109,19 +2989,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3141,22 +3021,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11984" ], "x-ms-request-id": [ - "c3bea25a-36b5-4874-8eb7-999666026ab2" + "5eaf4bde-38b0-4e40-bba8-f0ce2a783b0f" ], "x-ms-correlation-request-id": [ - "c3bea25a-36b5-4874-8eb7-999666026ab2" + "5eaf4bde-38b0-4e40-bba8-f0ce2a783b0f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182507Z:c3bea25a-36b5-4874-8eb7-999666026ab2" + "CENTRALINDIA:20220512T092752Z:5eaf4bde-38b0-4e40-bba8-f0ce2a783b0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:25:06 GMT" + "Thu, 12 May 2022 09:27:52 GMT" ], "Content-Length": [ "21" @@ -3169,19 +3049,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3201,22 +3081,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11983" ], "x-ms-request-id": [ - "fedfe8cd-f927-4dde-aea0-d2cda5f88fc5" + "71ca3167-74f3-497a-b915-8d447f4e6cbd" ], "x-ms-correlation-request-id": [ - "fedfe8cd-f927-4dde-aea0-d2cda5f88fc5" + "71ca3167-74f3-497a-b915-8d447f4e6cbd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182537Z:fedfe8cd-f927-4dde-aea0-d2cda5f88fc5" + "CENTRALINDIA:20220512T092823Z:71ca3167-74f3-497a-b915-8d447f4e6cbd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:25:37 GMT" + "Thu, 12 May 2022 09:28:23 GMT" ], "Content-Length": [ "21" @@ -3229,19 +3109,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3261,22 +3141,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11982" ], "x-ms-request-id": [ - "081f91e9-ceab-4372-b031-c3898f260448" + "63ae9863-865b-4c64-8de4-9591b6fa00b5" ], "x-ms-correlation-request-id": [ - "081f91e9-ceab-4372-b031-c3898f260448" + "63ae9863-865b-4c64-8de4-9591b6fa00b5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182607Z:081f91e9-ceab-4372-b031-c3898f260448" + "CENTRALINDIA:20220512T092853Z:63ae9863-865b-4c64-8de4-9591b6fa00b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:26:07 GMT" + "Thu, 12 May 2022 09:28:53 GMT" ], "Content-Length": [ "21" @@ -3289,19 +3169,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3321,22 +3201,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11981" ], "x-ms-request-id": [ - "96a64373-58e3-403b-9d88-610a86d5bc73" + "953fa49c-4b2a-4138-b408-dda8542c558f" ], "x-ms-correlation-request-id": [ - "96a64373-58e3-403b-9d88-610a86d5bc73" + "953fa49c-4b2a-4138-b408-dda8542c558f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182638Z:96a64373-58e3-403b-9d88-610a86d5bc73" + "CENTRALINDIA:20220512T092924Z:953fa49c-4b2a-4138-b408-dda8542c558f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:26:37 GMT" + "Thu, 12 May 2022 09:29:23 GMT" ], "Content-Length": [ "21" @@ -3349,19 +3229,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3381,22 +3261,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11980" ], "x-ms-request-id": [ - "37fe8099-2a30-46c7-9ef2-2845cd76af8e" + "36d989f5-6111-4fae-8767-fd0a670387de" ], "x-ms-correlation-request-id": [ - "37fe8099-2a30-46c7-9ef2-2845cd76af8e" + "36d989f5-6111-4fae-8767-fd0a670387de" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182708Z:37fe8099-2a30-46c7-9ef2-2845cd76af8e" + "CENTRALINDIA:20220512T092954Z:36d989f5-6111-4fae-8767-fd0a670387de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:27:08 GMT" + "Thu, 12 May 2022 09:29:54 GMT" ], "Content-Length": [ "21" @@ -3409,19 +3289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3441,22 +3321,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11979" ], "x-ms-request-id": [ - "e2f98efc-e5df-43ef-a32b-34421d44a96e" + "a8f5716a-9098-4440-ac45-2e365150f98b" ], "x-ms-correlation-request-id": [ - "e2f98efc-e5df-43ef-a32b-34421d44a96e" + "a8f5716a-9098-4440-ac45-2e365150f98b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182738Z:e2f98efc-e5df-43ef-a32b-34421d44a96e" + "CENTRALINDIA:20220512T093024Z:a8f5716a-9098-4440-ac45-2e365150f98b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:27:38 GMT" + "Thu, 12 May 2022 09:30:24 GMT" ], "Content-Length": [ "21" @@ -3469,19 +3349,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3501,22 +3381,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11978" ], "x-ms-request-id": [ - "4d406f05-d707-483d-9bd4-c44aa92019a5" + "8b48a9cd-7815-46b0-b128-159553da6a08" ], "x-ms-correlation-request-id": [ - "4d406f05-d707-483d-9bd4-c44aa92019a5" + "8b48a9cd-7815-46b0-b128-159553da6a08" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182809Z:4d406f05-d707-483d-9bd4-c44aa92019a5" + "CENTRALINDIA:20220512T093054Z:8b48a9cd-7815-46b0-b128-159553da6a08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:28:08 GMT" + "Thu, 12 May 2022 09:30:53 GMT" ], "Content-Length": [ "22" @@ -3529,19 +3409,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/3e45adfd-6e8b-4a53-9796-f083679d65cb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvM2U0NWFkZmQtNmU4Yi00YTUzLTk3OTYtZjA4MzY3OWQ2NWNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/012041a3-cf4f-4e97-8c92-d5d4f825a368?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMDEyMDQxYTMtY2Y0Zi00ZTk3LThjOTItZDVkNGY4MjVhMzY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3555,28 +3435,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "22192d15-42de-46fd-b9e1-5d5a1600aa0a" + "86606f14-8f0d-492d-a635-2c01c8f386c0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11977" ], "x-ms-request-id": [ - "db39cb64-ab1e-4d3e-8a04-a41a2f784159" + "5f159625-9513-4143-9d9a-12f48577c597" ], "x-ms-correlation-request-id": [ - "db39cb64-ab1e-4d3e-8a04-a41a2f784159" + "5f159625-9513-4143-9d9a-12f48577c597" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182809Z:db39cb64-ab1e-4d3e-8a04-a41a2f784159" + "CENTRALINDIA:20220512T093055Z:5f159625-9513-4143-9d9a-12f48577c597" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:28:09 GMT" + "Thu, 12 May 2022 09:30:54 GMT" ], "Content-Length": [ "0" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdletsUsingObject.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdletsUsingObject.json index 285c5a7afc69..9c5a7cd93593 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdletsUsingObject.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdletsUsingObject.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cbfb82d3-6b2d-43d0-a6f6-fa7373a294f8" + "f7d87312-06ec-4550-8ae3-e55815c0d536" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "93d59393-0269-4720-bedb-33a94334c070" + "cf2f515f-7e1f-4f11-b7bc-2c29e067d028" ], "x-ms-correlation-request-id": [ - "93d59393-0269-4720-bedb-33a94334c070" + "cf2f515f-7e1f-4f11-b7bc-2c29e067d028" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174937Z:93d59393-0269-4720-bedb-33a94334c070" + "JIOINDIACENTRAL:20220512T085237Z:cf2f515f-7e1f-4f11-b7bc-2c29e067d028" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:49:36 GMT" + "Thu, 12 May 2022 08:52:36 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e43994-1ca3-482c-b0b2-3a76e6ef3140" + "ec4cf879-4f30-41d9-ac0a-3c06b6321a0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "ee75efdd-6be1-45ca-8a9b-123e435a6458" + "fd7c71fa-87e9-4d3f-9220-f09554e65d03" ], "x-ms-correlation-request-id": [ - "ee75efdd-6be1-45ca-8a9b-123e435a6458" + "fd7c71fa-87e9-4d3f-9220-f09554e65d03" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174937Z:ee75efdd-6be1-45ca-8a9b-123e435a6458" + "JIOINDIACENTRAL:20220512T085238Z:fd7c71fa-87e9-4d3f-9220-f09554e65d03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:49:37 GMT" + "Thu, 12 May 2022 08:52:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e43994-1ca3-482c-b0b2-3a76e6ef3140" + "ec4cf879-4f30-41d9-ac0a-3c06b6321a0b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11974" ], "x-ms-request-id": [ - "f3c4fa6c-fcf2-4b38-b309-b23ac7ebf4b5" + "7eeb1f2d-3fe3-4bb0-8cdf-ce0ad134e83c" ], "x-ms-correlation-request-id": [ - "f3c4fa6c-fcf2-4b38-b309-b23ac7ebf4b5" + "7eeb1f2d-3fe3-4bb0-8cdf-ce0ad134e83c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175148Z:f3c4fa6c-fcf2-4b38-b309-b23ac7ebf4b5" + "JIOINDIACENTRAL:20220512T085450Z:7eeb1f2d-3fe3-4bb0-8cdf-ce0ad134e83c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:51:48 GMT" + "Thu, 12 May 2022 08:54:49 GMT" ], "Content-Length": [ - "2305" + "2306" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:50:59.251884Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"7d698029-0515-4b2c-996f-f9e7a9109a72\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:54:01.0318735Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"345d2f81-ffde-4b4d-8964-2404e50f35cb\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e88d5c3-e4db-4177-9178-dc60e72cbbdc" + "aaab0fb4-aa5f-4a5c-b8d8-0ce8d6ebe7c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,50 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11971" ], "x-ms-request-id": [ - "90c82b98-fae9-4143-8b44-220870780661" + "30a0aaad-a00d-4750-b46d-e1eb4df8dbb1" ], "x-ms-correlation-request-id": [ - "90c82b98-fae9-4143-8b44-220870780661" + "30a0aaad-a00d-4750-b46d-e1eb4df8dbb1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175149Z:90c82b98-fae9-4143-8b44-220870780661" + "JIOINDIACENTRAL:20220512T085452Z:30a0aaad-a00d-4750-b46d-e1eb4df8dbb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:51:48 GMT" + "Thu, 12 May 2022 08:54:52 GMT" ], "Content-Length": [ - "2305" + "2306" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:50:59.251884Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"7d698029-0515-4b2c-996f-f9e7a9109a72\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:54:01.0318735Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"345d2f81-ffde-4b4d-8964-2404e50f35cb\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -285,47 +285,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11983" ], "x-ms-request-id": [ - "192ed674-cb2f-4f37-b037-18e2e4dd6581" + "7b49a890-02ba-4fb9-b273-a88e397ef388" ], "x-ms-correlation-request-id": [ - "192ed674-cb2f-4f37-b037-18e2e4dd6581" + "7b49a890-02ba-4fb9-b273-a88e397ef388" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175149Z:192ed674-cb2f-4f37-b037-18e2e4dd6581" + "JIOINDIACENTRAL:20220512T085454Z:7b49a890-02ba-4fb9-b273-a88e397ef388" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:51:49 GMT" + "Thu, 12 May 2022 08:54:54 GMT" ], "Content-Length": [ - "2305" + "2306" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:50:59.251884Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"7d698029-0515-4b2c-996f-f9e7a9109a72\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:54:01.0318735Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"345d2f81-ffde-4b4d-8964-2404e50f35cb\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -345,50 +345,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11966" ], "x-ms-request-id": [ - "68aaa37b-d476-4df9-b255-dc73e21265f0" + "d052da22-87c9-425f-8a3d-edafb45dbc32" ], "x-ms-correlation-request-id": [ - "68aaa37b-d476-4df9-b255-dc73e21265f0" + "d052da22-87c9-425f-8a3d-edafb45dbc32" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180000Z:68aaa37b-d476-4df9-b255-dc73e21265f0" + "JIOINDIACENTRAL:20220512T090312Z:d052da22-87c9-425f-8a3d-edafb45dbc32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:00 GMT" + "Thu, 12 May 2022 09:03:12 GMT" ], "Content-Length": [ - "2393" + "2394" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:50:59.251884Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"7d698029-0515-4b2c-996f-f9e7a9109a72\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:54:01.0318735Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"345d2f81-ffde-4b4d-8964-2404e50f35cb\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cc4c199-410a-4c2c-bbad-b83b73cab739" + "9160cb1a-aec1-46f7-9bc5-61dec44d58ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -408,50 +408,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11931" ], "x-ms-request-id": [ - "48f34091-b8c6-498c-8a41-8cdbffea87f9" + "6e97fcd8-2597-4a58-8f22-340417036203" ], "x-ms-correlation-request-id": [ - "48f34091-b8c6-498c-8a41-8cdbffea87f9" + "6e97fcd8-2597-4a58-8f22-340417036203" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180000Z:48f34091-b8c6-498c-8a41-8cdbffea87f9" + "JIOINDIACENTRAL:20220512T090314Z:6e97fcd8-2597-4a58-8f22-340417036203" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:00 GMT" + "Thu, 12 May 2022 09:03:14 GMT" ], "Content-Length": [ - "2393" + "2394" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:50:59.251884Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"7d698029-0515-4b2c-996f-f9e7a9109a72\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:54:01.0318735Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"345d2f81-ffde-4b4d-8964-2404e50f35cb\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "98e43994-1ca3-482c-b0b2-3a76e6ef3140" + "ec4cf879-4f30-41d9-ac0a-3c06b6321a0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,13 +468,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/operationResults/9db8b0e0-9b91-48a9-a5c4-6a26c1678968?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/operationResults/4870bd8e-3c81-4c53-ba86-5e7919f1725f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "9db8b0e0-9b91-48a9-a5c4-6a26c1678968" + "4870bd8e-3c81-4c53-ba86-5e7919f1725f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9db8b0e0-9b91-48a9-a5c4-6a26c1678968?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4870bd8e-3c81-4c53-ba86-5e7919f1725f?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,44 +486,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "2aa44eb8-3725-46e2-ac8c-8834caf82563" + "5c318a36-b4b1-4a6f-97e7-2b68c5df36dd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174947Z:2aa44eb8-3725-46e2-ac8c-8834caf82563" + "JIOINDIACENTRAL:20220512T085248Z:5c318a36-b4b1-4a6f-97e7-2b68c5df36dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:49:46 GMT" + "Thu, 12 May 2022 08:52:47 GMT" ], "Content-Length": [ - "2003" + "2002" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:49:44.7331176Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"7d698029-0515-4b2c-996f-f9e7a9109a72\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:52:45.289962Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"345d2f81-ffde-4b4d-8964-2404e50f35cb\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9db8b0e0-9b91-48a9-a5c4-6a26c1678968?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWRiOGIwZTAtOWI5MS00OGE5LWE1YzQtNmEyNmMxNjc4OTY4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4870bd8e-3c81-4c53-ba86-5e7919f1725f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg3MGJkOGUtM2M4MS00YzUzLWJhODYtNWU3OTE5ZjE3MjVmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e43994-1ca3-482c-b0b2-3a76e6ef3140" + "ec4cf879-4f30-41d9-ac0a-3c06b6321a0b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -543,22 +543,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11978" ], "x-ms-request-id": [ - "d33b0de3-96db-4c30-a9c9-96253a695163" + "5e6f2906-c527-4e46-95bf-740808969e69" ], "x-ms-correlation-request-id": [ - "d33b0de3-96db-4c30-a9c9-96253a695163" + "5e6f2906-c527-4e46-95bf-740808969e69" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175017Z:d33b0de3-96db-4c30-a9c9-96253a695163" + "JIOINDIACENTRAL:20220512T085319Z:5e6f2906-c527-4e46-95bf-740808969e69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:50:17 GMT" + "Thu, 12 May 2022 08:53:18 GMT" ], "Content-Length": [ "21" @@ -571,19 +571,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9db8b0e0-9b91-48a9-a5c4-6a26c1678968?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWRiOGIwZTAtOWI5MS00OGE5LWE1YzQtNmEyNmMxNjc4OTY4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4870bd8e-3c81-4c53-ba86-5e7919f1725f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg3MGJkOGUtM2M4MS00YzUzLWJhODYtNWU3OTE5ZjE3MjVmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e43994-1ca3-482c-b0b2-3a76e6ef3140" + "ec4cf879-4f30-41d9-ac0a-3c06b6321a0b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -603,22 +603,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11977" ], "x-ms-request-id": [ - "147e9317-2381-41ff-b530-36bba8020959" + "c959a716-5b40-48ec-9c2b-958f18c10c43" ], "x-ms-correlation-request-id": [ - "147e9317-2381-41ff-b530-36bba8020959" + "c959a716-5b40-48ec-9c2b-958f18c10c43" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175048Z:147e9317-2381-41ff-b530-36bba8020959" + "JIOINDIACENTRAL:20220512T085349Z:c959a716-5b40-48ec-9c2b-958f18c10c43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:50:47 GMT" + "Thu, 12 May 2022 08:53:48 GMT" ], "Content-Length": [ "21" @@ -631,19 +631,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9db8b0e0-9b91-48a9-a5c4-6a26c1678968?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWRiOGIwZTAtOWI5MS00OGE5LWE1YzQtNmEyNmMxNjc4OTY4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4870bd8e-3c81-4c53-ba86-5e7919f1725f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg3MGJkOGUtM2M4MS00YzUzLWJhODYtNWU3OTE5ZjE3MjVmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e43994-1ca3-482c-b0b2-3a76e6ef3140" + "ec4cf879-4f30-41d9-ac0a-3c06b6321a0b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -663,22 +663,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11976" ], "x-ms-request-id": [ - "d7c874e8-deeb-48ef-87a5-6b04b2284df6" + "bb6aaf05-2dcc-4537-968f-0307e1daca52" ], "x-ms-correlation-request-id": [ - "d7c874e8-deeb-48ef-87a5-6b04b2284df6" + "bb6aaf05-2dcc-4537-968f-0307e1daca52" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175118Z:d7c874e8-deeb-48ef-87a5-6b04b2284df6" + "JIOINDIACENTRAL:20220512T085419Z:bb6aaf05-2dcc-4537-968f-0307e1daca52" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:51:17 GMT" + "Thu, 12 May 2022 08:54:19 GMT" ], "Content-Length": [ "21" @@ -691,19 +691,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9db8b0e0-9b91-48a9-a5c4-6a26c1678968?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWRiOGIwZTAtOWI5MS00OGE5LWE1YzQtNmEyNmMxNjc4OTY4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4870bd8e-3c81-4c53-ba86-5e7919f1725f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg3MGJkOGUtM2M4MS00YzUzLWJhODYtNWU3OTE5ZjE3MjVmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e43994-1ca3-482c-b0b2-3a76e6ef3140" + "ec4cf879-4f30-41d9-ac0a-3c06b6321a0b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -723,22 +723,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11975" ], "x-ms-request-id": [ - "38681b46-2e82-4300-982b-72d401848785" + "70da2688-acd3-4201-aa2c-e8e43979900e" ], "x-ms-correlation-request-id": [ - "38681b46-2e82-4300-982b-72d401848785" + "70da2688-acd3-4201-aa2c-e8e43979900e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175148Z:38681b46-2e82-4300-982b-72d401848785" + "JIOINDIACENTRAL:20220512T085449Z:70da2688-acd3-4201-aa2c-e8e43979900e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:51:48 GMT" + "Thu, 12 May 2022 08:54:49 GMT" ], "Content-Length": [ "22" @@ -751,22 +751,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,13 +783,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/operationResults/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/operationResults/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "fcc4bae5-fadd-400e-b944-bdc381316f23" + "bc6d8a53-8881-444c-a60e-c5468a674606" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -801,44 +801,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "3def9395-e09c-4825-9cfe-4a97616e12fb" + "24c6f591-c65d-4768-bbba-1f439cc8a774" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175154Z:3def9395-e09c-4825-9cfe-4a97616e12fb" + "JIOINDIACENTRAL:20220512T085502Z:24c6f591-c65d-4768-bbba-1f439cc8a774" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:51:54 GMT" + "Thu, 12 May 2022 08:55:02 GMT" ], "Content-Length": [ - "2301" + "2305" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:50:59.251884Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"7d698029-0515-4b2c-996f-f9e7a9109a72\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31\",\r\n \"name\": \"dbaccount31\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:54:01.0318735Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://dbaccount31.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"345d2f81-ffde-4b4d-8964-2404e50f35cb\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount31-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount31-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -858,22 +858,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11982" ], "x-ms-request-id": [ - "040f458e-5500-4c32-80f5-db354139f3de" + "11240525-7e62-4f09-8ced-0544adebd83d" ], "x-ms-correlation-request-id": [ - "040f458e-5500-4c32-80f5-db354139f3de" + "11240525-7e62-4f09-8ced-0544adebd83d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175224Z:040f458e-5500-4c32-80f5-db354139f3de" + "JIOINDIACENTRAL:20220512T085532Z:11240525-7e62-4f09-8ced-0544adebd83d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:52:23 GMT" + "Thu, 12 May 2022 08:55:31 GMT" ], "Content-Length": [ "21" @@ -886,19 +886,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -918,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11981" ], "x-ms-request-id": [ - "331f4ea5-9329-46aa-84c5-f554a8254778" + "b89e9e9a-41df-49fd-9c15-ad5891654b9e" ], "x-ms-correlation-request-id": [ - "331f4ea5-9329-46aa-84c5-f554a8254778" + "b89e9e9a-41df-49fd-9c15-ad5891654b9e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175255Z:331f4ea5-9329-46aa-84c5-f554a8254778" + "JIOINDIACENTRAL:20220512T085603Z:b89e9e9a-41df-49fd-9c15-ad5891654b9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:52:54 GMT" + "Thu, 12 May 2022 08:56:03 GMT" ], "Content-Length": [ "21" @@ -946,19 +946,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11980" ], "x-ms-request-id": [ - "d047bafb-52e6-421b-8585-2061240c3b20" + "b8e813d7-d24c-42ba-9cef-2afc69855fb3" ], "x-ms-correlation-request-id": [ - "d047bafb-52e6-421b-8585-2061240c3b20" + "b8e813d7-d24c-42ba-9cef-2afc69855fb3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175325Z:d047bafb-52e6-421b-8585-2061240c3b20" + "JIOINDIACENTRAL:20220512T085634Z:b8e813d7-d24c-42ba-9cef-2afc69855fb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:53:25 GMT" + "Thu, 12 May 2022 08:56:33 GMT" ], "Content-Length": [ "21" @@ -1006,19 +1006,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11979" ], "x-ms-request-id": [ - "c87a7032-b0bb-4439-be5c-d453b8867349" + "c222c517-e959-4384-b127-e33e27fffc3c" ], "x-ms-correlation-request-id": [ - "c87a7032-b0bb-4439-be5c-d453b8867349" + "c222c517-e959-4384-b127-e33e27fffc3c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175355Z:c87a7032-b0bb-4439-be5c-d453b8867349" + "JIOINDIACENTRAL:20220512T085704Z:c222c517-e959-4384-b127-e33e27fffc3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:53:54 GMT" + "Thu, 12 May 2022 08:57:04 GMT" ], "Content-Length": [ "21" @@ -1066,19 +1066,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1098,22 +1098,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11978" ], "x-ms-request-id": [ - "389fd44b-8e18-4650-8f6f-4d753d735c56" + "f8d185e2-7a9b-4d06-9ac9-c0b6780b6609" ], "x-ms-correlation-request-id": [ - "389fd44b-8e18-4650-8f6f-4d753d735c56" + "f8d185e2-7a9b-4d06-9ac9-c0b6780b6609" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175425Z:389fd44b-8e18-4650-8f6f-4d753d735c56" + "JIOINDIACENTRAL:20220512T085735Z:f8d185e2-7a9b-4d06-9ac9-c0b6780b6609" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:54:25 GMT" + "Thu, 12 May 2022 08:57:35 GMT" ], "Content-Length": [ "21" @@ -1126,19 +1126,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1158,22 +1158,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11977" ], "x-ms-request-id": [ - "aa0fdf23-6e63-4493-bc47-a7ba9e601efc" + "053b2462-ed06-44a1-b4ba-4644da40a215" ], "x-ms-correlation-request-id": [ - "aa0fdf23-6e63-4493-bc47-a7ba9e601efc" + "053b2462-ed06-44a1-b4ba-4644da40a215" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175456Z:aa0fdf23-6e63-4493-bc47-a7ba9e601efc" + "JIOINDIACENTRAL:20220512T085806Z:053b2462-ed06-44a1-b4ba-4644da40a215" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:54:55 GMT" + "Thu, 12 May 2022 08:58:05 GMT" ], "Content-Length": [ "21" @@ -1186,19 +1186,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1218,22 +1218,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11976" ], "x-ms-request-id": [ - "556a5d5b-3cf8-4007-b1fa-c038e9414dff" + "54c906f8-6264-4b6c-bf1a-9d61dde533f1" ], "x-ms-correlation-request-id": [ - "556a5d5b-3cf8-4007-b1fa-c038e9414dff" + "54c906f8-6264-4b6c-bf1a-9d61dde533f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175526Z:556a5d5b-3cf8-4007-b1fa-c038e9414dff" + "JIOINDIACENTRAL:20220512T085836Z:54c906f8-6264-4b6c-bf1a-9d61dde533f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:55:25 GMT" + "Thu, 12 May 2022 08:58:35 GMT" ], "Content-Length": [ "21" @@ -1246,19 +1246,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1278,22 +1278,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11975" ], "x-ms-request-id": [ - "be9bb73d-5cd0-420b-a6f9-4b0773519eab" + "357b5bcd-e3e8-43d2-82b3-1576dd15007a" ], "x-ms-correlation-request-id": [ - "be9bb73d-5cd0-420b-a6f9-4b0773519eab" + "357b5bcd-e3e8-43d2-82b3-1576dd15007a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175557Z:be9bb73d-5cd0-420b-a6f9-4b0773519eab" + "JIOINDIACENTRAL:20220512T085907Z:357b5bcd-e3e8-43d2-82b3-1576dd15007a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:55:57 GMT" + "Thu, 12 May 2022 08:59:07 GMT" ], "Content-Length": [ "21" @@ -1306,19 +1306,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1338,22 +1338,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11974" ], "x-ms-request-id": [ - "a1de818f-2ab9-43ef-8c72-24ffca41a1a7" + "8b804038-768d-4387-b69b-13d081bd1b5d" ], "x-ms-correlation-request-id": [ - "a1de818f-2ab9-43ef-8c72-24ffca41a1a7" + "8b804038-768d-4387-b69b-13d081bd1b5d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175627Z:a1de818f-2ab9-43ef-8c72-24ffca41a1a7" + "JIOINDIACENTRAL:20220512T085937Z:8b804038-768d-4387-b69b-13d081bd1b5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:56:27 GMT" + "Thu, 12 May 2022 08:59:37 GMT" ], "Content-Length": [ "21" @@ -1366,19 +1366,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1398,22 +1398,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11973" ], "x-ms-request-id": [ - "b753a026-6c1d-43d8-a94b-b5e5abc61736" + "db1edb91-cd1f-4800-a961-29b22842ecb9" ], "x-ms-correlation-request-id": [ - "b753a026-6c1d-43d8-a94b-b5e5abc61736" + "db1edb91-cd1f-4800-a961-29b22842ecb9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175657Z:b753a026-6c1d-43d8-a94b-b5e5abc61736" + "JIOINDIACENTRAL:20220512T090008Z:db1edb91-cd1f-4800-a961-29b22842ecb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:56:57 GMT" + "Thu, 12 May 2022 09:00:07 GMT" ], "Content-Length": [ "21" @@ -1426,19 +1426,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1458,22 +1458,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11972" ], "x-ms-request-id": [ - "1c2723c0-a8ad-48df-b1fb-17aad02eac5c" + "9058e148-7389-43e6-9568-76d07f03f81b" ], "x-ms-correlation-request-id": [ - "1c2723c0-a8ad-48df-b1fb-17aad02eac5c" + "9058e148-7389-43e6-9568-76d07f03f81b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175728Z:1c2723c0-a8ad-48df-b1fb-17aad02eac5c" + "JIOINDIACENTRAL:20220512T090038Z:9058e148-7389-43e6-9568-76d07f03f81b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:57:27 GMT" + "Thu, 12 May 2022 09:00:38 GMT" ], "Content-Length": [ "21" @@ -1486,19 +1486,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1518,22 +1518,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11971" ], "x-ms-request-id": [ - "eb561adf-873c-403a-92d1-bc1099e3bd7d" + "312c2a93-a1d4-46a3-be0a-f3d5ec338846" ], "x-ms-correlation-request-id": [ - "eb561adf-873c-403a-92d1-bc1099e3bd7d" + "312c2a93-a1d4-46a3-be0a-f3d5ec338846" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175758Z:eb561adf-873c-403a-92d1-bc1099e3bd7d" + "JIOINDIACENTRAL:20220512T090109Z:312c2a93-a1d4-46a3-be0a-f3d5ec338846" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:57:58 GMT" + "Thu, 12 May 2022 09:01:09 GMT" ], "Content-Length": [ "21" @@ -1546,19 +1546,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1578,22 +1578,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11970" ], "x-ms-request-id": [ - "1c7c5322-e629-4525-b87d-32ffedc9ccde" + "e3fd8ccf-e589-4b13-a54a-7a3bc2c954bc" ], "x-ms-correlation-request-id": [ - "1c7c5322-e629-4525-b87d-32ffedc9ccde" + "e3fd8ccf-e589-4b13-a54a-7a3bc2c954bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175828Z:1c7c5322-e629-4525-b87d-32ffedc9ccde" + "JIOINDIACENTRAL:20220512T090140Z:e3fd8ccf-e589-4b13-a54a-7a3bc2c954bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:58:27 GMT" + "Thu, 12 May 2022 09:01:40 GMT" ], "Content-Length": [ "21" @@ -1606,19 +1606,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1638,22 +1638,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11969" ], "x-ms-request-id": [ - "dc1463f7-9be3-415c-886a-15137c3c0d24" + "6caebd31-1863-481c-9451-168627ce9daa" ], "x-ms-correlation-request-id": [ - "dc1463f7-9be3-415c-886a-15137c3c0d24" + "6caebd31-1863-481c-9451-168627ce9daa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175858Z:dc1463f7-9be3-415c-886a-15137c3c0d24" + "JIOINDIACENTRAL:20220512T090210Z:6caebd31-1863-481c-9451-168627ce9daa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:58:58 GMT" + "Thu, 12 May 2022 09:02:10 GMT" ], "Content-Length": [ "21" @@ -1666,19 +1666,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1698,22 +1698,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11968" ], "x-ms-request-id": [ - "ad7d8bab-aa44-4d58-8052-e12514edc3ca" + "e830c24e-1153-4c30-aae1-9b0fe39f7c12" ], "x-ms-correlation-request-id": [ - "ad7d8bab-aa44-4d58-8052-e12514edc3ca" + "e830c24e-1153-4c30-aae1-9b0fe39f7c12" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175929Z:ad7d8bab-aa44-4d58-8052-e12514edc3ca" + "JIOINDIACENTRAL:20220512T090241Z:e830c24e-1153-4c30-aae1-9b0fe39f7c12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:59:28 GMT" + "Thu, 12 May 2022 09:02:40 GMT" ], "Content-Length": [ "21" @@ -1726,19 +1726,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fcc4bae5-fadd-400e-b944-bdc381316f23?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmNjNGJhZTUtZmFkZC00MDBlLWI5NDQtYmRjMzgxMzE2ZjIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc6d8a53-8881-444c-a60e-c5468a674606?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM2ZDhhNTMtODg4MS00NDRjLWE2MGUtYzU0NjhhNjc0NjA2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1275e75-7e46-483b-b2c3-b6c5d4f1d257" + "48c5b02f-3fc7-4766-88ec-bf139c5cfaae" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1758,22 +1758,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11967" ], "x-ms-request-id": [ - "7544be32-cfcb-4833-a82a-69c7dc57e9db" + "a35bfde2-ef2f-4739-8945-5e2e46f91930" ], "x-ms-correlation-request-id": [ - "7544be32-cfcb-4833-a82a-69c7dc57e9db" + "a35bfde2-ef2f-4739-8945-5e2e46f91930" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T175959Z:7544be32-cfcb-4833-a82a-69c7dc57e9db" + "JIOINDIACENTRAL:20220512T090312Z:a35bfde2-ef2f-4739-8945-5e2e46f91930" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:59:59 GMT" + "Thu, 12 May 2022 09:03:11 GMT" ], "Content-Length": [ "22" @@ -1786,22 +1786,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/listKeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/listKeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33d4aa90-aa7a-4d12-8cdf-e7d55e59a17a" + "fc867c32-4648-4a91-8c63-c751382ba6a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1824,19 +1824,19 @@ "1199" ], "x-ms-request-id": [ - "b1ba5780-d505-41f0-b96f-90c46e3a40e3" + "beb8efcc-3239-4aba-a9a5-bd65925f6047" ], "x-ms-correlation-request-id": [ - "b1ba5780-d505-41f0-b96f-90c46e3a40e3" + "beb8efcc-3239-4aba-a9a5-bd65925f6047" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180001Z:b1ba5780-d505-41f0-b96f-90c46e3a40e3" + "JIOINDIACENTRAL:20220512T090317Z:beb8efcc-3239-4aba-a9a5-bd65925f6047" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:00 GMT" + "Thu, 12 May 2022 09:03:16 GMT" ], "Content-Length": [ "461" @@ -1845,26 +1845,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"r3iheZu8IeBRjg8hCmbo42PPNtIxBWbdK36H1MZuP8VW3vh5KWZHIn2JSAE2NiA9OtHTNBThtSNspTIn4i59Jw==\",\r\n \"secondaryMasterKey\": \"jgru9e7gWBtJI4wIyzAkFoXP2buWSPMmhj2Z8deYPzwza2wqNt7kPe0raSmX13XMfvs3hthx8jJWNWc1WMdfdA==\",\r\n \"primaryReadonlyMasterKey\": \"e9ygUhZa5DFgcqvrXLMjmEBc5ZU8RNMC87l3NVs9U4eTz59CSBsDUxbHxGS3zxgBdnYvunDJOJztHrQpK081kQ==\",\r\n \"secondaryReadonlyMasterKey\": \"IK8N3XhYNIWvAa4p2KtCqFvodC37kbhrK6yKfRd3prSP1yK2rBNJh03EqIYQFKBvWKQdVrYsEo7LQ0mJiFszWQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"JMFRVnmNpBIc2I8KpemkJuSXHsBMbBcHjnMvPlSuTlSs8Wst4rkBbxH45zBX9mKiVfsJRHmRXzQ2aQCVcQWctA==\",\r\n \"secondaryMasterKey\": \"GGivSt51yDqvg62HLImFYUg1Mwontl7LFyhG3xpKGy9f2FyuwzTxYIDDDnxWzzRslSr7dCFJjUeLTPTT4l9aFA==\",\r\n \"primaryReadonlyMasterKey\": \"yTIAhpP8dJb89gSi8JtbUsmksTUOuYV7Hx0j6U2h7MH1bCTkcMbGodkBpJeJ7BMRwwQPTs7N9JaZiZgKqgiEPg==\",\r\n \"secondaryReadonlyMasterKey\": \"eqiqdRfRP6aJONPYgy8M07ayGGrTThrXI46Q1Z9Bw3P0HIrKAYdflAqIvC9O9KeddBdqS4YUDmzFKMcRdhtd1w==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/listKeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/listKeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6db93f0-c622-4fed-93a9-4b56b1cef15b" + "3fc3a6c0-a8a6-4377-851d-0bb23b2e3e8e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1884,22 +1884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "4d8e43dc-61a8-46c1-ad2e-1682fa1d3d1e" + "cd3363c9-51f5-46d9-b8b5-79831fff0190" ], "x-ms-correlation-request-id": [ - "4d8e43dc-61a8-46c1-ad2e-1682fa1d3d1e" + "cd3363c9-51f5-46d9-b8b5-79831fff0190" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180034Z:4d8e43dc-61a8-46c1-ad2e-1682fa1d3d1e" + "JIOINDIACENTRAL:20220512T090357Z:cd3363c9-51f5-46d9-b8b5-79831fff0190" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:33 GMT" + "Thu, 12 May 2022 09:03:57 GMT" ], "Content-Length": [ "461" @@ -1908,26 +1908,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"r3iheZu8IeBRjg8hCmbo42PPNtIxBWbdK36H1MZuP8VW3vh5KWZHIn2JSAE2NiA9OtHTNBThtSNspTIn4i59Jw==\",\r\n \"secondaryMasterKey\": \"jgru9e7gWBtJI4wIyzAkFoXP2buWSPMmhj2Z8deYPzwza2wqNt7kPe0raSmX13XMfvs3hthx8jJWNWc1WMdfdA==\",\r\n \"primaryReadonlyMasterKey\": \"3yAV5QCU2aaiTw8bbGpq0WxpsUg5TZIs2LEyOhSRNCtQRfcQcsxWkFkrdAJCrWGisck07BPxZcYT37Jbo8Hzkw==\",\r\n \"secondaryReadonlyMasterKey\": \"IK8N3XhYNIWvAa4p2KtCqFvodC37kbhrK6yKfRd3prSP1yK2rBNJh03EqIYQFKBvWKQdVrYsEo7LQ0mJiFszWQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"JMFRVnmNpBIc2I8KpemkJuSXHsBMbBcHjnMvPlSuTlSs8Wst4rkBbxH45zBX9mKiVfsJRHmRXzQ2aQCVcQWctA==\",\r\n \"secondaryMasterKey\": \"GGivSt51yDqvg62HLImFYUg1Mwontl7LFyhG3xpKGy9f2FyuwzTxYIDDDnxWzzRslSr7dCFJjUeLTPTT4l9aFA==\",\r\n \"primaryReadonlyMasterKey\": \"YOjyv0gQKLBkcBsG5aFhF5BcXxbuhj54ePludJOdUEMby4RCjikUiIYLck5ZxE6Kxy51maXDrNyyP4g66m1eGA==\",\r\n \"secondaryReadonlyMasterKey\": \"eqiqdRfRP6aJONPYgy8M07ayGGrTThrXI46Q1Z9Bw3P0HIrKAYdflAqIvC9O9KeddBdqS4YUDmzFKMcRdhtd1w==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/listConnectionStrings?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/listConnectionStrings?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de34b911-3160-4a56-951c-7a58d6c084b6" + "44465b09-c85f-4d02-82d4-ec063c52ab1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1947,22 +1947,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "4c87e2d9-688c-4542-ad15-92081f1a9b1d" + "fb808342-1f71-4899-aec1-88d71718bfc5" ], "x-ms-correlation-request-id": [ - "4c87e2d9-688c-4542-ad15-92081f1a9b1d" + "fb808342-1f71-4899-aec1-88d71718bfc5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180001Z:4c87e2d9-688c-4542-ad15-92081f1a9b1d" + "JIOINDIACENTRAL:20220512T090320Z:fb808342-1f71-4899-aec1-88d71718bfc5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:01 GMT" + "Thu, 12 May 2022 09:03:20 GMT" ], "Content-Length": [ "971" @@ -1971,26 +1971,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount31.documents.azure.com:443/;AccountKey=r3iheZu8IeBRjg8hCmbo42PPNtIxBWbdK36H1MZuP8VW3vh5KWZHIn2JSAE2NiA9OtHTNBThtSNspTIn4i59Jw==;\",\r\n \"description\": \"Primary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount31.documents.azure.com:443/;AccountKey=jgru9e7gWBtJI4wIyzAkFoXP2buWSPMmhj2Z8deYPzwza2wqNt7kPe0raSmX13XMfvs3hthx8jJWNWc1WMdfdA==;\",\r\n \"description\": \"Secondary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount31.documents.azure.com:443/;AccountKey=e9ygUhZa5DFgcqvrXLMjmEBc5ZU8RNMC87l3NVs9U4eTz59CSBsDUxbHxGS3zxgBdnYvunDJOJztHrQpK081kQ==;\",\r\n \"description\": \"Primary Read-Only SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount31.documents.azure.com:443/;AccountKey=IK8N3XhYNIWvAa4p2KtCqFvodC37kbhrK6yKfRd3prSP1yK2rBNJh03EqIYQFKBvWKQdVrYsEo7LQ0mJiFszWQ==;\",\r\n \"description\": \"Secondary Read-Only SQL Connection String\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount31.documents.azure.com:443/;AccountKey=JMFRVnmNpBIc2I8KpemkJuSXHsBMbBcHjnMvPlSuTlSs8Wst4rkBbxH45zBX9mKiVfsJRHmRXzQ2aQCVcQWctA==;\",\r\n \"description\": \"Primary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount31.documents.azure.com:443/;AccountKey=GGivSt51yDqvg62HLImFYUg1Mwontl7LFyhG3xpKGy9f2FyuwzTxYIDDDnxWzzRslSr7dCFJjUeLTPTT4l9aFA==;\",\r\n \"description\": \"Secondary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount31.documents.azure.com:443/;AccountKey=yTIAhpP8dJb89gSi8JtbUsmksTUOuYV7Hx0j6U2h7MH1bCTkcMbGodkBpJeJ7BMRwwQPTs7N9JaZiZgKqgiEPg==;\",\r\n \"description\": \"Primary Read-Only SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount31.documents.azure.com:443/;AccountKey=eqiqdRfRP6aJONPYgy8M07ayGGrTThrXI46Q1Z9Bw3P0HIrKAYdflAqIvC9O9KeddBdqS4YUDmzFKMcRdhtd1w==;\",\r\n \"description\": \"Secondary Read-Only SQL Connection String\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/readonlykeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/readonlykeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6fce012-423b-4a5e-9bd2-2f39b4f6a518" + "e54d0411-1dc8-4934-b6aa-e61d538f1868" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2009,23 +2009,23 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "53812cc4-c343-4b58-a137-fc685962d22f" + "6c7552dd-dbdd-476b-a653-55b0a90eccc8" ], "x-ms-correlation-request-id": [ - "53812cc4-c343-4b58-a137-fc685962d22f" + "6c7552dd-dbdd-476b-a653-55b0a90eccc8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180002Z:53812cc4-c343-4b58-a137-fc685962d22f" + "JIOINDIACENTRAL:20220512T090321Z:6c7552dd-dbdd-476b-a653-55b0a90eccc8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:01 GMT" + "Thu, 12 May 2022 09:03:20 GMT" ], "Content-Length": [ "239" @@ -2034,26 +2034,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"e9ygUhZa5DFgcqvrXLMjmEBc5ZU8RNMC87l3NVs9U4eTz59CSBsDUxbHxGS3zxgBdnYvunDJOJztHrQpK081kQ==\",\r\n \"secondaryReadonlyMasterKey\": \"IK8N3XhYNIWvAa4p2KtCqFvodC37kbhrK6yKfRd3prSP1yK2rBNJh03EqIYQFKBvWKQdVrYsEo7LQ0mJiFszWQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"yTIAhpP8dJb89gSi8JtbUsmksTUOuYV7Hx0j6U2h7MH1bCTkcMbGodkBpJeJ7BMRwwQPTs7N9JaZiZgKqgiEPg==\",\r\n \"secondaryReadonlyMasterKey\": \"eqiqdRfRP6aJONPYgy8M07ayGGrTThrXI46Q1Z9Bw3P0HIrKAYdflAqIvC9O9KeddBdqS4YUDmzFKMcRdhtd1w==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/regenerateKey?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/regenerateKey?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyKind\": \"primaryReadonly\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6db93f0-c622-4fed-93a9-4b56b1cef15b" + "3fc3a6c0-a8a6-4377-851d-0bb23b2e3e8e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2070,13 +2070,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/regenerateKey/operationResults/eff75317-72d9-4405-a408-0c67d9fc5b4e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/regenerateKey/operationResults/f14d7ad9-e15d-4f8e-b7b0-58d78ad2a41f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eff75317-72d9-4405-a408-0c67d9fc5b4e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f14d7ad9-e15d-4f8e-b7b0-58d78ad2a41f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "eff75317-72d9-4405-a408-0c67d9fc5b4e" + "f14d7ad9-e15d-4f8e-b7b0-58d78ad2a41f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2088,19 +2088,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "8756295c-f7a9-4fc6-99d6-5275ad2b4d4f" + "291f023b-a07d-4d68-9a90-a4612d02a95f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180003Z:8756295c-f7a9-4fc6-99d6-5275ad2b4d4f" + "JIOINDIACENTRAL:20220512T090324Z:291f023b-a07d-4d68-9a90-a4612d02a95f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:03 GMT" + "Thu, 12 May 2022 09:03:23 GMT" ], "Content-Length": [ "21" @@ -2113,19 +2113,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eff75317-72d9-4405-a408-0c67d9fc5b4e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWZmNzUzMTctNzJkOS00NDA1LWE0MDgtMGM2N2Q5ZmM1YjRlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f14d7ad9-e15d-4f8e-b7b0-58d78ad2a41f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjE0ZDdhZDktZTE1ZC00ZjhlLWI3YjAtNThkNzhhZDJhNDFmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6db93f0-c622-4fed-93a9-4b56b1cef15b" + "3fc3a6c0-a8a6-4377-851d-0bb23b2e3e8e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2145,22 +2145,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11947" ], "x-ms-request-id": [ - "d1d7de96-64e2-4cb1-b4c0-aa8acb9f1799" + "b58d1ad1-7bbf-48db-bb1a-56ea44f518b2" ], "x-ms-correlation-request-id": [ - "d1d7de96-64e2-4cb1-b4c0-aa8acb9f1799" + "b58d1ad1-7bbf-48db-bb1a-56ea44f518b2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180033Z:d1d7de96-64e2-4cb1-b4c0-aa8acb9f1799" + "JIOINDIACENTRAL:20220512T090355Z:b58d1ad1-7bbf-48db-bb1a-56ea44f518b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:32 GMT" + "Thu, 12 May 2022 09:03:54 GMT" ], "Content-Length": [ "22" @@ -2173,19 +2173,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/regenerateKey/operationResults/eff75317-72d9-4405-a408-0c67d9fc5b4e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy9lZmY3NTMxNy03MmQ5LTQ0MDUtYTQwOC0wYzY3ZDlmYzViNGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31/regenerateKey/operationResults/f14d7ad9-e15d-4f8e-b7b0-58d78ad2a41f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxL3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy9mMTRkN2FkOS1lMTVkLTRmOGUtYjdiMC01OGQ3OGFkMmE0MWY/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6db93f0-c622-4fed-93a9-4b56b1cef15b" + "3fc3a6c0-a8a6-4377-851d-0bb23b2e3e8e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2205,22 +2205,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11946" ], "x-ms-request-id": [ - "9d6e081d-7959-47e6-aef6-a970246a8ab7" + "9b96dbbc-e2e2-4ff0-8c33-8d19289be936" ], "x-ms-correlation-request-id": [ - "9d6e081d-7959-47e6-aef6-a970246a8ab7" + "9b96dbbc-e2e2-4ff0-8c33-8d19289be936" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180034Z:9d6e081d-7959-47e6-aef6-a970246a8ab7" + "JIOINDIACENTRAL:20220512T090355Z:9b96dbbc-e2e2-4ff0-8c33-8d19289be936" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:33 GMT" + "Thu, 12 May 2022 09:03:54 GMT" ], "Content-Length": [ "22" @@ -2233,22 +2233,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount31?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2259,13 +2259,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "03b8a779-f6e0-4f9a-9317-1594b73c1767" + "8d898dba-415c-4331-8680-07c309602058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2277,19 +2277,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "876a9d5c-3f9e-4dd6-8572-418067b9092f" + "b4302918-554c-4dd7-8ebb-6a69aeab4fe2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180036Z:876a9d5c-3f9e-4dd6-8572-418067b9092f" + "JIOINDIACENTRAL:20220512T090401Z:b4302918-554c-4dd7-8ebb-6a69aeab4fe2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:00:35 GMT" + "Thu, 12 May 2022 09:04:01 GMT" ], "Content-Length": [ "21" @@ -2302,19 +2302,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2334,22 +2334,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11930" ], "x-ms-request-id": [ - "0947f97d-26f9-40d8-ae40-2306c9ab78f2" + "41e1d7b3-d063-42e6-aee0-dda5f3bdd9b1" ], "x-ms-correlation-request-id": [ - "0947f97d-26f9-40d8-ae40-2306c9ab78f2" + "41e1d7b3-d063-42e6-aee0-dda5f3bdd9b1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180106Z:0947f97d-26f9-40d8-ae40-2306c9ab78f2" + "JIOINDIACENTRAL:20220512T090432Z:41e1d7b3-d063-42e6-aee0-dda5f3bdd9b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:01:06 GMT" + "Thu, 12 May 2022 09:04:31 GMT" ], "Content-Length": [ "21" @@ -2362,19 +2362,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2394,22 +2394,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11929" ], "x-ms-request-id": [ - "7421bddf-3293-4d61-9981-ea36286b9295" + "b537d381-b3e2-41f7-8414-09f1e5ea1db0" ], "x-ms-correlation-request-id": [ - "7421bddf-3293-4d61-9981-ea36286b9295" + "b537d381-b3e2-41f7-8414-09f1e5ea1db0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180136Z:7421bddf-3293-4d61-9981-ea36286b9295" + "JIOINDIACENTRAL:20220512T090502Z:b537d381-b3e2-41f7-8414-09f1e5ea1db0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:01:35 GMT" + "Thu, 12 May 2022 09:05:01 GMT" ], "Content-Length": [ "21" @@ -2422,19 +2422,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2454,22 +2454,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11928" ], "x-ms-request-id": [ - "61850c6a-bd21-49f4-b55b-3aaeb938a7a2" + "569f7bcb-6a99-440a-ab50-4850d6282245" ], "x-ms-correlation-request-id": [ - "61850c6a-bd21-49f4-b55b-3aaeb938a7a2" + "569f7bcb-6a99-440a-ab50-4850d6282245" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180207Z:61850c6a-bd21-49f4-b55b-3aaeb938a7a2" + "JIOINDIACENTRAL:20220512T090533Z:569f7bcb-6a99-440a-ab50-4850d6282245" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:02:06 GMT" + "Thu, 12 May 2022 09:05:33 GMT" ], "Content-Length": [ "21" @@ -2482,19 +2482,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2514,22 +2514,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11927" ], "x-ms-request-id": [ - "b1cf49fa-4950-4bc9-88a7-c23af5ba2dad" + "a90008d7-bdb8-4204-85ad-ceab60c35ad0" ], "x-ms-correlation-request-id": [ - "b1cf49fa-4950-4bc9-88a7-c23af5ba2dad" + "a90008d7-bdb8-4204-85ad-ceab60c35ad0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180237Z:b1cf49fa-4950-4bc9-88a7-c23af5ba2dad" + "JIOINDIACENTRAL:20220512T090603Z:a90008d7-bdb8-4204-85ad-ceab60c35ad0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:02:37 GMT" + "Thu, 12 May 2022 09:06:03 GMT" ], "Content-Length": [ "21" @@ -2542,19 +2542,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2574,22 +2574,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11926" ], "x-ms-request-id": [ - "1cd7b383-125b-4c2b-b882-6c193db1f7d3" + "5f71522d-d6d7-4ff9-a497-39e50eb9b489" ], "x-ms-correlation-request-id": [ - "1cd7b383-125b-4c2b-b882-6c193db1f7d3" + "5f71522d-d6d7-4ff9-a497-39e50eb9b489" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180308Z:1cd7b383-125b-4c2b-b882-6c193db1f7d3" + "JIOINDIACENTRAL:20220512T090634Z:5f71522d-d6d7-4ff9-a497-39e50eb9b489" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:03:07 GMT" + "Thu, 12 May 2022 09:06:33 GMT" ], "Content-Length": [ "21" @@ -2602,19 +2602,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2634,22 +2634,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11925" ], "x-ms-request-id": [ - "1796f326-0910-49e8-9176-fe4e98afc0ca" + "427d0cf5-5909-4007-a2bb-41ea4622afb7" ], "x-ms-correlation-request-id": [ - "1796f326-0910-49e8-9176-fe4e98afc0ca" + "427d0cf5-5909-4007-a2bb-41ea4622afb7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180338Z:1796f326-0910-49e8-9176-fe4e98afc0ca" + "JIOINDIACENTRAL:20220512T090704Z:427d0cf5-5909-4007-a2bb-41ea4622afb7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:03:38 GMT" + "Thu, 12 May 2022 09:07:04 GMT" ], "Content-Length": [ "21" @@ -2662,19 +2662,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2694,22 +2694,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11924" ], "x-ms-request-id": [ - "3f59b80d-837c-4125-8ce8-e07430c705bf" + "cd2efca9-aba2-4865-9bb4-7629c2808164" ], "x-ms-correlation-request-id": [ - "3f59b80d-837c-4125-8ce8-e07430c705bf" + "cd2efca9-aba2-4865-9bb4-7629c2808164" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180408Z:3f59b80d-837c-4125-8ce8-e07430c705bf" + "JIOINDIACENTRAL:20220512T090735Z:cd2efca9-aba2-4865-9bb4-7629c2808164" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:04:08 GMT" + "Thu, 12 May 2022 09:07:35 GMT" ], "Content-Length": [ "21" @@ -2722,19 +2722,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2754,22 +2754,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11923" ], "x-ms-request-id": [ - "f90a1731-e96f-4020-a543-2b5177c20b42" + "6162fce5-8e89-425a-a084-015ebb0ce12b" ], "x-ms-correlation-request-id": [ - "f90a1731-e96f-4020-a543-2b5177c20b42" + "6162fce5-8e89-425a-a084-015ebb0ce12b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180439Z:f90a1731-e96f-4020-a543-2b5177c20b42" + "JIOINDIACENTRAL:20220512T090806Z:6162fce5-8e89-425a-a084-015ebb0ce12b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:04:38 GMT" + "Thu, 12 May 2022 09:08:05 GMT" ], "Content-Length": [ "21" @@ -2782,19 +2782,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2814,22 +2814,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11922" ], "x-ms-request-id": [ - "3572e6ca-5ace-49ff-99fe-7d55bd3b3201" + "3a9a7506-6b3b-4eae-88d0-38e3c2c02561" ], "x-ms-correlation-request-id": [ - "3572e6ca-5ace-49ff-99fe-7d55bd3b3201" + "3a9a7506-6b3b-4eae-88d0-38e3c2c02561" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180509Z:3572e6ca-5ace-49ff-99fe-7d55bd3b3201" + "JIOINDIACENTRAL:20220512T090837Z:3a9a7506-6b3b-4eae-88d0-38e3c2c02561" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:05:08 GMT" + "Thu, 12 May 2022 09:08:36 GMT" ], "Content-Length": [ "21" @@ -2842,19 +2842,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2874,22 +2874,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11921" ], "x-ms-request-id": [ - "baf54396-e322-43ce-866d-219046db94a6" + "3fd35093-116b-45bc-ba28-b5f5d37d430b" ], "x-ms-correlation-request-id": [ - "baf54396-e322-43ce-866d-219046db94a6" + "3fd35093-116b-45bc-ba28-b5f5d37d430b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180539Z:baf54396-e322-43ce-866d-219046db94a6" + "JIOINDIACENTRAL:20220512T090907Z:3fd35093-116b-45bc-ba28-b5f5d37d430b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:05:39 GMT" + "Thu, 12 May 2022 09:09:06 GMT" ], "Content-Length": [ "21" @@ -2902,19 +2902,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2934,22 +2934,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11920" ], "x-ms-request-id": [ - "78368e7f-4f1e-4fec-ad09-53c4835383f4" + "5ac5cd49-53b5-44b6-93bd-922a1845af3e" ], "x-ms-correlation-request-id": [ - "78368e7f-4f1e-4fec-ad09-53c4835383f4" + "5ac5cd49-53b5-44b6-93bd-922a1845af3e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180609Z:78368e7f-4f1e-4fec-ad09-53c4835383f4" + "JIOINDIACENTRAL:20220512T090938Z:5ac5cd49-53b5-44b6-93bd-922a1845af3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:06:09 GMT" + "Thu, 12 May 2022 09:09:37 GMT" ], "Content-Length": [ "21" @@ -2962,19 +2962,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2994,22 +2994,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11919" ], "x-ms-request-id": [ - "ec2320d0-414b-468c-a8fb-2dfca4b09865" + "fb04c9a9-4792-4037-9570-014ae8110b02" ], "x-ms-correlation-request-id": [ - "ec2320d0-414b-468c-a8fb-2dfca4b09865" + "fb04c9a9-4792-4037-9570-014ae8110b02" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180640Z:ec2320d0-414b-468c-a8fb-2dfca4b09865" + "JIOINDIACENTRAL:20220512T091008Z:fb04c9a9-4792-4037-9570-014ae8110b02" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:06:40 GMT" + "Thu, 12 May 2022 09:10:08 GMT" ], "Content-Length": [ "21" @@ -3022,19 +3022,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3054,22 +3054,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11918" ], "x-ms-request-id": [ - "5af1cfe8-aff3-4654-b4e8-b8da06b4c2b8" + "b2c87732-5053-400a-ae5c-9922239a5900" ], "x-ms-correlation-request-id": [ - "5af1cfe8-aff3-4654-b4e8-b8da06b4c2b8" + "b2c87732-5053-400a-ae5c-9922239a5900" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180711Z:5af1cfe8-aff3-4654-b4e8-b8da06b4c2b8" + "JIOINDIACENTRAL:20220512T091039Z:b2c87732-5053-400a-ae5c-9922239a5900" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:07:10 GMT" + "Thu, 12 May 2022 09:10:38 GMT" ], "Content-Length": [ "21" @@ -3082,19 +3082,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3114,22 +3114,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11917" ], "x-ms-request-id": [ - "913b5378-35c7-4ee7-a937-f34ffaf2a454" + "f1b452a5-88a9-4811-9d32-43c6dbda2efb" ], "x-ms-correlation-request-id": [ - "913b5378-35c7-4ee7-a937-f34ffaf2a454" + "f1b452a5-88a9-4811-9d32-43c6dbda2efb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180741Z:913b5378-35c7-4ee7-a937-f34ffaf2a454" + "JIOINDIACENTRAL:20220512T091109Z:f1b452a5-88a9-4811-9d32-43c6dbda2efb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:07:40 GMT" + "Thu, 12 May 2022 09:11:08 GMT" ], "Content-Length": [ "21" @@ -3142,19 +3142,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3174,22 +3174,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11916" ], "x-ms-request-id": [ - "ad175b59-d8a8-4a82-995d-576bca17c06c" + "d8001bf7-9cc4-4cc3-af2e-a27955293aab" ], "x-ms-correlation-request-id": [ - "ad175b59-d8a8-4a82-995d-576bca17c06c" + "d8001bf7-9cc4-4cc3-af2e-a27955293aab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180811Z:ad175b59-d8a8-4a82-995d-576bca17c06c" + "JIOINDIACENTRAL:20220512T091140Z:d8001bf7-9cc4-4cc3-af2e-a27955293aab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:08:11 GMT" + "Thu, 12 May 2022 09:11:40 GMT" ], "Content-Length": [ "21" @@ -3202,19 +3202,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3234,22 +3234,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11915" ], "x-ms-request-id": [ - "646b5c7f-2cb4-4dc2-b98a-9c2ebda9440c" + "42118061-c7e1-4be0-894d-b56eaffc4af3" ], "x-ms-correlation-request-id": [ - "646b5c7f-2cb4-4dc2-b98a-9c2ebda9440c" + "42118061-c7e1-4be0-894d-b56eaffc4af3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180841Z:646b5c7f-2cb4-4dc2-b98a-9c2ebda9440c" + "JIOINDIACENTRAL:20220512T091211Z:42118061-c7e1-4be0-894d-b56eaffc4af3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:08:41 GMT" + "Thu, 12 May 2022 09:12:11 GMT" ], "Content-Length": [ "22" @@ -3262,19 +3262,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/03b8a779-f6e0-4f9a-9317-1594b73c1767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMDNiOGE3NzktZjZlMC00ZjlhLTkzMTctMTU5NGI3M2MxNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/8d898dba-415c-4331-8680-07c309602058?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvOGQ4OThkYmEtNDE1Yy00MzMxLTg2ODAtMDdjMzA5NjAyMDU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3288,28 +3288,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "4017a36c-0720-40d7-880e-0cfbb315640f" + "22a58b66-27f6-4af5-996b-a0faac539877" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11914" ], "x-ms-request-id": [ - "aea50235-b69d-4efd-ad6e-3a696752c6ff" + "133b90ed-d0c8-4ce8-af1c-eebe041a8d0f" ], "x-ms-correlation-request-id": [ - "aea50235-b69d-4efd-ad6e-3a696752c6ff" + "133b90ed-d0c8-4ce8-af1c-eebe041a8d0f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T180842Z:aea50235-b69d-4efd-ad6e-3a696752c6ff" + "JIOINDIACENTRAL:20220512T091211Z:133b90ed-d0c8-4ce8-af1c-eebe041a8d0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:08:41 GMT" + "Thu, 12 May 2022 09:12:11 GMT" ], "Content-Length": [ "0" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdletsUsingRid.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdletsUsingRid.json index 026711158209..1bc73e0f2b52 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdletsUsingRid.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountRelatedCmdletsUsingRid.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "451b3e85-b282-4c3b-a734-3454bea2c4d1" + "51431cdf-96fb-46fb-91a0-9480bc3dc8c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "eeacbdf1-fd9e-48aa-9cef-b764ee786399" + "0e07f0ac-0043-4ec4-82ce-27350a82eb7b" ], "x-ms-correlation-request-id": [ - "eeacbdf1-fd9e-48aa-9cef-b764ee786399" + "0e07f0ac-0043-4ec4-82ce-27350a82eb7b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171338Z:eeacbdf1-fd9e-48aa-9cef-b764ee786399" + "JIOINDIACENTRAL:20220512T081549Z:0e07f0ac-0043-4ec4-82ce-27350a82eb7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:13:38 GMT" + "Thu, 12 May 2022 08:15:48 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9944fab-6874-402d-8cd8-47714ab408b1" + "fc7bb6ff-6bad-4220-90d5-265ea489c800" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "74e8de8b-e677-48e0-9345-d6ec4a481d34" + "76714b5d-083c-40a2-b1d2-952aaf513bea" ], "x-ms-correlation-request-id": [ - "74e8de8b-e677-48e0-9345-d6ec4a481d34" + "76714b5d-083c-40a2-b1d2-952aaf513bea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171339Z:74e8de8b-e677-48e0-9345-d6ec4a481d34" + "JIOINDIACENTRAL:20220512T081550Z:76714b5d-083c-40a2-b1d2-952aaf513bea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:13:39 GMT" + "Thu, 12 May 2022 08:15:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9944fab-6874-402d-8cd8-47714ab408b1" + "fc7bb6ff-6bad-4220-90d5-265ea489c800" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "5b2b4216-8467-4459-b46b-861bd7deebd9" + "c41e88e0-9dc6-40cf-a750-098d0aedd4b4" ], "x-ms-correlation-request-id": [ - "5b2b4216-8467-4459-b46b-861bd7deebd9" + "c41e88e0-9dc6-40cf-a750-098d0aedd4b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171520Z:5b2b4216-8467-4459-b46b-861bd7deebd9" + "JIOINDIACENTRAL:20220512T081803Z:c41e88e0-9dc6-40cf-a750-098d0aedd4b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:15:19 GMT" + "Thu, 12 May 2022 08:18:03 GMT" ], "Content-Length": [ - "2306" + "2304" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:14:54.6375399Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"32423441-79c3-4ec0-9472-d8a55ef023cf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:17:08.85456Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"752cdfa9-bdba-49d4-b82b-e39ad9e82814\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90f562a1-6a33-4874-b46c-e17cc57efa0f" + "d7f86b67-4dae-414e-8666-a470c8b26985" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,50 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "401f5921-179e-489b-9872-957dbedd084d" + "fef108ab-0983-4d46-a2cb-035f7c0a299c" ], "x-ms-correlation-request-id": [ - "401f5921-179e-489b-9872-957dbedd084d" + "fef108ab-0983-4d46-a2cb-035f7c0a299c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171520Z:401f5921-179e-489b-9872-957dbedd084d" + "CENTRALINDIA:20220512T081805Z:fef108ab-0983-4d46-a2cb-035f7c0a299c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:15:19 GMT" + "Thu, 12 May 2022 08:18:04 GMT" ], "Content-Length": [ - "2306" + "2304" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:14:54.6375399Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"32423441-79c3-4ec0-9472-d8a55ef023cf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:17:08.85456Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"752cdfa9-bdba-49d4-b82b-e39ad9e82814\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -285,47 +285,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "96d4a72f-fc0a-4d9c-bfaa-1deae71020f9" + "7335145a-7337-491b-8637-903e4fe26ee8" ], "x-ms-correlation-request-id": [ - "96d4a72f-fc0a-4d9c-bfaa-1deae71020f9" + "7335145a-7337-491b-8637-903e4fe26ee8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171520Z:96d4a72f-fc0a-4d9c-bfaa-1deae71020f9" + "CENTRALINDIA:20220512T081807Z:7335145a-7337-491b-8637-903e4fe26ee8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:15:20 GMT" + "Thu, 12 May 2022 08:18:06 GMT" ], "Content-Length": [ - "2306" + "2304" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:14:54.6375399Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"32423441-79c3-4ec0-9472-d8a55ef023cf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:17:08.85456Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"752cdfa9-bdba-49d4-b82b-e39ad9e82814\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -345,50 +345,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11982" ], "x-ms-request-id": [ - "02d6ad79-2dd5-4b71-bd86-85fcfc328811" + "1c67b587-b6ae-4cc7-bd07-ce1809d8ee3b" ], "x-ms-correlation-request-id": [ - "02d6ad79-2dd5-4b71-bd86-85fcfc328811" + "1c67b587-b6ae-4cc7-bd07-ce1809d8ee3b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172334Z:02d6ad79-2dd5-4b71-bd86-85fcfc328811" + "CENTRALINDIA:20220512T082621Z:1c67b587-b6ae-4cc7-bd07-ce1809d8ee3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:23:33 GMT" + "Thu, 12 May 2022 08:26:20 GMT" ], "Content-Length": [ - "2394" + "2392" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:14:54.6375399Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"32423441-79c3-4ec0-9472-d8a55ef023cf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:17:08.85456Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"752cdfa9-bdba-49d4-b82b-e39ad9e82814\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30fb0082-f15a-4a9c-91da-bcb68d0bc5e8" + "7d7a040b-8007-45ad-bcdb-0919ca0ead56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -408,50 +408,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-request-id": [ - "56ea02d7-734e-452d-9996-4933c58e1307" + "487d9571-4365-4b7c-88ef-b2b51b522cb5" ], "x-ms-correlation-request-id": [ - "56ea02d7-734e-452d-9996-4933c58e1307" + "487d9571-4365-4b7c-88ef-b2b51b522cb5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172334Z:56ea02d7-734e-452d-9996-4933c58e1307" + "JIOINDIACENTRAL:20220512T082622Z:487d9571-4365-4b7c-88ef-b2b51b522cb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:23:34 GMT" + "Thu, 12 May 2022 08:26:22 GMT" ], "Content-Length": [ - "2394" + "2392" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:14:54.6375399Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"32423441-79c3-4ec0-9472-d8a55ef023cf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:17:08.85456Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"752cdfa9-bdba-49d4-b82b-e39ad9e82814\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 10,\r\n \"maxStalenessPrefix\": 20\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f9944fab-6874-402d-8cd8-47714ab408b1" + "fc7bb6ff-6bad-4220-90d5-265ea489c800" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,13 +468,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/operationResults/33eebc99-6ad7-4c87-9b24-ea5e4ec37e24?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/operationResults/514d35f7-9a1d-4444-93fc-cb443650158d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "33eebc99-6ad7-4c87-9b24-ea5e4ec37e24" + "514d35f7-9a1d-4444-93fc-cb443650158d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33eebc99-6ad7-4c87-9b24-ea5e4ec37e24?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/514d35f7-9a1d-4444-93fc-cb443650158d?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,19 +486,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "9f4a2547-9118-4397-89b9-c7c6f45bd8b3" + "eb6cc507-4e2f-49f5-86a9-45c99f1a63d1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171347Z:9f4a2547-9118-4397-89b9-c7c6f45bd8b3" + "JIOINDIACENTRAL:20220512T081559Z:eb6cc507-4e2f-49f5-86a9-45c99f1a63d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:13:46 GMT" + "Thu, 12 May 2022 08:15:59 GMT" ], "Content-Length": [ "2003" @@ -507,23 +507,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:13:44.5351227Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"32423441-79c3-4ec0-9472-d8a55ef023cf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:15:57.0017061Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"752cdfa9-bdba-49d4-b82b-e39ad9e82814\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33eebc99-6ad7-4c87-9b24-ea5e4ec37e24?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzNlZWJjOTktNmFkNy00Yzg3LTliMjQtZWE1ZTRlYzM3ZTI0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/514d35f7-9a1d-4444-93fc-cb443650158d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTE0ZDM1ZjctOWExZC00NDQ0LTkzZmMtY2I0NDM2NTAxNThkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9944fab-6874-402d-8cd8-47714ab408b1" + "fc7bb6ff-6bad-4220-90d5-265ea489c800" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -543,22 +543,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "5d82afbe-9bab-412e-ade2-45daff9c4e16" + "0cfa73fb-6147-4584-b8b1-b63bfc7c0015" ], "x-ms-correlation-request-id": [ - "5d82afbe-9bab-412e-ade2-45daff9c4e16" + "0cfa73fb-6147-4584-b8b1-b63bfc7c0015" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171418Z:5d82afbe-9bab-412e-ade2-45daff9c4e16" + "JIOINDIACENTRAL:20220512T081630Z:0cfa73fb-6147-4584-b8b1-b63bfc7c0015" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:14:17 GMT" + "Thu, 12 May 2022 08:16:29 GMT" ], "Content-Length": [ "21" @@ -571,19 +571,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33eebc99-6ad7-4c87-9b24-ea5e4ec37e24?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzNlZWJjOTktNmFkNy00Yzg3LTliMjQtZWE1ZTRlYzM3ZTI0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/514d35f7-9a1d-4444-93fc-cb443650158d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTE0ZDM1ZjctOWExZC00NDQ0LTkzZmMtY2I0NDM2NTAxNThkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9944fab-6874-402d-8cd8-47714ab408b1" + "fc7bb6ff-6bad-4220-90d5-265ea489c800" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -603,22 +603,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "76b0dcd4-0aa2-480b-8019-97226381113f" + "f898fe7f-6fd6-401d-833a-1929bc9642f5" ], "x-ms-correlation-request-id": [ - "76b0dcd4-0aa2-480b-8019-97226381113f" + "f898fe7f-6fd6-401d-833a-1929bc9642f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171449Z:76b0dcd4-0aa2-480b-8019-97226381113f" + "JIOINDIACENTRAL:20220512T081700Z:f898fe7f-6fd6-401d-833a-1929bc9642f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:14:48 GMT" + "Thu, 12 May 2022 08:17:00 GMT" ], "Content-Length": [ "21" @@ -631,19 +631,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33eebc99-6ad7-4c87-9b24-ea5e4ec37e24?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzNlZWJjOTktNmFkNy00Yzg3LTliMjQtZWE1ZTRlYzM3ZTI0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/514d35f7-9a1d-4444-93fc-cb443650158d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTE0ZDM1ZjctOWExZC00NDQ0LTkzZmMtY2I0NDM2NTAxNThkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9944fab-6874-402d-8cd8-47714ab408b1" + "fc7bb6ff-6bad-4220-90d5-265ea489c800" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -663,22 +663,82 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" + ], + "x-ms-request-id": [ + "1d3d3e18-4fb2-4725-a057-77c78f26bf4a" + ], + "x-ms-correlation-request-id": [ + "1d3d3e18-4fb2-4725-a057-77c78f26bf4a" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T081731Z:1d3d3e18-4fb2-4725-a057-77c78f26bf4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 08:17:31 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/514d35f7-9a1d-4444-93fc-cb443650158d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTE0ZDM1ZjctOWExZC00NDQ0LTkzZmMtY2I0NDM2NTAxNThkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc7bb6ff-6bad-4220-90d5-265ea489c800" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-request-id": [ - "abdb8fa8-1bf6-4985-8e23-ae278d11bb13" + "28db9ec0-ebe3-4990-9773-9b69c3b63a7c" ], "x-ms-correlation-request-id": [ - "abdb8fa8-1bf6-4985-8e23-ae278d11bb13" + "28db9ec0-ebe3-4990-9773-9b69c3b63a7c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171520Z:abdb8fa8-1bf6-4985-8e23-ae278d11bb13" + "JIOINDIACENTRAL:20220512T081802Z:28db9ec0-ebe3-4990-9773-9b69c3b63a7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:15:19 GMT" + "Thu, 12 May 2022 08:18:02 GMT" ], "Content-Length": [ "22" @@ -691,22 +751,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -723,13 +783,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/operationResults/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/operationResults/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "04eb15fe-804e-4668-bb07-9a343d7a9435" + "564ec122-bd15-4855-a99a-9ce5bde3a708" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,44 +801,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "e7476ad5-5515-4103-8cca-15fadac237ae" + "c40fba63-7dbc-4d17-9f2a-6d9e96ffd1a1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171524Z:e7476ad5-5515-4103-8cca-15fadac237ae" + "CENTRALINDIA:20220512T081815Z:c40fba63-7dbc-4d17-9f2a-6d9e96ffd1a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:15:24 GMT" + "Thu, 12 May 2022 08:18:14 GMT" ], "Content-Length": [ - "2302" + "2303" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:14:54.6375399Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"32423441-79c3-4ec0-9472-d8a55ef023cf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:17:08.85456Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://dbaccount27.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"752cdfa9-bdba-49d4-b82b-e39ad9e82814\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount27-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount27-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -798,22 +858,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "4c93a5ce-cd00-4b17-a30f-18f1a1abe3f2" + "80d5ede0-fe8f-4e68-b23e-7aa69f569232" ], "x-ms-correlation-request-id": [ - "4c93a5ce-cd00-4b17-a30f-18f1a1abe3f2" + "80d5ede0-fe8f-4e68-b23e-7aa69f569232" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171555Z:4c93a5ce-cd00-4b17-a30f-18f1a1abe3f2" + "CENTRALINDIA:20220512T081846Z:80d5ede0-fe8f-4e68-b23e-7aa69f569232" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:15:55 GMT" + "Thu, 12 May 2022 08:18:45 GMT" ], "Content-Length": [ "21" @@ -826,19 +886,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -858,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "bbee4d1e-58f2-43a0-a105-9da9e95259d9" + "8b2eaae2-27f6-4e6e-944f-3a18db93e693" ], "x-ms-correlation-request-id": [ - "bbee4d1e-58f2-43a0-a105-9da9e95259d9" + "8b2eaae2-27f6-4e6e-944f-3a18db93e693" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171626Z:bbee4d1e-58f2-43a0-a105-9da9e95259d9" + "CENTRALINDIA:20220512T081916Z:8b2eaae2-27f6-4e6e-944f-3a18db93e693" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:16:26 GMT" + "Thu, 12 May 2022 08:19:16 GMT" ], "Content-Length": [ "21" @@ -886,19 +946,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -918,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "9c87b5f9-4122-4d31-bd48-ce56c042eaae" + "ef559b1c-b46a-4e0d-a099-fce96edba926" ], "x-ms-correlation-request-id": [ - "9c87b5f9-4122-4d31-bd48-ce56c042eaae" + "ef559b1c-b46a-4e0d-a099-fce96edba926" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171657Z:9c87b5f9-4122-4d31-bd48-ce56c042eaae" + "CENTRALINDIA:20220512T081946Z:ef559b1c-b46a-4e0d-a099-fce96edba926" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:16:56 GMT" + "Thu, 12 May 2022 08:19:46 GMT" ], "Content-Length": [ "21" @@ -946,19 +1006,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-request-id": [ - "1cf24a82-6aaa-4673-9203-a1fa1098f300" + "a45d575b-67e4-4c69-9305-d073a4aa88ad" ], "x-ms-correlation-request-id": [ - "1cf24a82-6aaa-4673-9203-a1fa1098f300" + "a45d575b-67e4-4c69-9305-d073a4aa88ad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171727Z:1cf24a82-6aaa-4673-9203-a1fa1098f300" + "CENTRALINDIA:20220512T082016Z:a45d575b-67e4-4c69-9305-d073a4aa88ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:17:27 GMT" + "Thu, 12 May 2022 08:20:16 GMT" ], "Content-Length": [ "21" @@ -1006,19 +1066,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +1098,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-request-id": [ - "0af60d35-2284-40f2-957f-1c1534eb6cfa" + "d2a08038-027a-4e91-96e3-fb3c7fdecaba" ], "x-ms-correlation-request-id": [ - "0af60d35-2284-40f2-957f-1c1534eb6cfa" + "d2a08038-027a-4e91-96e3-fb3c7fdecaba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171758Z:0af60d35-2284-40f2-957f-1c1534eb6cfa" + "CENTRALINDIA:20220512T082047Z:d2a08038-027a-4e91-96e3-fb3c7fdecaba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:17:57 GMT" + "Thu, 12 May 2022 08:20:46 GMT" ], "Content-Length": [ "21" @@ -1066,19 +1126,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1098,22 +1158,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-request-id": [ - "f5ceb4cf-e7af-487f-bfec-d4a3257cd2f4" + "5ad4a6c5-4024-4881-959c-852fcb45eaff" ], "x-ms-correlation-request-id": [ - "f5ceb4cf-e7af-487f-bfec-d4a3257cd2f4" + "5ad4a6c5-4024-4881-959c-852fcb45eaff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171828Z:f5ceb4cf-e7af-487f-bfec-d4a3257cd2f4" + "CENTRALINDIA:20220512T082117Z:5ad4a6c5-4024-4881-959c-852fcb45eaff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:18:28 GMT" + "Thu, 12 May 2022 08:21:16 GMT" ], "Content-Length": [ "21" @@ -1126,19 +1186,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1158,22 +1218,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-request-id": [ - "e56969df-dc74-4f40-8d5b-f66d1c774b4e" + "9982798c-39ae-4d87-9104-6c55721d1465" ], "x-ms-correlation-request-id": [ - "e56969df-dc74-4f40-8d5b-f66d1c774b4e" + "9982798c-39ae-4d87-9104-6c55721d1465" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171859Z:e56969df-dc74-4f40-8d5b-f66d1c774b4e" + "CENTRALINDIA:20220512T082147Z:9982798c-39ae-4d87-9104-6c55721d1465" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:18:58 GMT" + "Thu, 12 May 2022 08:21:46 GMT" ], "Content-Length": [ "21" @@ -1186,19 +1246,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1218,22 +1278,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11991" ], "x-ms-request-id": [ - "c0450f66-a538-4ba4-be31-a0aff6c5fe57" + "13f3bc0e-e1e9-4d32-bd32-dc3950abb5da" ], "x-ms-correlation-request-id": [ - "c0450f66-a538-4ba4-be31-a0aff6c5fe57" + "13f3bc0e-e1e9-4d32-bd32-dc3950abb5da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171929Z:c0450f66-a538-4ba4-be31-a0aff6c5fe57" + "CENTRALINDIA:20220512T082217Z:13f3bc0e-e1e9-4d32-bd32-dc3950abb5da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:19:29 GMT" + "Thu, 12 May 2022 08:22:17 GMT" ], "Content-Length": [ "21" @@ -1246,19 +1306,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1278,22 +1338,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11990" ], "x-ms-request-id": [ - "2aa177b8-7ff1-42cd-af1a-9ad3c4fb63c0" + "6badfefe-531f-4ddd-b2af-c1181120c495" ], "x-ms-correlation-request-id": [ - "2aa177b8-7ff1-42cd-af1a-9ad3c4fb63c0" + "6badfefe-531f-4ddd-b2af-c1181120c495" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172000Z:2aa177b8-7ff1-42cd-af1a-9ad3c4fb63c0" + "CENTRALINDIA:20220512T082248Z:6badfefe-531f-4ddd-b2af-c1181120c495" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:19:59 GMT" + "Thu, 12 May 2022 08:22:47 GMT" ], "Content-Length": [ "21" @@ -1306,19 +1366,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1338,22 +1398,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11989" ], "x-ms-request-id": [ - "2a62d01d-ab9d-412e-b956-0ee70e29f6dd" + "5188610f-2d61-4a1e-86e0-e0391ad3677c" ], "x-ms-correlation-request-id": [ - "2a62d01d-ab9d-412e-b956-0ee70e29f6dd" + "5188610f-2d61-4a1e-86e0-e0391ad3677c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172030Z:2a62d01d-ab9d-412e-b956-0ee70e29f6dd" + "CENTRALINDIA:20220512T082318Z:5188610f-2d61-4a1e-86e0-e0391ad3677c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:20:30 GMT" + "Thu, 12 May 2022 08:23:17 GMT" ], "Content-Length": [ "21" @@ -1366,19 +1426,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1398,22 +1458,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11988" ], "x-ms-request-id": [ - "4f3b07f2-dee3-4fbf-a5fd-8da561359930" + "dde10d1f-4509-4e12-b887-2c78dd55e336" ], "x-ms-correlation-request-id": [ - "4f3b07f2-dee3-4fbf-a5fd-8da561359930" + "dde10d1f-4509-4e12-b887-2c78dd55e336" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172101Z:4f3b07f2-dee3-4fbf-a5fd-8da561359930" + "CENTRALINDIA:20220512T082348Z:dde10d1f-4509-4e12-b887-2c78dd55e336" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:21:01 GMT" + "Thu, 12 May 2022 08:23:47 GMT" ], "Content-Length": [ "21" @@ -1426,19 +1486,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1458,22 +1518,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11987" ], "x-ms-request-id": [ - "5a1d7bfc-7ff3-4066-8dbc-f2917e2db31a" + "387d73cb-08b1-4b48-bd66-474ff5e3406b" ], "x-ms-correlation-request-id": [ - "5a1d7bfc-7ff3-4066-8dbc-f2917e2db31a" + "387d73cb-08b1-4b48-bd66-474ff5e3406b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172132Z:5a1d7bfc-7ff3-4066-8dbc-f2917e2db31a" + "CENTRALINDIA:20220512T082419Z:387d73cb-08b1-4b48-bd66-474ff5e3406b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:21:31 GMT" + "Thu, 12 May 2022 08:24:19 GMT" ], "Content-Length": [ "21" @@ -1486,19 +1546,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1518,22 +1578,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11986" ], "x-ms-request-id": [ - "0e7ab142-daf8-4465-a8c4-4a653580a653" + "955c9ad8-4457-489c-adcc-7e5a9cfdbf18" ], "x-ms-correlation-request-id": [ - "0e7ab142-daf8-4465-a8c4-4a653580a653" + "955c9ad8-4457-489c-adcc-7e5a9cfdbf18" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172202Z:0e7ab142-daf8-4465-a8c4-4a653580a653" + "CENTRALINDIA:20220512T082449Z:955c9ad8-4457-489c-adcc-7e5a9cfdbf18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:22:02 GMT" + "Thu, 12 May 2022 08:24:49 GMT" ], "Content-Length": [ "21" @@ -1546,19 +1606,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1578,22 +1638,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11985" ], "x-ms-request-id": [ - "b25a5eec-e660-4793-980c-35a59348c9a2" + "9f2e7eae-01e5-4120-8916-3ddec65f6b3e" ], "x-ms-correlation-request-id": [ - "b25a5eec-e660-4793-980c-35a59348c9a2" + "9f2e7eae-01e5-4120-8916-3ddec65f6b3e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172233Z:b25a5eec-e660-4793-980c-35a59348c9a2" + "CENTRALINDIA:20220512T082520Z:9f2e7eae-01e5-4120-8916-3ddec65f6b3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:22:32 GMT" + "Thu, 12 May 2022 08:25:19 GMT" ], "Content-Length": [ "21" @@ -1606,19 +1666,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1638,22 +1698,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11984" ], "x-ms-request-id": [ - "4c4c617c-0992-4a22-9de6-307090de3c7e" + "ed3c7625-9d3c-4d92-be59-b61ae0bc5bd9" ], "x-ms-correlation-request-id": [ - "4c4c617c-0992-4a22-9de6-307090de3c7e" + "ed3c7625-9d3c-4d92-be59-b61ae0bc5bd9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172304Z:4c4c617c-0992-4a22-9de6-307090de3c7e" + "CENTRALINDIA:20220512T082550Z:ed3c7625-9d3c-4d92-be59-b61ae0bc5bd9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:23:03 GMT" + "Thu, 12 May 2022 08:25:49 GMT" ], "Content-Length": [ "21" @@ -1666,19 +1726,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/04eb15fe-804e-4668-bb07-9a343d7a9435?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDRlYjE1ZmUtODA0ZS00NjY4LWJiMDctOWEzNDNkN2E5NDM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/564ec122-bd15-4855-a99a-9ce5bde3a708?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY0ZWMxMjItYmQxNS00ODU1LWE5OWEtOWNlNWJkZTNhNzA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bdc5a1-4e67-4184-bdff-39674b0ba803" + "0f8bdde9-4c2a-4054-9a89-22a7754ccf9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1698,22 +1758,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11983" ], "x-ms-request-id": [ - "319fe098-ceda-410b-808d-a5c3aab99778" + "5d861623-caae-4a85-b0dc-a676dc7d467f" ], "x-ms-correlation-request-id": [ - "319fe098-ceda-410b-808d-a5c3aab99778" + "5d861623-caae-4a85-b0dc-a676dc7d467f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172334Z:319fe098-ceda-410b-808d-a5c3aab99778" + "CENTRALINDIA:20220512T082620Z:5d861623-caae-4a85-b0dc-a676dc7d467f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:23:33 GMT" + "Thu, 12 May 2022 08:26:20 GMT" ], "Content-Length": [ "22" @@ -1726,22 +1786,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1445c95e-f4bd-4f31-bdea-e1636958f526" + "0d7b161a-3186-4870-9b0e-de48172ba805" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1764,19 +1824,19 @@ "1199" ], "x-ms-request-id": [ - "f969ece6-1980-4aab-bf66-5c2514a3b161" + "086ffc2e-7ef9-42ab-b9d2-ef2710527a85" ], "x-ms-correlation-request-id": [ - "f969ece6-1980-4aab-bf66-5c2514a3b161" + "086ffc2e-7ef9-42ab-b9d2-ef2710527a85" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172335Z:f969ece6-1980-4aab-bf66-5c2514a3b161" + "JIOINDIACENTRAL:20220512T082625Z:086ffc2e-7ef9-42ab-b9d2-ef2710527a85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:23:34 GMT" + "Thu, 12 May 2022 08:26:24 GMT" ], "Content-Length": [ "461" @@ -1785,26 +1845,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"yq81O04HSKFFd39dp5nOJu5xW5xRYhVfNLteB7CduPb71JlTdtCY8He6bTaax2L1fpgg7c1xlGOGjSdEkCdRPg==\",\r\n \"secondaryMasterKey\": \"amA5cITFEeOe0QXOYqdd0BDnQu3aXikeLJTSzpTx8H1iY6BkVhDJrfr5dyBRsIsLMg5GloETwX1gC6SAE24ZbA==\",\r\n \"primaryReadonlyMasterKey\": \"vbsWK48HwvH31USL6S2SKPT8XdcdUAZQJLFW85YiTMlDJDSy8S9pdbJduGai1biy7xZJFMq4PwOkNsHqp5r7EA==\",\r\n \"secondaryReadonlyMasterKey\": \"ysHlaVFG3AOe0YcpjuDPTID87XWGnphjoE9fmNpOUmU2p5Rs9N1I0RCN06o2FRDaAAIJXDeexBvXvmyuYOAxIQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"UKYxR8L8DoYD6m3QN2JiaOE1ITrurdJvWN1UPrZNDcj2EHmrZzBZQ1YhBV7est7zoMBUmV2fZOZGBeYFDamS2Q==\",\r\n \"secondaryMasterKey\": \"qroEMK5HhmQQvPApUxwoE6yh1BdgOA7FTSXWe396PG1valAX6ApqiE26LsBN8pxcLfYKPFFAfvabEBBkJUdmeg==\",\r\n \"primaryReadonlyMasterKey\": \"l2yFbKc79xbkPClJu34LadWoshsPn8TbZ6QjvebQFfWNhom0GNxqRAPudNcZmnPdGFQRkYnpARacrZV05AGGfA==\",\r\n \"secondaryReadonlyMasterKey\": \"7FlgEdqxzTYIGeUVyWdTW3lcYh5V8G9Y7mCRlOCoatNzVZmFERUl4UbdmRA98qEq6iVcTVVgc8fopfdD02PU7g==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55f08dfd-eedd-48a5-aa97-216cae02d38f" + "9388365f-05fd-4254-a68e-221c320950d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1824,22 +1884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "0986da52-713f-4d13-ae5b-20f9c20bf4e5" + "b9924d36-3982-4169-864f-ac27a7fc25cd" ], "x-ms-correlation-request-id": [ - "0986da52-713f-4d13-ae5b-20f9c20bf4e5" + "b9924d36-3982-4169-864f-ac27a7fc25cd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172409Z:0986da52-713f-4d13-ae5b-20f9c20bf4e5" + "JIOINDIACENTRAL:20220512T082706Z:b9924d36-3982-4169-864f-ac27a7fc25cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:24:08 GMT" + "Thu, 12 May 2022 08:27:05 GMT" ], "Content-Length": [ "461" @@ -1848,26 +1908,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"yq81O04HSKFFd39dp5nOJu5xW5xRYhVfNLteB7CduPb71JlTdtCY8He6bTaax2L1fpgg7c1xlGOGjSdEkCdRPg==\",\r\n \"secondaryMasterKey\": \"amA5cITFEeOe0QXOYqdd0BDnQu3aXikeLJTSzpTx8H1iY6BkVhDJrfr5dyBRsIsLMg5GloETwX1gC6SAE24ZbA==\",\r\n \"primaryReadonlyMasterKey\": \"vbsWK48HwvH31USL6S2SKPT8XdcdUAZQJLFW85YiTMlDJDSy8S9pdbJduGai1biy7xZJFMq4PwOkNsHqp5r7EA==\",\r\n \"secondaryReadonlyMasterKey\": \"O6cmUEPuWGrlrxNtwOLHGTjv8OLLZLsBC70bY4N0tZf0GnVPbhpelR8aS0m39fanJWQcbgr26JF8jcsD26wAQQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"UKYxR8L8DoYD6m3QN2JiaOE1ITrurdJvWN1UPrZNDcj2EHmrZzBZQ1YhBV7est7zoMBUmV2fZOZGBeYFDamS2Q==\",\r\n \"secondaryMasterKey\": \"qroEMK5HhmQQvPApUxwoE6yh1BdgOA7FTSXWe396PG1valAX6ApqiE26LsBN8pxcLfYKPFFAfvabEBBkJUdmeg==\",\r\n \"primaryReadonlyMasterKey\": \"l2yFbKc79xbkPClJu34LadWoshsPn8TbZ6QjvebQFfWNhom0GNxqRAPudNcZmnPdGFQRkYnpARacrZV05AGGfA==\",\r\n \"secondaryReadonlyMasterKey\": \"TewUm9JE6qHAHEnvVAq4RZ1BTHtRpmgPxZJq7ZWF9sAxLgZI7rdTADxLtjX3d3G8RvZkeU70xcbTIlcsMwC61Q==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listConnectionStrings?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listConnectionStrings?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14299352-c534-4a62-a16f-ce0a3b140f25" + "33610a64-3cd0-4c1d-b387-17acd7755110" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1890,19 +1950,19 @@ "1198" ], "x-ms-request-id": [ - "31063290-0e02-4751-af2d-bcd1b05bbd77" + "6b031c48-883f-4ba4-9ea3-707842cf09e1" ], "x-ms-correlation-request-id": [ - "31063290-0e02-4751-af2d-bcd1b05bbd77" + "6b031c48-883f-4ba4-9ea3-707842cf09e1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172335Z:31063290-0e02-4751-af2d-bcd1b05bbd77" + "JIOINDIACENTRAL:20220512T082627Z:6b031c48-883f-4ba4-9ea3-707842cf09e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:23:34 GMT" + "Thu, 12 May 2022 08:26:26 GMT" ], "Content-Length": [ "971" @@ -1911,26 +1971,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=yq81O04HSKFFd39dp5nOJu5xW5xRYhVfNLteB7CduPb71JlTdtCY8He6bTaax2L1fpgg7c1xlGOGjSdEkCdRPg==;\",\r\n \"description\": \"Primary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=amA5cITFEeOe0QXOYqdd0BDnQu3aXikeLJTSzpTx8H1iY6BkVhDJrfr5dyBRsIsLMg5GloETwX1gC6SAE24ZbA==;\",\r\n \"description\": \"Secondary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=vbsWK48HwvH31USL6S2SKPT8XdcdUAZQJLFW85YiTMlDJDSy8S9pdbJduGai1biy7xZJFMq4PwOkNsHqp5r7EA==;\",\r\n \"description\": \"Primary Read-Only SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=ysHlaVFG3AOe0YcpjuDPTID87XWGnphjoE9fmNpOUmU2p5Rs9N1I0RCN06o2FRDaAAIJXDeexBvXvmyuYOAxIQ==;\",\r\n \"description\": \"Secondary Read-Only SQL Connection String\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=UKYxR8L8DoYD6m3QN2JiaOE1ITrurdJvWN1UPrZNDcj2EHmrZzBZQ1YhBV7est7zoMBUmV2fZOZGBeYFDamS2Q==;\",\r\n \"description\": \"Primary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=qroEMK5HhmQQvPApUxwoE6yh1BdgOA7FTSXWe396PG1valAX6ApqiE26LsBN8pxcLfYKPFFAfvabEBBkJUdmeg==;\",\r\n \"description\": \"Secondary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=l2yFbKc79xbkPClJu34LadWoshsPn8TbZ6QjvebQFfWNhom0GNxqRAPudNcZmnPdGFQRkYnpARacrZV05AGGfA==;\",\r\n \"description\": \"Primary Read-Only SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=7FlgEdqxzTYIGeUVyWdTW3lcYh5V8G9Y7mCRlOCoatNzVZmFERUl4UbdmRA98qEq6iVcTVVgc8fopfdD02PU7g==;\",\r\n \"description\": \"Secondary Read-Only SQL Connection String\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/readonlykeys?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/readonlykeys?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30e961dc-d8f9-4b4e-a062-78229854bb9e" + "3d98585e-99e8-4573-9f00-a24299572494" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1949,23 +2009,23 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "c691401b-5702-4fd3-9be0-6e75ff9a2bfc" + "9a2f8648-7847-4e3f-865c-464530febdb1" ], "x-ms-correlation-request-id": [ - "c691401b-5702-4fd3-9be0-6e75ff9a2bfc" + "9a2f8648-7847-4e3f-865c-464530febdb1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172336Z:c691401b-5702-4fd3-9be0-6e75ff9a2bfc" + "JIOINDIACENTRAL:20220512T082631Z:9a2f8648-7847-4e3f-865c-464530febdb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:23:35 GMT" + "Thu, 12 May 2022 08:26:30 GMT" ], "Content-Length": [ "239" @@ -1974,26 +2034,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"vbsWK48HwvH31USL6S2SKPT8XdcdUAZQJLFW85YiTMlDJDSy8S9pdbJduGai1biy7xZJFMq4PwOkNsHqp5r7EA==\",\r\n \"secondaryReadonlyMasterKey\": \"ysHlaVFG3AOe0YcpjuDPTID87XWGnphjoE9fmNpOUmU2p5Rs9N1I0RCN06o2FRDaAAIJXDeexBvXvmyuYOAxIQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"l2yFbKc79xbkPClJu34LadWoshsPn8TbZ6QjvebQFfWNhom0GNxqRAPudNcZmnPdGFQRkYnpARacrZV05AGGfA==\",\r\n \"secondaryReadonlyMasterKey\": \"7FlgEdqxzTYIGeUVyWdTW3lcYh5V8G9Y7mCRlOCoatNzVZmFERUl4UbdmRA98qEq6iVcTVVgc8fopfdD02PU7g==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyKind\": \"secondaryReadonly\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "55f08dfd-eedd-48a5-aa97-216cae02d38f" + "9388365f-05fd-4254-a68e-221c320950d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2010,13 +2070,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/1c9c9fb7-f07b-4db8-82dd-9334f3a2c424?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/0f08914f-3939-46fb-9ca8-4858e49e2ae7?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c9c9fb7-f07b-4db8-82dd-9334f3a2c424?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0f08914f-3939-46fb-9ca8-4858e49e2ae7?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1c9c9fb7-f07b-4db8-82dd-9334f3a2c424" + "0f08914f-3939-46fb-9ca8-4858e49e2ae7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2028,19 +2088,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "d76a1cba-877e-49ea-b570-061ab620e7f5" + "87edb8a0-cdaf-4db6-be24-c9d871fcb0e4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172337Z:d76a1cba-877e-49ea-b570-061ab620e7f5" + "JIOINDIACENTRAL:20220512T082633Z:87edb8a0-cdaf-4db6-be24-c9d871fcb0e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:23:36 GMT" + "Thu, 12 May 2022 08:26:33 GMT" ], "Content-Length": [ "21" @@ -2053,19 +2113,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c9c9fb7-f07b-4db8-82dd-9334f3a2c424?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWM5YzlmYjctZjA3Yi00ZGI4LTgyZGQtOTMzNGYzYTJjNDI0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0f08914f-3939-46fb-9ca8-4858e49e2ae7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGYwODkxNGYtMzkzOS00NmZiLTljYTgtNDg1OGU0OWUyYWU3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55f08dfd-eedd-48a5-aa97-216cae02d38f" + "9388365f-05fd-4254-a68e-221c320950d7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2085,22 +2145,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-request-id": [ - "c934b6b4-99fc-40d0-ade2-52500fc89c2a" + "e53bb2ad-b4fc-437e-b76b-3a3e7af543f9" ], "x-ms-correlation-request-id": [ - "c934b6b4-99fc-40d0-ade2-52500fc89c2a" + "e53bb2ad-b4fc-437e-b76b-3a3e7af543f9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172408Z:c934b6b4-99fc-40d0-ade2-52500fc89c2a" + "JIOINDIACENTRAL:20220512T082704Z:e53bb2ad-b4fc-437e-b76b-3a3e7af543f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:24:07 GMT" + "Thu, 12 May 2022 08:27:03 GMT" ], "Content-Length": [ "22" @@ -2113,19 +2173,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/1c9c9fb7-f07b-4db8-82dd-9334f3a2c424?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy8xYzljOWZiNy1mMDdiLTRkYjgtODJkZC05MzM0ZjNhMmM0MjQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup28/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/0f08914f-3939-46fb-9ca8-4858e49e2ae7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy8wZjA4OTE0Zi0zOTM5LTQ2ZmItOWNhOC00ODU4ZTQ5ZTJhZTc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55f08dfd-eedd-48a5-aa97-216cae02d38f" + "9388365f-05fd-4254-a68e-221c320950d7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2145,22 +2205,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-request-id": [ - "a90d61cc-fc47-4eb6-9bdd-551664eb103c" + "80fb1c72-cbe5-4109-8ae9-608543fb52fa" ], "x-ms-correlation-request-id": [ - "a90d61cc-fc47-4eb6-9bdd-551664eb103c" + "80fb1c72-cbe5-4109-8ae9-608543fb52fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172408Z:a90d61cc-fc47-4eb6-9bdd-551664eb103c" + "JIOINDIACENTRAL:20220512T082705Z:80fb1c72-cbe5-4109-8ae9-608543fb52fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:24:08 GMT" + "Thu, 12 May 2022 08:27:04 GMT" ], "Content-Length": [ "22" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAddRegionOperation.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAddRegionOperation.json index f1da0154d8c3..32745a8845a2 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAddRegionOperation.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAddRegionOperation.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "103b6dea-a997-4e39-b4b4-37b7849efcc8" + "9058307c-5293-4577-914f-4559908ec563" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "30d6e692-ed3c-4b7e-abc3-709dc3bb3f0d" + "ee367829-22eb-4878-b1f0-b4c50b54fd9f" ], "x-ms-correlation-request-id": [ - "30d6e692-ed3c-4b7e-abc3-709dc3bb3f0d" + "ee367829-22eb-4878-b1f0-b4c50b54fd9f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182825Z:30d6e692-ed3c-4b7e-abc3-709dc3bb3f0d" + "JIOINDIACENTRAL:20220512T093109Z:ee367829-22eb-4878-b1f0-b4c50b54fd9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:28:25 GMT" + "Thu, 12 May 2022 09:31:08 GMT" ], "Content-Length": [ "197" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f763e4cb-7fce-429a-89ae-78d8d41625d3" + "56a862a2-2b2e-47b5-bd88-ffb06d85ef96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "afcd1bbf-dc81-4a43-8b4f-224a48e9c83b" + "8978bea7-287b-4a23-a934-e56ea43cfbce" ], "x-ms-correlation-request-id": [ - "afcd1bbf-dc81-4a43-8b4f-224a48e9c83b" + "8978bea7-287b-4a23-a934-e56ea43cfbce" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182826Z:afcd1bbf-dc81-4a43-8b4f-224a48e9c83b" + "CENTRALINDIA:20220512T093109Z:8978bea7-287b-4a23-a934-e56ea43cfbce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:28:26 GMT" + "Thu, 12 May 2022 09:31:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f763e4cb-7fce-429a-89ae-78d8d41625d3" + "56a862a2-2b2e-47b5-bd88-ffb06d85ef96" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -162,19 +162,19 @@ "11994" ], "x-ms-request-id": [ - "00bf79ea-ecf3-4e1a-ae01-7a1180b1e3b0" + "10ace6b4-5bf5-4346-8713-d6b8b826cc08" ], "x-ms-correlation-request-id": [ - "00bf79ea-ecf3-4e1a-ae01-7a1180b1e3b0" + "10ace6b4-5bf5-4346-8713-d6b8b826cc08" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183038Z:00bf79ea-ecf3-4e1a-ae01-7a1180b1e3b0" + "CENTRALINDIA:20220512T093323Z:10ace6b4-5bf5-4346-8713-d6b8b826cc08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:30:37 GMT" + "Thu, 12 May 2022 09:33:23 GMT" ], "Content-Length": [ "2465" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:29:45.0913741Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"da407cca-7f30-49df-ba72-8189bd8a536e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:32:29.6050856Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"10a13591-f5fe-4c1a-874e-c8bfe5f2bcf0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7739e4d5-1cfa-4503-8d35-573840b3c9fc" + "04dc5b08-a035-4a6b-b7f7-8f3a68c0d30a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11970" ], "x-ms-request-id": [ - "fdd05c20-8239-41bf-87ab-70af05bdde62" + "cad54bc9-65a3-48e7-87f3-7ad903598384" ], "x-ms-correlation-request-id": [ - "fdd05c20-8239-41bf-87ab-70af05bdde62" + "cad54bc9-65a3-48e7-87f3-7ad903598384" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183038Z:fdd05c20-8239-41bf-87ab-70af05bdde62" + "JIOINDIACENTRAL:20220512T093325Z:cad54bc9-65a3-48e7-87f3-7ad903598384" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:30:37 GMT" + "Thu, 12 May 2022 09:33:25 GMT" ], "Content-Length": [ "2465" @@ -246,23 +246,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:29:45.0913741Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"da407cca-7f30-49df-ba72-8189bd8a536e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:32:29.6050856Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"10a13591-f5fe-4c1a-874e-c8bfe5f2bcf0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14bae150-f0f4-4b8c-a683-703685c8caf9" + "2d379f91-a613-44f8-ae4e-6135444800cd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -282,22 +282,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-request-id": [ - "a0ed6572-d96f-4b2d-b31f-34278e6bb974" + "bad381c4-ff09-4a3a-ab38-61c9c2c1b257" ], "x-ms-correlation-request-id": [ - "a0ed6572-d96f-4b2d-b31f-34278e6bb974" + "bad381c4-ff09-4a3a-ab38-61c9c2c1b257" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183245Z:a0ed6572-d96f-4b2d-b31f-34278e6bb974" + "JIOINDIACENTRAL:20220512T093538Z:bad381c4-ff09-4a3a-ab38-61c9c2c1b257" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:32:45 GMT" + "Thu, 12 May 2022 09:35:37 GMT" ], "Content-Length": [ "3260" @@ -306,26 +306,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:29:45.0913741Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"da407cca-7f30-49df-ba72-8189bd8a536e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:32:29.6050856Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"10a13591-f5fe-4c1a-874e-c8bfe5f2bcf0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14bae150-f0f4-4b8c-a683-703685c8caf9" + "2d379f91-a613-44f8-ae4e-6135444800cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -345,22 +345,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11994" ], "x-ms-request-id": [ - "5355f332-3746-469d-8df5-432997eff7e7" + "11448e76-3104-4b31-9e34-0a8ea54d22f3" ], "x-ms-correlation-request-id": [ - "5355f332-3746-469d-8df5-432997eff7e7" + "11448e76-3104-4b31-9e34-0a8ea54d22f3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183246Z:5355f332-3746-469d-8df5-432997eff7e7" + "JIOINDIACENTRAL:20220512T093538Z:11448e76-3104-4b31-9e34-0a8ea54d22f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:32:46 GMT" + "Thu, 12 May 2022 09:35:38 GMT" ], "Content-Length": [ "3260" @@ -369,26 +369,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:29:45.0913741Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"da407cca-7f30-49df-ba72-8189bd8a536e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:32:29.6050856Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"10a13591-f5fe-4c1a-874e-c8bfe5f2bcf0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10672867-7068-4180-8817-d298d6d0f498" + "ca2928f3-2413-4a5b-a567-a5d04d94647e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -408,22 +408,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11971" ], "x-ms-request-id": [ - "27ff8dd2-5beb-4da4-80f1-40c68d260ecf" + "801d2a67-e4e6-47ff-b9ae-bb5363fee6b8" ], "x-ms-correlation-request-id": [ - "27ff8dd2-5beb-4da4-80f1-40c68d260ecf" + "801d2a67-e4e6-47ff-b9ae-bb5363fee6b8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183246Z:27ff8dd2-5beb-4da4-80f1-40c68d260ecf" + "JIOINDIACENTRAL:20220512T093541Z:801d2a67-e4e6-47ff-b9ae-bb5363fee6b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:32:46 GMT" + "Thu, 12 May 2022 09:35:41 GMT" ], "Content-Length": [ "3260" @@ -432,26 +432,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:29:45.0913741Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"da407cca-7f30-49df-ba72-8189bd8a536e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:32:29.6050856Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"10a13591-f5fe-4c1a-874e-c8bfe5f2bcf0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"testupdateregionpowershell1-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f763e4cb-7fce-429a-89ae-78d8d41625d3" + "56a862a2-2b2e-47b5-bd88-ffb06d85ef96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,13 +468,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1/operationResults/3ce43d68-7303-4862-bf49-e8e61d25cadf?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1/operationResults/afa17a1d-868b-46b8-9e24-0d8ba7ebdde9?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "3ce43d68-7303-4862-bf49-e8e61d25cadf" + "afa17a1d-868b-46b8-9e24-0d8ba7ebdde9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ce43d68-7303-4862-bf49-e8e61d25cadf?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/afa17a1d-868b-46b8-9e24-0d8ba7ebdde9?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,19 +486,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "28afefcd-7206-4d3a-9308-be672d59d538" + "cd507bff-2670-4fb9-97b3-4549e5ce8e34" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182835Z:28afefcd-7206-4d3a-9308-be672d59d538" + "CENTRALINDIA:20220512T093120Z:cd507bff-2670-4fb9-97b3-4549e5ce8e34" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:28:34 GMT" + "Thu, 12 May 2022 09:31:20 GMT" ], "Content-Length": [ "2098" @@ -507,23 +507,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:28:32.4054997Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"da407cca-7f30-49df-ba72-8189bd8a536e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:31:17.9136133Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"10a13591-f5fe-4c1a-874e-c8bfe5f2bcf0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ce43d68-7303-4862-bf49-e8e61d25cadf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2NlNDNkNjgtNzMwMy00ODYyLWJmNDktZThlNjFkMjVjYWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/afa17a1d-868b-46b8-9e24-0d8ba7ebdde9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWZhMTdhMWQtODY4Yi00NmI4LTllMjQtMGQ4YmE3ZWJkZGU5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f763e4cb-7fce-429a-89ae-78d8d41625d3" + "56a862a2-2b2e-47b5-bd88-ffb06d85ef96" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -546,19 +546,19 @@ "11998" ], "x-ms-request-id": [ - "492f09d3-8ab6-4f31-9df6-271a59ae00e8" + "50c9dd32-5d52-4757-9ac3-772a180fbde5" ], "x-ms-correlation-request-id": [ - "492f09d3-8ab6-4f31-9df6-271a59ae00e8" + "50c9dd32-5d52-4757-9ac3-772a180fbde5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182906Z:492f09d3-8ab6-4f31-9df6-271a59ae00e8" + "CENTRALINDIA:20220512T093151Z:50c9dd32-5d52-4757-9ac3-772a180fbde5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:29:05 GMT" + "Thu, 12 May 2022 09:31:51 GMT" ], "Content-Length": [ "21" @@ -571,19 +571,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ce43d68-7303-4862-bf49-e8e61d25cadf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2NlNDNkNjgtNzMwMy00ODYyLWJmNDktZThlNjFkMjVjYWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/afa17a1d-868b-46b8-9e24-0d8ba7ebdde9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWZhMTdhMWQtODY4Yi00NmI4LTllMjQtMGQ4YmE3ZWJkZGU5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f763e4cb-7fce-429a-89ae-78d8d41625d3" + "56a862a2-2b2e-47b5-bd88-ffb06d85ef96" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -606,19 +606,19 @@ "11997" ], "x-ms-request-id": [ - "b9eae055-10d1-4c77-8524-807b512aebcd" + "3da0db5b-c5d7-4815-9ab7-3208669f63a5" ], "x-ms-correlation-request-id": [ - "b9eae055-10d1-4c77-8524-807b512aebcd" + "3da0db5b-c5d7-4815-9ab7-3208669f63a5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T182936Z:b9eae055-10d1-4c77-8524-807b512aebcd" + "CENTRALINDIA:20220512T093222Z:3da0db5b-c5d7-4815-9ab7-3208669f63a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:29:36 GMT" + "Thu, 12 May 2022 09:32:21 GMT" ], "Content-Length": [ "21" @@ -631,19 +631,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ce43d68-7303-4862-bf49-e8e61d25cadf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2NlNDNkNjgtNzMwMy00ODYyLWJmNDktZThlNjFkMjVjYWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/afa17a1d-868b-46b8-9e24-0d8ba7ebdde9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWZhMTdhMWQtODY4Yi00NmI4LTllMjQtMGQ4YmE3ZWJkZGU5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f763e4cb-7fce-429a-89ae-78d8d41625d3" + "56a862a2-2b2e-47b5-bd88-ffb06d85ef96" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -666,19 +666,19 @@ "11996" ], "x-ms-request-id": [ - "195cf7b2-bba5-4ce8-bc44-9435fe8ca636" + "f453ca70-4db7-4d71-b293-ccaa65a5b971" ], "x-ms-correlation-request-id": [ - "195cf7b2-bba5-4ce8-bc44-9435fe8ca636" + "f453ca70-4db7-4d71-b293-ccaa65a5b971" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183007Z:195cf7b2-bba5-4ce8-bc44-9435fe8ca636" + "CENTRALINDIA:20220512T093252Z:f453ca70-4db7-4d71-b293-ccaa65a5b971" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:30:07 GMT" + "Thu, 12 May 2022 09:32:51 GMT" ], "Content-Length": [ "21" @@ -691,19 +691,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ce43d68-7303-4862-bf49-e8e61d25cadf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2NlNDNkNjgtNzMwMy00ODYyLWJmNDktZThlNjFkMjVjYWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/afa17a1d-868b-46b8-9e24-0d8ba7ebdde9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWZhMTdhMWQtODY4Yi00NmI4LTllMjQtMGQ4YmE3ZWJkZGU5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f763e4cb-7fce-429a-89ae-78d8d41625d3" + "56a862a2-2b2e-47b5-bd88-ffb06d85ef96" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -726,19 +726,19 @@ "11995" ], "x-ms-request-id": [ - "9611b23c-0b01-406a-82e0-e9d05ec4ea31" + "5deb216e-4eaa-4d99-9b2a-74216e5ac007" ], "x-ms-correlation-request-id": [ - "9611b23c-0b01-406a-82e0-e9d05ec4ea31" + "5deb216e-4eaa-4d99-9b2a-74216e5ac007" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183037Z:9611b23c-0b01-406a-82e0-e9d05ec4ea31" + "CENTRALINDIA:20220512T093323Z:5deb216e-4eaa-4d99-9b2a-74216e5ac007" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:30:37 GMT" + "Thu, 12 May 2022 09:33:23 GMT" ], "Content-Length": [ "22" @@ -751,22 +751,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGwxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 1\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14bae150-f0f4-4b8c-a683-703685c8caf9" + "2d379f91-a613-44f8-ae4e-6135444800cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,13 +783,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1/operationResults/19fbaf9e-4a78-4a79-9b96-4e4035b52751?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1/operationResults/d415fcd1-09ac-48c5-9e89-91c8b9310e26?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "19fbaf9e-4a78-4a79-9b96-4e4035b52751" + "d415fcd1-09ac-48c5-9e89-91c8b9310e26" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19fbaf9e-4a78-4a79-9b96-4e4035b52751?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d415fcd1-09ac-48c5-9e89-91c8b9310e26?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -801,19 +801,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "1ae2ceb8-374e-4576-a12c-a5bb6a8514c3" + "4355ba6e-02b9-4392-bdea-dd9329094a03" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183043Z:1ae2ceb8-374e-4576-a12c-a5bb6a8514c3" + "JIOINDIACENTRAL:20220512T093332Z:4355ba6e-02b9-4392-bdea-dd9329094a03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:30:42 GMT" + "Thu, 12 May 2022 09:33:32 GMT" ], "Content-Length": [ "2464" @@ -822,23 +822,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:29:45.0913741Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"da407cca-7f30-49df-ba72-8189bd8a536e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup5/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell1\",\r\n \"name\": \"testupdateregionpowershell1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:32:29.6050856Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"10a13591-f5fe-4c1a-874e-c8bfe5f2bcf0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"testupdateregionpowershell1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19fbaf9e-4a78-4a79-9b96-4e4035b52751?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTlmYmFmOWUtNGE3OC00YTc5LTliOTYtNGU0MDM1YjUyNzUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d415fcd1-09ac-48c5-9e89-91c8b9310e26?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDQxNWZjZDEtMDlhYy00OGM1LTllODktOTFjOGI5MzEwZTI2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14bae150-f0f4-4b8c-a683-703685c8caf9" + "2d379f91-a613-44f8-ae4e-6135444800cd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -858,22 +858,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11987" ], "x-ms-request-id": [ - "88d56d1b-e93a-486e-9a6c-a5b3210c5ded" + "ef1f73c6-84c2-4df8-b81f-7c16193e81c5" ], "x-ms-correlation-request-id": [ - "88d56d1b-e93a-486e-9a6c-a5b3210c5ded" + "ef1f73c6-84c2-4df8-b81f-7c16193e81c5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183113Z:88d56d1b-e93a-486e-9a6c-a5b3210c5ded" + "JIOINDIACENTRAL:20220512T093403Z:ef1f73c6-84c2-4df8-b81f-7c16193e81c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:31:13 GMT" + "Thu, 12 May 2022 09:34:02 GMT" ], "Content-Length": [ "21" @@ -886,19 +886,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19fbaf9e-4a78-4a79-9b96-4e4035b52751?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTlmYmFmOWUtNGE3OC00YTc5LTliOTYtNGU0MDM1YjUyNzUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d415fcd1-09ac-48c5-9e89-91c8b9310e26?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDQxNWZjZDEtMDlhYy00OGM1LTllODktOTFjOGI5MzEwZTI2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14bae150-f0f4-4b8c-a683-703685c8caf9" + "2d379f91-a613-44f8-ae4e-6135444800cd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -918,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11986" ], "x-ms-request-id": [ - "007cbced-a093-47e0-9230-d87abf9615a9" + "d99f6e2a-2706-4701-851f-acb037a6a0d6" ], "x-ms-correlation-request-id": [ - "007cbced-a093-47e0-9230-d87abf9615a9" + "d99f6e2a-2706-4701-851f-acb037a6a0d6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183144Z:007cbced-a093-47e0-9230-d87abf9615a9" + "JIOINDIACENTRAL:20220512T093434Z:d99f6e2a-2706-4701-851f-acb037a6a0d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:31:43 GMT" + "Thu, 12 May 2022 09:34:33 GMT" ], "Content-Length": [ "21" @@ -946,19 +946,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19fbaf9e-4a78-4a79-9b96-4e4035b52751?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTlmYmFmOWUtNGE3OC00YTc5LTliOTYtNGU0MDM1YjUyNzUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d415fcd1-09ac-48c5-9e89-91c8b9310e26?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDQxNWZjZDEtMDlhYy00OGM1LTllODktOTFjOGI5MzEwZTI2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14bae150-f0f4-4b8c-a683-703685c8caf9" + "2d379f91-a613-44f8-ae4e-6135444800cd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "74d2aa13-0140-40ff-844b-8d10a85c7d04" + "22118ba4-4447-465d-aa7e-2528588a6516" ], "x-ms-correlation-request-id": [ - "74d2aa13-0140-40ff-844b-8d10a85c7d04" + "22118ba4-4447-465d-aa7e-2528588a6516" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183214Z:74d2aa13-0140-40ff-844b-8d10a85c7d04" + "JIOINDIACENTRAL:20220512T093505Z:22118ba4-4447-465d-aa7e-2528588a6516" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:32:14 GMT" + "Thu, 12 May 2022 09:35:05 GMT" ], "Content-Length": [ "21" @@ -1006,19 +1006,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19fbaf9e-4a78-4a79-9b96-4e4035b52751?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTlmYmFmOWUtNGE3OC00YTc5LTliOTYtNGU0MDM1YjUyNzUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d415fcd1-09ac-48c5-9e89-91c8b9310e26?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDQxNWZjZDEtMDlhYy00OGM1LTllODktOTFjOGI5MzEwZTI2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14bae150-f0f4-4b8c-a683-703685c8caf9" + "2d379f91-a613-44f8-ae4e-6135444800cd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-request-id": [ - "a3147a8a-a9f8-4448-b933-6a44e2939cdd" + "0f55e360-7132-42ad-ae91-af6b999c498a" ], "x-ms-correlation-request-id": [ - "a3147a8a-a9f8-4448-b933-6a44e2939cdd" + "0f55e360-7132-42ad-ae91-af6b999c498a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183245Z:a3147a8a-a9f8-4448-b933-6a44e2939cdd" + "JIOINDIACENTRAL:20220512T093536Z:0f55e360-7132-42ad-ae91-af6b999c498a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:32:45 GMT" + "Thu, 12 May 2022 09:35:35 GMT" ], "Content-Length": [ "22" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAnalyticalStorageSchemaTypeNewAccount.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAnalyticalStorageSchemaTypeNewAccount.json index 392460bde844..abcc7381e93b 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAnalyticalStorageSchemaTypeNewAccount.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAnalyticalStorageSchemaTypeNewAccount.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d3fed315-d681-4678-a5fc-eb8af1cb1429" + "3bf7dd4d-54a5-4d8e-8f71-eb8888ccdd60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "70852120-8617-4421-b7a5-e2226bce4b79" + "4048d59b-ad45-4b6a-a4a2-e1feaf40885a" ], "x-ms-correlation-request-id": [ - "70852120-8617-4421-b7a5-e2226bce4b79" + "4048d59b-ad45-4b6a-a4a2-e1feaf40885a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T183320Z:70852120-8617-4421-b7a5-e2226bce4b79" + "JIOINDIACENTRAL:20220512T093613Z:4048d59b-ad45-4b6a-a4a2-e1feaf40885a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:33:19 GMT" + "Thu, 12 May 2022 09:36:12 GMT" ], "Content-Length": [ "176" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e36563f-ae3d-4b44-b563-69535c09bca0" + "68cf37f8-0110-474a-9c9c-32c1b7b7d4f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "8d7d3a26-9544-4a8a-881a-632674fb678d" + "46a51631-c8dc-4494-ad9e-abb2ef4e4dab" ], "x-ms-correlation-request-id": [ - "8d7d3a26-9544-4a8a-881a-632674fb678d" + "46a51631-c8dc-4494-ad9e-abb2ef4e4dab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183321Z:8d7d3a26-9544-4a8a-881a-632674fb678d" + "JIOINDIACENTRAL:20220512T093615Z:46a51631-c8dc-4494-ad9e-abb2ef4e4dab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:33:21 GMT" + "Thu, 12 May 2022 09:36:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e36563f-ae3d-4b44-b563-69535c09bca0" + "68cf37f8-0110-474a-9c9c-32c1b7b7d4f6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11955" ], "x-ms-request-id": [ - "1b67fd8c-3e4f-4f56-a1c1-282d128e2824" + "b68aedfe-937d-4260-83af-8e2061954382" ], "x-ms-correlation-request-id": [ - "1b67fd8c-3e4f-4f56-a1c1-282d128e2824" + "b68aedfe-937d-4260-83af-8e2061954382" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183534Z:1b67fd8c-3e4f-4f56-a1c1-282d128e2824" + "JIOINDIACENTRAL:20220512T093829Z:b68aedfe-937d-4260-83af-8e2061954382" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:35:34 GMT" + "Thu, 12 May 2022 09:38:29 GMT" ], "Content-Length": [ "2334" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1\",\r\n \"name\": \"cdbacct-asst1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:34:53.2176552Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"6df0e801-dc8c-4c21-8c7a-5ba88db2301b\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1\",\r\n \"name\": \"cdbacct-asst1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:37:41.7457572Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"06be9538-4315-4e84-b1f5-8a40da45bb8f\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f9efeba-dff7-4a2b-83fc-e3c5945cf1f6" + "62ede0a8-62fe-4609-b817-ba6d3be715c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11964" ], "x-ms-request-id": [ - "de4142ac-5488-4f0f-9762-952366fea803" + "768fc169-4f6e-48b7-903e-400c85d4800f" ], "x-ms-correlation-request-id": [ - "de4142ac-5488-4f0f-9762-952366fea803" + "768fc169-4f6e-48b7-903e-400c85d4800f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183534Z:de4142ac-5488-4f0f-9762-952366fea803" + "JIOINDIACENTRAL:20220512T093833Z:768fc169-4f6e-48b7-903e-400c85d4800f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:35:34 GMT" + "Thu, 12 May 2022 09:38:32 GMT" ], "Content-Length": [ "2334" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1\",\r\n \"name\": \"cdbacct-asst1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:34:53.2176552Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"6df0e801-dc8c-4c21-8c7a-5ba88db2301b\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1\",\r\n \"name\": \"cdbacct-asst1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:37:41.7457572Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"06be9538-4315-4e84-b1f5-8a40da45bb8f\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst1-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1e36563f-ae3d-4b44-b563-69535c09bca0" + "68cf37f8-0110-474a-9c9c-32c1b7b7d4f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1/operationResults/34e30683-f23f-4749-91fe-5100c49eb56f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1/operationResults/04e1caff-e53f-4df6-83c0-5d9df33f429a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "34e30683-f23f-4749-91fe-5100c49eb56f" + "04e1caff-e53f-4df6-83c0-5d9df33f429a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34e30683-f23f-4749-91fe-5100c49eb56f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/04e1caff-e53f-4df6-83c0-5d9df33f429a?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "c4a788ca-1623-463b-8807-253f679a28a8" + "2bb82704-393b-4053-ac0d-99b474944aea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183332Z:c4a788ca-1623-463b-8807-253f679a28a8" + "JIOINDIACENTRAL:20220512T093627Z:2bb82704-393b-4053-ac0d-99b474944aea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:33:31 GMT" + "Thu, 12 May 2022 09:36:27 GMT" ], "Content-Length": [ "2020" @@ -321,23 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1\",\r\n \"name\": \"cdbacct-asst1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T18:33:29.8088131Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"6df0e801-dc8c-4c21-8c7a-5ba88db2301b\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1\",\r\n \"name\": \"cdbacct-asst1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:36:24.4974415Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"06be9538-4315-4e84-b1f5-8a40da45bb8f\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst1-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34e30683-f23f-4749-91fe-5100c49eb56f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzM0ZTMwNjgzLWYyM2YtNDc0OS05MWZlLTUxMDBjNDllYjU2Zj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/04e1caff-e53f-4df6-83c0-5d9df33f429a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzA0ZTFjYWZmLWU1M2YtNGRmNi04M2MwLTVkOWRmMzNmNDI5YT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e36563f-ae3d-4b44-b563-69535c09bca0" + "68cf37f8-0110-474a-9c9c-32c1b7b7d4f6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -357,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11959" ], "x-ms-request-id": [ - "914ac583-570d-4e83-b37e-24840377a56f" + "e8fac665-49ca-4dda-9b93-05e9b6203981" ], "x-ms-correlation-request-id": [ - "914ac583-570d-4e83-b37e-24840377a56f" + "e8fac665-49ca-4dda-9b93-05e9b6203981" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183402Z:914ac583-570d-4e83-b37e-24840377a56f" + "JIOINDIACENTRAL:20220512T093658Z:e8fac665-49ca-4dda-9b93-05e9b6203981" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:34:02 GMT" + "Thu, 12 May 2022 09:36:57 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34e30683-f23f-4749-91fe-5100c49eb56f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzM0ZTMwNjgzLWYyM2YtNDc0OS05MWZlLTUxMDBjNDllYjU2Zj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/04e1caff-e53f-4df6-83c0-5d9df33f429a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzA0ZTFjYWZmLWU1M2YtNGRmNi04M2MwLTVkOWRmMzNmNDI5YT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e36563f-ae3d-4b44-b563-69535c09bca0" + "68cf37f8-0110-474a-9c9c-32c1b7b7d4f6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11958" ], "x-ms-request-id": [ - "b9d48f76-bd38-4dd5-bffd-32e29ba6c3cc" + "683a0682-e74b-4a00-8ef0-ab80759fa844" ], "x-ms-correlation-request-id": [ - "b9d48f76-bd38-4dd5-bffd-32e29ba6c3cc" + "683a0682-e74b-4a00-8ef0-ab80759fa844" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183433Z:b9d48f76-bd38-4dd5-bffd-32e29ba6c3cc" + "JIOINDIACENTRAL:20220512T093728Z:683a0682-e74b-4a00-8ef0-ab80759fa844" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:34:32 GMT" + "Thu, 12 May 2022 09:37:27 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34e30683-f23f-4749-91fe-5100c49eb56f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzM0ZTMwNjgzLWYyM2YtNDc0OS05MWZlLTUxMDBjNDllYjU2Zj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/04e1caff-e53f-4df6-83c0-5d9df33f429a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzA0ZTFjYWZmLWU1M2YtNGRmNi04M2MwLTVkOWRmMzNmNDI5YT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e36563f-ae3d-4b44-b563-69535c09bca0" + "68cf37f8-0110-474a-9c9c-32c1b7b7d4f6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11957" ], "x-ms-request-id": [ - "5c0d4b12-017a-49d8-9f9d-65dc64e76ef6" + "0929935f-034a-4f08-a415-9117c39fae66" ], "x-ms-correlation-request-id": [ - "5c0d4b12-017a-49d8-9f9d-65dc64e76ef6" + "0929935f-034a-4f08-a415-9117c39fae66" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183504Z:5c0d4b12-017a-49d8-9f9d-65dc64e76ef6" + "JIOINDIACENTRAL:20220512T093758Z:0929935f-034a-4f08-a415-9117c39fae66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:35:03 GMT" + "Thu, 12 May 2022 09:37:58 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34e30683-f23f-4749-91fe-5100c49eb56f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzM0ZTMwNjgzLWYyM2YtNDc0OS05MWZlLTUxMDBjNDllYjU2Zj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/04e1caff-e53f-4df6-83c0-5d9df33f429a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzA0ZTFjYWZmLWU1M2YtNGRmNi04M2MwLTVkOWRmMzNmNDI5YT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e36563f-ae3d-4b44-b563-69535c09bca0" + "68cf37f8-0110-474a-9c9c-32c1b7b7d4f6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11956" ], "x-ms-request-id": [ - "69ddd697-5dc7-4739-87b5-4fc34f82e051" + "9f20f0ba-0d8a-40c4-8a32-decc434aaa48" ], "x-ms-correlation-request-id": [ - "69ddd697-5dc7-4739-87b5-4fc34f82e051" + "9f20f0ba-0d8a-40c4-8a32-decc434aaa48" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183534Z:69ddd697-5dc7-4739-87b5-4fc34f82e051" + "JIOINDIACENTRAL:20220512T093829Z:9f20f0ba-0d8a-40c4-8a32-decc434aaa48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:35:34 GMT" + "Thu, 12 May 2022 09:38:28 GMT" ], "Content-Length": [ "22" @@ -565,22 +565,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst1/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -591,13 +591,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d16ba9b9-5ecf-45c7-b825-41c79cd5f81d" + "4902bd9a-c490-45a2-83b7-bc6bb465c12e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,16 +612,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "78eae7f0-4e81-45ab-acd0-99d0bcfb7fd4" + "be00ae9e-0d45-4ed2-87e8-a1307a518643" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183536Z:78eae7f0-4e81-45ab-acd0-99d0bcfb7fd4" + "JIOINDIACENTRAL:20220512T093835Z:be00ae9e-0d45-4ed2-87e8-a1307a518643" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:35:36 GMT" + "Thu, 12 May 2022 09:38:34 GMT" ], "Content-Length": [ "21" @@ -634,19 +634,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -666,22 +666,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11954" ], "x-ms-request-id": [ - "b2756b15-2d13-41a0-bac7-b47aa4df6159" + "d84abceb-548a-486a-9146-7fa08f89fb2d" ], "x-ms-correlation-request-id": [ - "b2756b15-2d13-41a0-bac7-b47aa4df6159" + "d84abceb-548a-486a-9146-7fa08f89fb2d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183607Z:b2756b15-2d13-41a0-bac7-b47aa4df6159" + "JIOINDIACENTRAL:20220512T093905Z:d84abceb-548a-486a-9146-7fa08f89fb2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:36:06 GMT" + "Thu, 12 May 2022 09:39:04 GMT" ], "Content-Length": [ "21" @@ -694,19 +694,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -726,22 +726,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11953" ], "x-ms-request-id": [ - "387eabd4-6a7e-4013-897d-db20d9b57beb" + "2bbcaf7c-98be-461d-8fe7-2bec8b9354f5" ], "x-ms-correlation-request-id": [ - "387eabd4-6a7e-4013-897d-db20d9b57beb" + "2bbcaf7c-98be-461d-8fe7-2bec8b9354f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183637Z:387eabd4-6a7e-4013-897d-db20d9b57beb" + "JIOINDIACENTRAL:20220512T093936Z:2bbcaf7c-98be-461d-8fe7-2bec8b9354f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:36:36 GMT" + "Thu, 12 May 2022 09:39:35 GMT" ], "Content-Length": [ "21" @@ -754,19 +754,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -786,22 +786,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11991" ], "x-ms-request-id": [ - "1206085d-8ab8-4267-b86c-ed07ea4f2e13" + "fa741558-807e-4532-b1c6-686692424476" ], "x-ms-correlation-request-id": [ - "1206085d-8ab8-4267-b86c-ed07ea4f2e13" + "fa741558-807e-4532-b1c6-686692424476" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183707Z:1206085d-8ab8-4267-b86c-ed07ea4f2e13" + "JIOINDIACENTRAL:20220512T094006Z:fa741558-807e-4532-b1c6-686692424476" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:37:07 GMT" + "Thu, 12 May 2022 09:40:05 GMT" ], "Content-Length": [ "21" @@ -814,19 +814,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -846,22 +846,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11990" ], "x-ms-request-id": [ - "95ad7365-a438-4a23-ab22-64adb0f2e2c8" + "00b7437a-e4c2-4d6a-9f49-5d0410c144f8" ], "x-ms-correlation-request-id": [ - "95ad7365-a438-4a23-ab22-64adb0f2e2c8" + "00b7437a-e4c2-4d6a-9f49-5d0410c144f8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183737Z:95ad7365-a438-4a23-ab22-64adb0f2e2c8" + "JIOINDIACENTRAL:20220512T094036Z:00b7437a-e4c2-4d6a-9f49-5d0410c144f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:37:36 GMT" + "Thu, 12 May 2022 09:40:36 GMT" ], "Content-Length": [ "21" @@ -874,19 +874,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -906,22 +906,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11989" ], "x-ms-request-id": [ - "bacc606c-f09d-4662-9df6-01a9aebe6650" + "79c2f9c5-0498-4a65-af40-073f5a53afe2" ], "x-ms-correlation-request-id": [ - "bacc606c-f09d-4662-9df6-01a9aebe6650" + "79c2f9c5-0498-4a65-af40-073f5a53afe2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183808Z:bacc606c-f09d-4662-9df6-01a9aebe6650" + "JIOINDIACENTRAL:20220512T094106Z:79c2f9c5-0498-4a65-af40-073f5a53afe2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:38:07 GMT" + "Thu, 12 May 2022 09:41:06 GMT" ], "Content-Length": [ "21" @@ -934,19 +934,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -966,22 +966,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11988" ], "x-ms-request-id": [ - "40e111d3-703f-43ac-94cc-9b96b56fd9be" + "aa7df9f7-122d-4f2b-9a19-08bff78c621b" ], "x-ms-correlation-request-id": [ - "40e111d3-703f-43ac-94cc-9b96b56fd9be" + "aa7df9f7-122d-4f2b-9a19-08bff78c621b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183838Z:40e111d3-703f-43ac-94cc-9b96b56fd9be" + "JIOINDIACENTRAL:20220512T094137Z:aa7df9f7-122d-4f2b-9a19-08bff78c621b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:38:37 GMT" + "Thu, 12 May 2022 09:41:37 GMT" ], "Content-Length": [ "21" @@ -994,19 +994,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1026,22 +1026,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11987" ], "x-ms-request-id": [ - "84407eeb-4642-4713-826e-045f2d6e565b" + "59c9d37d-a080-4cf4-bb38-5536750005ad" ], "x-ms-correlation-request-id": [ - "84407eeb-4642-4713-826e-045f2d6e565b" + "59c9d37d-a080-4cf4-bb38-5536750005ad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183908Z:84407eeb-4642-4713-826e-045f2d6e565b" + "JIOINDIACENTRAL:20220512T094208Z:59c9d37d-a080-4cf4-bb38-5536750005ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:39:08 GMT" + "Thu, 12 May 2022 09:42:08 GMT" ], "Content-Length": [ "21" @@ -1054,19 +1054,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1086,22 +1086,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11986" ], "x-ms-request-id": [ - "794f1174-a03d-4d49-b0b1-ba526014c83a" + "6fac1c4c-7e08-429f-8064-6ac3c433fc9c" ], "x-ms-correlation-request-id": [ - "794f1174-a03d-4d49-b0b1-ba526014c83a" + "6fac1c4c-7e08-429f-8064-6ac3c433fc9c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183938Z:794f1174-a03d-4d49-b0b1-ba526014c83a" + "JIOINDIACENTRAL:20220512T094238Z:6fac1c4c-7e08-429f-8064-6ac3c433fc9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:39:38 GMT" + "Thu, 12 May 2022 09:42:37 GMT" ], "Content-Length": [ "21" @@ -1114,19 +1114,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1146,22 +1146,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11985" ], "x-ms-request-id": [ - "310163b7-3a04-446d-8a74-4128e1eb15d0" + "4c31fec9-02f5-4c92-bdfc-bf9853e72e83" ], "x-ms-correlation-request-id": [ - "310163b7-3a04-446d-8a74-4128e1eb15d0" + "4c31fec9-02f5-4c92-bdfc-bf9853e72e83" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184009Z:310163b7-3a04-446d-8a74-4128e1eb15d0" + "JIOINDIACENTRAL:20220512T094308Z:4c31fec9-02f5-4c92-bdfc-bf9853e72e83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:40:08 GMT" + "Thu, 12 May 2022 09:43:08 GMT" ], "Content-Length": [ "21" @@ -1174,19 +1174,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1206,22 +1206,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11984" ], "x-ms-request-id": [ - "eca40c6b-ecdb-4881-8af1-0f8e1db7b88f" + "c3b8c6ce-1a78-4709-af59-27ed8981529e" ], "x-ms-correlation-request-id": [ - "eca40c6b-ecdb-4881-8af1-0f8e1db7b88f" + "c3b8c6ce-1a78-4709-af59-27ed8981529e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184040Z:eca40c6b-ecdb-4881-8af1-0f8e1db7b88f" + "JIOINDIACENTRAL:20220512T094339Z:c3b8c6ce-1a78-4709-af59-27ed8981529e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:40:39 GMT" + "Thu, 12 May 2022 09:43:39 GMT" ], "Content-Length": [ "21" @@ -1234,19 +1234,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1266,22 +1266,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11983" ], "x-ms-request-id": [ - "d2148461-b4d6-40a6-9f30-0f986dfc8c99" + "03c2271a-b6f9-4673-b6bc-dc83add8a491" ], "x-ms-correlation-request-id": [ - "d2148461-b4d6-40a6-9f30-0f986dfc8c99" + "03c2271a-b6f9-4673-b6bc-dc83add8a491" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184110Z:d2148461-b4d6-40a6-9f30-0f986dfc8c99" + "JIOINDIACENTRAL:20220512T094409Z:03c2271a-b6f9-4673-b6bc-dc83add8a491" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:41:10 GMT" + "Thu, 12 May 2022 09:44:09 GMT" ], "Content-Length": [ "21" @@ -1294,19 +1294,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1326,22 +1326,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11982" ], "x-ms-request-id": [ - "67c2cfa3-cc6e-406f-a395-e584beaed04c" + "27a19831-b852-4fea-ad1a-a9180f9c6dee" ], "x-ms-correlation-request-id": [ - "67c2cfa3-cc6e-406f-a395-e584beaed04c" + "27a19831-b852-4fea-ad1a-a9180f9c6dee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184140Z:67c2cfa3-cc6e-406f-a395-e584beaed04c" + "JIOINDIACENTRAL:20220512T094439Z:27a19831-b852-4fea-ad1a-a9180f9c6dee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:41:39 GMT" + "Thu, 12 May 2022 09:44:39 GMT" ], "Content-Length": [ "21" @@ -1354,19 +1354,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1386,22 +1386,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11981" ], "x-ms-request-id": [ - "6f43b1c2-e61b-4e01-b51b-69c51c80da0b" + "a31bd869-e8a4-43bc-8897-76ac64725cc8" ], "x-ms-correlation-request-id": [ - "6f43b1c2-e61b-4e01-b51b-69c51c80da0b" + "a31bd869-e8a4-43bc-8897-76ac64725cc8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184211Z:6f43b1c2-e61b-4e01-b51b-69c51c80da0b" + "JIOINDIACENTRAL:20220512T094510Z:a31bd869-e8a4-43bc-8897-76ac64725cc8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:42:10 GMT" + "Thu, 12 May 2022 09:45:09 GMT" ], "Content-Length": [ "21" @@ -1414,19 +1414,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1446,22 +1446,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11980" ], "x-ms-request-id": [ - "a7126a2a-9756-4b64-b4e0-824b66885f63" + "8162e532-716a-4aef-8b38-0656ef77f666" ], "x-ms-correlation-request-id": [ - "a7126a2a-9756-4b64-b4e0-824b66885f63" + "8162e532-716a-4aef-8b38-0656ef77f666" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184241Z:a7126a2a-9756-4b64-b4e0-824b66885f63" + "JIOINDIACENTRAL:20220512T094540Z:8162e532-716a-4aef-8b38-0656ef77f666" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:42:40 GMT" + "Thu, 12 May 2022 09:45:40 GMT" ], "Content-Length": [ "21" @@ -1474,19 +1474,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1506,22 +1506,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11979" ], "x-ms-request-id": [ - "581ecd55-397e-4b8a-a61c-cc1a33a67d3a" + "46c7244b-86ef-47db-bc2c-449542c4504e" ], "x-ms-correlation-request-id": [ - "581ecd55-397e-4b8a-a61c-cc1a33a67d3a" + "46c7244b-86ef-47db-bc2c-449542c4504e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184311Z:581ecd55-397e-4b8a-a61c-cc1a33a67d3a" + "JIOINDIACENTRAL:20220512T094610Z:46c7244b-86ef-47db-bc2c-449542c4504e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:43:11 GMT" + "Thu, 12 May 2022 09:46:10 GMT" ], "Content-Length": [ "21" @@ -1534,19 +1534,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1566,22 +1566,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11978" ], "x-ms-request-id": [ - "36be541e-4e9d-46c4-bb98-2361b2595b7c" + "23f4bf9c-9a0b-444a-8410-8d5de3f7c579" ], "x-ms-correlation-request-id": [ - "36be541e-4e9d-46c4-bb98-2361b2595b7c" + "23f4bf9c-9a0b-444a-8410-8d5de3f7c579" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184342Z:36be541e-4e9d-46c4-bb98-2361b2595b7c" + "JIOINDIACENTRAL:20220512T094641Z:23f4bf9c-9a0b-444a-8410-8d5de3f7c579" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:43:42 GMT" + "Thu, 12 May 2022 09:46:40 GMT" ], "Content-Length": [ "21" @@ -1594,19 +1594,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1626,22 +1626,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11977" ], "x-ms-request-id": [ - "f3dfe595-546c-4dab-b0e0-0a7682fbe44c" + "5b9f1dc4-c908-431c-8c39-afbfc3991f8f" ], "x-ms-correlation-request-id": [ - "f3dfe595-546c-4dab-b0e0-0a7682fbe44c" + "5b9f1dc4-c908-431c-8c39-afbfc3991f8f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184412Z:f3dfe595-546c-4dab-b0e0-0a7682fbe44c" + "JIOINDIACENTRAL:20220512T094712Z:5b9f1dc4-c908-431c-8c39-afbfc3991f8f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:44:11 GMT" + "Thu, 12 May 2022 09:47:11 GMT" ], "Content-Length": [ "22" @@ -1654,19 +1654,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/d16ba9b9-5ecf-45c7-b825-41c79cd5f81d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2QxNmJhOWI5LTVlY2YtNDVjNy1iODI1LTQxYzc5Y2Q1ZjgxZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/4902bd9a-c490-45a2-83b7-bc6bb465c12e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzQ5MDJiZDlhLWM0OTAtNDVhMi04M2I3LWJjNmJiNDY1YzEyZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1680,28 +1680,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "992e54b6-f4b3-4f23-926d-e64ccd5521eb" + "c7bffd2a-9373-4d17-84fa-439866412171" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11976" ], "x-ms-request-id": [ - "64493e02-82e3-4e7b-9fb6-6efb193d54ff" + "3f09a41d-a9ce-4aef-b140-372341cfe383" ], "x-ms-correlation-request-id": [ - "64493e02-82e3-4e7b-9fb6-6efb193d54ff" + "3f09a41d-a9ce-4aef-b140-372341cfe383" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T184412Z:64493e02-82e3-4e7b-9fb6-6efb193d54ff" + "JIOINDIACENTRAL:20220512T094712Z:3f09a41d-a9ce-4aef-b140-372341cfe383" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:44:12 GMT" + "Thu, 12 May 2022 09:47:11 GMT" ], "Content-Length": [ "0" @@ -1717,16 +1717,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bbede55-2767-48eb-95c7-2b704e07a29e" + "1aad9a40-520a-4271-8b4a-c27325ed0bee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -1743,16 +1743,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "1fab2aa7-b705-4c99-895d-bef558d36685" + "947ef44f-eae2-482a-a217-7ca113a731ef" ], "x-ms-correlation-request-id": [ - "1fab2aa7-b705-4c99-895d-bef558d36685" + "947ef44f-eae2-482a-a217-7ca113a731ef" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T184418Z:1fab2aa7-b705-4c99-895d-bef558d36685" + "JIOINDIACENTRAL:20220512T094717Z:947ef44f-eae2-482a-a217-7ca113a731ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1761,7 +1761,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:44:17 GMT" + "Thu, 12 May 2022 09:47:17 GMT" ], "Expires": [ "-1" @@ -1780,10 +1780,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -1800,16 +1800,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "578a3aa0-b489-4048-b779-5f41df92704a" + "6ba09d8b-72d5-437c-9add-e7721906a775" ], "x-ms-correlation-request-id": [ - "578a3aa0-b489-4048-b779-5f41df92704a" + "6ba09d8b-72d5-437c-9add-e7721906a775" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T184433Z:578a3aa0-b489-4048-b779-5f41df92704a" + "JIOINDIACENTRAL:20220512T094733Z:6ba09d8b-72d5-437c-9add-e7721906a775" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1818,7 +1818,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:44:33 GMT" + "Thu, 12 May 2022 09:47:32 GMT" ], "Expires": [ "-1" @@ -1837,10 +1837,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -1857,16 +1857,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "6a81bb72-76bb-4475-9705-5cc61a7a0578" + "a1a22fd2-7331-45e6-946c-d0b08f98c7ef" ], "x-ms-correlation-request-id": [ - "6a81bb72-76bb-4475-9705-5cc61a7a0578" + "a1a22fd2-7331-45e6-946c-d0b08f98c7ef" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T184449Z:6a81bb72-76bb-4475-9705-5cc61a7a0578" + "JIOINDIACENTRAL:20220512T094748Z:a1a22fd2-7331-45e6-946c-d0b08f98c7ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1875,7 +1875,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:44:48 GMT" + "Thu, 12 May 2022 09:47:48 GMT" ], "Expires": [ "-1" @@ -1894,10 +1894,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -1914,16 +1914,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "e14bccd5-f009-452f-b536-114e1ce83c56" + "20c488fe-6f55-43b6-aad6-ee3db7233520" ], "x-ms-correlation-request-id": [ - "e14bccd5-f009-452f-b536-114e1ce83c56" + "20c488fe-6f55-43b6-aad6-ee3db7233520" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T184504Z:e14bccd5-f009-452f-b536-114e1ce83c56" + "JIOINDIACENTRAL:20220512T094804Z:20c488fe-6f55-43b6-aad6-ee3db7233520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1932,7 +1932,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:45:04 GMT" + "Thu, 12 May 2022 09:48:03 GMT" ], "Expires": [ "-1" @@ -1951,10 +1951,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -1971,16 +1971,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "92d9c9bd-fbef-4c4d-a515-4355344ac62b" + "2f5bfe42-2e48-405f-a00c-218663db6480" ], "x-ms-correlation-request-id": [ - "92d9c9bd-fbef-4c4d-a515-4355344ac62b" + "2f5bfe42-2e48-405f-a00c-218663db6480" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T184520Z:92d9c9bd-fbef-4c4d-a515-4355344ac62b" + "JIOINDIACENTRAL:20220512T094819Z:2f5bfe42-2e48-405f-a00c-218663db6480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1989,7 +1989,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:45:19 GMT" + "Thu, 12 May 2022 09:48:19 GMT" ], "Expires": [ "-1" @@ -2008,10 +2008,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2022,16 +2022,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "a6fe44e9-0eae-4571-995f-c38c0f70d603" + "e9c7f487-f2f9-4da6-b812-9e9dc34062e4" ], "x-ms-correlation-request-id": [ - "a6fe44e9-0eae-4571-995f-c38c0f70d603" + "e9c7f487-f2f9-4da6-b812-9e9dc34062e4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T184535Z:a6fe44e9-0eae-4571-995f-c38c0f70d603" + "JIOINDIACENTRAL:20220512T094835Z:e9c7f487-f2f9-4da6-b812-9e9dc34062e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2040,7 +2040,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:45:34 GMT" + "Thu, 12 May 2022 09:48:34 GMT" ], "Expires": [ "-1" @@ -2059,10 +2059,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2073,16 +2073,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "272c50c9-a3b2-4e13-b0c3-b3b298e01599" + "85a30287-3bbf-4b05-94e4-17190ee52754" ], "x-ms-correlation-request-id": [ - "272c50c9-a3b2-4e13-b0c3-b3b298e01599" + "85a30287-3bbf-4b05-94e4-17190ee52754" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T184536Z:272c50c9-a3b2-4e13-b0c3-b3b298e01599" + "JIOINDIACENTRAL:20220512T094835Z:85a30287-3bbf-4b05-94e4-17190ee52754" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2091,7 +2091,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:45:35 GMT" + "Thu, 12 May 2022 09:48:35 GMT" ], "Expires": [ "-1" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAnalyticalStorageSchemaTypeUpdateAccount.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAnalyticalStorageSchemaTypeUpdateAccount.json index 2cf8d24cc281..1d99286e2564 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAnalyticalStorageSchemaTypeUpdateAccount.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestAnalyticalStorageSchemaTypeUpdateAccount.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b857f5c2-dc75-41fa-a6d6-c140339b4319" + "f58fe863-3c03-46e2-8edf-3cba4cf4642f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "2bd70d59-e392-4e12-82b9-b362dd675f1d" + "6fa7246d-591f-441d-a880-3921ac2e7378" ], "x-ms-correlation-request-id": [ - "2bd70d59-e392-4e12-82b9-b362dd675f1d" + "6fa7246d-591f-441d-a880-3921ac2e7378" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173633Z:2bd70d59-e392-4e12-82b9-b362dd675f1d" + "CENTRALINDIA:20220512T083933Z:6fa7246d-591f-441d-a880-3921ac2e7378" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:36:32 GMT" + "Thu, 12 May 2022 08:39:33 GMT" ], "Content-Length": [ "176" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0b6b54b-a66c-41a6-a453-477c33d5afbb" + "4e7d419b-8529-4996-bb5a-3185b04d3f26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "6b133ea5-2003-45b0-a7f3-4266f86ddea0" + "797a2db8-6ce3-4ac5-a690-ab54450ef29c" ], "x-ms-correlation-request-id": [ - "6b133ea5-2003-45b0-a7f3-4266f86ddea0" + "797a2db8-6ce3-4ac5-a690-ab54450ef29c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173635Z:6b133ea5-2003-45b0-a7f3-4266f86ddea0" + "CENTRALINDIA:20220512T083933Z:797a2db8-6ce3-4ac5-a690-ab54450ef29c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:36:34 GMT" + "Thu, 12 May 2022 08:39:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0b6b54b-a66c-41a6-a453-477c33d5afbb" + "4e7d419b-8529-4996-bb5a-3185b04d3f26" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11994" ], "x-ms-request-id": [ - "190715e4-69e9-4c25-8ce1-c4a3c42a83e4" + "3da06f3f-6f20-4f00-ab20-0373599fe2d5" ], "x-ms-correlation-request-id": [ - "190715e4-69e9-4c25-8ce1-c4a3c42a83e4" + "3da06f3f-6f20-4f00-ab20-0373599fe2d5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173848Z:190715e4-69e9-4c25-8ce1-c4a3c42a83e4" + "CENTRALINDIA:20220512T084146Z:3da06f3f-6f20-4f00-ab20-0373599fe2d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:38:48 GMT" + "Thu, 12 May 2022 08:41:46 GMT" ], "Content-Length": [ "2333" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:38:06.4830395Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d9100fa3-2a2b-42ed-92ae-5912fde45e43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:41:10.1990203Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"2d3c7a1d-3923-47b8-b428-72af832c8f43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a396d21-0a6e-4297-b5c6-9ba628c40f83" + "42537928-a7a2-44f7-b877-732473edaad8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11925" ], "x-ms-request-id": [ - "25b4ae82-6c7e-4205-a726-00e9be70f4c0" + "4427dc0f-890e-4b24-91bf-cb1c9f4c8e0f" ], "x-ms-correlation-request-id": [ - "25b4ae82-6c7e-4205-a726-00e9be70f4c0" + "4427dc0f-890e-4b24-91bf-cb1c9f4c8e0f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173849Z:25b4ae82-6c7e-4205-a726-00e9be70f4c0" + "JIOINDIACENTRAL:20220512T084148Z:4427dc0f-890e-4b24-91bf-cb1c9f4c8e0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:38:48 GMT" + "Thu, 12 May 2022 08:41:47 GMT" ], "Content-Length": [ "2333" @@ -246,23 +246,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:38:06.4830395Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d9100fa3-2a2b-42ed-92ae-5912fde45e43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:41:10.1990203Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"2d3c7a1d-3923-47b8-b428-72af832c8f43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a396d21-0a6e-4297-b5c6-9ba628c40f83" + "42537928-a7a2-44f7-b877-732473edaad8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -282,22 +282,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11923" ], "x-ms-request-id": [ - "0cdf7ba1-08e6-4006-9edc-2306b592e52d" + "6f944bcc-6668-4cc2-a383-928bc1bef91a" ], "x-ms-correlation-request-id": [ - "0cdf7ba1-08e6-4006-9edc-2306b592e52d" + "6f944bcc-6668-4cc2-a383-928bc1bef91a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173925Z:0cdf7ba1-08e6-4006-9edc-2306b592e52d" + "JIOINDIACENTRAL:20220512T084226Z:6f944bcc-6668-4cc2-a383-928bc1bef91a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:39:24 GMT" + "Thu, 12 May 2022 08:42:26 GMT" ], "Content-Length": [ "2334" @@ -306,26 +306,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:38:06.4830395Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d9100fa3-2a2b-42ed-92ae-5912fde45e43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:41:10.1990203Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"2d3c7a1d-3923-47b8-b428-72af832c8f43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b902d1a7-ae9e-48af-868a-5feb755a4237" + "77e972ee-e18a-4b14-b4be-a5cd31c39113" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -345,22 +345,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11922" ], "x-ms-request-id": [ - "57f993bc-5adc-4719-85f1-a81c2f14d004" + "11dbd10d-d26f-4ead-b2af-c54319b29904" ], "x-ms-correlation-request-id": [ - "57f993bc-5adc-4719-85f1-a81c2f14d004" + "11dbd10d-d26f-4ead-b2af-c54319b29904" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173925Z:57f993bc-5adc-4719-85f1-a81c2f14d004" + "JIOINDIACENTRAL:20220512T084227Z:11dbd10d-d26f-4ead-b2af-c54319b29904" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:39:24 GMT" + "Thu, 12 May 2022 08:42:26 GMT" ], "Content-Length": [ "2334" @@ -369,26 +369,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:38:06.4830395Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d9100fa3-2a2b-42ed-92ae-5912fde45e43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:41:10.1990203Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"2d3c7a1d-3923-47b8-b428-72af832c8f43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a0b6b54b-a66c-41a6-a453-477c33d5afbb" + "4e7d419b-8529-4996-bb5a-3185b04d3f26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -405,13 +405,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3/operationResults/f5788688-9ddb-4deb-a58f-42505e658933?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3/operationResults/23e17ca2-71d7-4420-96af-cdebea5518ef?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f5788688-9ddb-4deb-a58f-42505e658933" + "23e17ca2-71d7-4420-96af-cdebea5518ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f5788688-9ddb-4deb-a58f-42505e658933?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/23e17ca2-71d7-4420-96af-cdebea5518ef?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,19 +423,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "dfd28178-816c-4d67-9b43-b92b71be2e40" + "8ed0c6ca-1369-4bd5-9477-5dcd88161fcc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173647Z:dfd28178-816c-4d67-9b43-b92b71be2e40" + "CENTRALINDIA:20220512T083945Z:8ed0c6ca-1369-4bd5-9477-5dcd88161fcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:36:46 GMT" + "Thu, 12 May 2022 08:39:44 GMT" ], "Content-Length": [ "2019" @@ -444,23 +444,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:36:43.8995378Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d9100fa3-2a2b-42ed-92ae-5912fde45e43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:39:42.3454543Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"2d3c7a1d-3923-47b8-b428-72af832c8f43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f5788688-9ddb-4deb-a58f-42505e658933?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2Y1Nzg4Njg4LTlkZGItNGRlYi1hNThmLTQyNTA1ZTY1ODkzMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/23e17ca2-71d7-4420-96af-cdebea5518ef?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzIzZTE3Y2EyLTcxZDctNDQyMC05NmFmLWNkZWJlYTU1MThlZj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0b6b54b-a66c-41a6-a453-477c33d5afbb" + "4e7d419b-8529-4996-bb5a-3185b04d3f26" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -480,22 +480,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-request-id": [ - "41f06105-3f07-4adf-99c1-90de27a586eb" + "94a1461f-445e-49c8-8552-abf2d9f51b08" ], "x-ms-correlation-request-id": [ - "41f06105-3f07-4adf-99c1-90de27a586eb" + "94a1461f-445e-49c8-8552-abf2d9f51b08" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173717Z:41f06105-3f07-4adf-99c1-90de27a586eb" + "CENTRALINDIA:20220512T084015Z:94a1461f-445e-49c8-8552-abf2d9f51b08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:37:17 GMT" + "Thu, 12 May 2022 08:40:15 GMT" ], "Content-Length": [ "21" @@ -508,19 +508,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f5788688-9ddb-4deb-a58f-42505e658933?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2Y1Nzg4Njg4LTlkZGItNGRlYi1hNThmLTQyNTA1ZTY1ODkzMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/23e17ca2-71d7-4420-96af-cdebea5518ef?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzIzZTE3Y2EyLTcxZDctNDQyMC05NmFmLWNkZWJlYTU1MThlZj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0b6b54b-a66c-41a6-a453-477c33d5afbb" + "4e7d419b-8529-4996-bb5a-3185b04d3f26" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -540,22 +540,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11997" ], "x-ms-request-id": [ - "4a4a9aca-959d-4000-bbef-83044bed73cf" + "b7ef8214-c7b2-4914-afb6-021877b49322" ], "x-ms-correlation-request-id": [ - "4a4a9aca-959d-4000-bbef-83044bed73cf" + "b7ef8214-c7b2-4914-afb6-021877b49322" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173748Z:4a4a9aca-959d-4000-bbef-83044bed73cf" + "CENTRALINDIA:20220512T084045Z:b7ef8214-c7b2-4914-afb6-021877b49322" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:37:47 GMT" + "Thu, 12 May 2022 08:40:45 GMT" ], "Content-Length": [ "21" @@ -568,19 +568,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f5788688-9ddb-4deb-a58f-42505e658933?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2Y1Nzg4Njg4LTlkZGItNGRlYi1hNThmLTQyNTA1ZTY1ODkzMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/23e17ca2-71d7-4420-96af-cdebea5518ef?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzIzZTE3Y2EyLTcxZDctNDQyMC05NmFmLWNkZWJlYTU1MThlZj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0b6b54b-a66c-41a6-a453-477c33d5afbb" + "4e7d419b-8529-4996-bb5a-3185b04d3f26" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -600,22 +600,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11996" ], "x-ms-request-id": [ - "915871d6-072a-4eec-ba60-6ac601e780c1" + "f8c05bb0-c972-4c64-ae00-1d807ec40aef" ], "x-ms-correlation-request-id": [ - "915871d6-072a-4eec-ba60-6ac601e780c1" + "f8c05bb0-c972-4c64-ae00-1d807ec40aef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173818Z:915871d6-072a-4eec-ba60-6ac601e780c1" + "CENTRALINDIA:20220512T084116Z:f8c05bb0-c972-4c64-ae00-1d807ec40aef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:38:17 GMT" + "Thu, 12 May 2022 08:41:15 GMT" ], "Content-Length": [ "21" @@ -628,19 +628,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/f5788688-9ddb-4deb-a58f-42505e658933?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2Y1Nzg4Njg4LTlkZGItNGRlYi1hNThmLTQyNTA1ZTY1ODkzMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/23e17ca2-71d7-4420-96af-cdebea5518ef?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzIzZTE3Y2EyLTcxZDctNDQyMC05NmFmLWNkZWJlYTU1MThlZj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0b6b54b-a66c-41a6-a453-477c33d5afbb" + "4e7d419b-8529-4996-bb5a-3185b04d3f26" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -660,22 +660,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11995" ], "x-ms-request-id": [ - "c962c254-7091-4cc9-94f9-8fec8832793a" + "af6bd963-f35e-42d4-8f22-c112ca6bd31c" ], "x-ms-correlation-request-id": [ - "c962c254-7091-4cc9-94f9-8fec8832793a" + "af6bd963-f35e-42d4-8f22-c112ca6bd31c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173848Z:c962c254-7091-4cc9-94f9-8fec8832793a" + "CENTRALINDIA:20220512T084146Z:af6bd963-f35e-42d4-8f22-c112ca6bd31c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:38:48 GMT" + "Thu, 12 May 2022 08:41:46 GMT" ], "Content-Length": [ "22" @@ -688,22 +688,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8a396d21-0a6e-4297-b5c6-9ba628c40f83" + "42537928-a7a2-44f7-b877-732473edaad8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,13 +720,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3/operationResults/d6e9dc6b-3f91-40f3-8ab4-7c977bfb61d4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3/operationResults/0440b9f5-5d7e-4299-b4db-06e6a8cc3472?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d6e9dc6b-3f91-40f3-8ab4-7c977bfb61d4" + "0440b9f5-5d7e-4299-b4db-06e6a8cc3472" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d6e9dc6b-3f91-40f3-8ab4-7c977bfb61d4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0440b9f5-5d7e-4299-b4db-06e6a8cc3472?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,44 +738,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "b214bad7-5172-4b1d-b174-a6ad9e14072f" + "6d207a25-f589-4541-a36a-b3daa519c234" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173854Z:b214bad7-5172-4b1d-b174-a6ad9e14072f" + "JIOINDIACENTRAL:20220512T084154Z:6d207a25-f589-4541-a36a-b3daa519c234" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:38:54 GMT" + "Thu, 12 May 2022 08:41:54 GMT" ], "Content-Length": [ - "2329" + "2332" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:38:06.4830395Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d9100fa3-2a2b-42ed-92ae-5912fde45e43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3\",\r\n \"name\": \"cdbacct-asst3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:41:10.1990203Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"2d3c7a1d-3923-47b8-b428-72af832c8f43\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://cdbacct-asst3-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cdbacct-asst3-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/d6e9dc6b-3f91-40f3-8ab4-7c977bfb61d4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2Q2ZTlkYzZiLTNmOTEtNDBmMy04YWI0LTdjOTc3YmZiNjFkND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0440b9f5-5d7e-4299-b4db-06e6a8cc3472?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzA0NDBiOWY1LTVkN2UtNDI5OS1iNGRiLTA2ZTZhOGNjMzQ3Mj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a396d21-0a6e-4297-b5c6-9ba628c40f83" + "42537928-a7a2-44f7-b877-732473edaad8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -795,22 +795,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11924" ], "x-ms-request-id": [ - "3bd6e85a-47f9-498e-b5aa-c72f7f248049" + "f3f2896d-f4c4-48e8-b320-53df7234d18c" ], "x-ms-correlation-request-id": [ - "3bd6e85a-47f9-498e-b5aa-c72f7f248049" + "f3f2896d-f4c4-48e8-b320-53df7234d18c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173924Z:3bd6e85a-47f9-498e-b5aa-c72f7f248049" + "JIOINDIACENTRAL:20220512T084225Z:f3f2896d-f4c4-48e8-b320-53df7234d18c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:39:23 GMT" + "Thu, 12 May 2022 08:42:25 GMT" ], "Content-Length": [ "22" @@ -823,22 +823,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cdbrg-asst3/providers/Microsoft.DocumentDB/databaseAccounts/cdbacct-asst3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL2NkYnJnLWFzc3QzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2NkYmFjY3QtYXNzdDM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -849,13 +849,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "51768f8d-ecf1-4cf7-8636-ca5be9bb0589" + "94290f67-a00e-4643-abbd-d72bd9a04754" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,19 +867,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "d5752837-ecd4-4559-a08e-7a4ef4f36141" + "6b8c7ca0-96da-465a-9b81-8d05aed0a427" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173927Z:d5752837-ecd4-4559-a08e-7a4ef4f36141" + "JIOINDIACENTRAL:20220512T084229Z:6b8c7ca0-96da-465a-9b81-8d05aed0a427" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:39:26 GMT" + "Thu, 12 May 2022 08:42:29 GMT" ], "Content-Length": [ "21" @@ -892,19 +892,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -924,22 +924,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11925" ], "x-ms-request-id": [ - "b3021264-2118-42ff-b713-bbfc37f9b547" + "19a2f0da-7a1e-49c3-ad97-193a1fd1e510" ], "x-ms-correlation-request-id": [ - "b3021264-2118-42ff-b713-bbfc37f9b547" + "19a2f0da-7a1e-49c3-ad97-193a1fd1e510" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173957Z:b3021264-2118-42ff-b713-bbfc37f9b547" + "JIOINDIACENTRAL:20220512T084259Z:19a2f0da-7a1e-49c3-ad97-193a1fd1e510" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:39:57 GMT" + "Thu, 12 May 2022 08:42:59 GMT" ], "Content-Length": [ "21" @@ -952,19 +952,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -984,22 +984,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11924" ], "x-ms-request-id": [ - "cfcba177-aca9-40b9-85a9-86b76803a964" + "fd32012e-8eac-4023-b81a-42151ac6e22b" ], "x-ms-correlation-request-id": [ - "cfcba177-aca9-40b9-85a9-86b76803a964" + "fd32012e-8eac-4023-b81a-42151ac6e22b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174028Z:cfcba177-aca9-40b9-85a9-86b76803a964" + "JIOINDIACENTRAL:20220512T084330Z:fd32012e-8eac-4023-b81a-42151ac6e22b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:40:28 GMT" + "Thu, 12 May 2022 08:43:29 GMT" ], "Content-Length": [ "21" @@ -1012,19 +1012,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1044,22 +1044,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11923" ], "x-ms-request-id": [ - "6571cfcf-eea2-4a66-b8c9-7ecaee110acf" + "f014b492-54da-491d-9270-dc7e740e9435" ], "x-ms-correlation-request-id": [ - "6571cfcf-eea2-4a66-b8c9-7ecaee110acf" + "f014b492-54da-491d-9270-dc7e740e9435" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174058Z:6571cfcf-eea2-4a66-b8c9-7ecaee110acf" + "JIOINDIACENTRAL:20220512T084400Z:f014b492-54da-491d-9270-dc7e740e9435" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:40:57 GMT" + "Thu, 12 May 2022 08:44:00 GMT" ], "Content-Length": [ "21" @@ -1072,19 +1072,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1104,22 +1104,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11922" ], "x-ms-request-id": [ - "d21d484d-c33f-480c-8ffb-26764aa429ea" + "9cdf1da0-e622-43d6-9849-4fe684b4ed16" ], "x-ms-correlation-request-id": [ - "d21d484d-c33f-480c-8ffb-26764aa429ea" + "9cdf1da0-e622-43d6-9849-4fe684b4ed16" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174128Z:d21d484d-c33f-480c-8ffb-26764aa429ea" + "JIOINDIACENTRAL:20220512T084430Z:9cdf1da0-e622-43d6-9849-4fe684b4ed16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:41:27 GMT" + "Thu, 12 May 2022 08:44:30 GMT" ], "Content-Length": [ "21" @@ -1132,19 +1132,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1164,22 +1164,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11921" ], "x-ms-request-id": [ - "af6ab621-9a25-4430-be75-2405a9fe6943" + "c7f09c57-65e8-4337-aaab-926affa2b76a" ], "x-ms-correlation-request-id": [ - "af6ab621-9a25-4430-be75-2405a9fe6943" + "c7f09c57-65e8-4337-aaab-926affa2b76a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174158Z:af6ab621-9a25-4430-be75-2405a9fe6943" + "JIOINDIACENTRAL:20220512T084501Z:c7f09c57-65e8-4337-aaab-926affa2b76a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:41:58 GMT" + "Thu, 12 May 2022 08:45:00 GMT" ], "Content-Length": [ "21" @@ -1192,19 +1192,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1224,22 +1224,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11920" ], "x-ms-request-id": [ - "fefd7bb3-35e8-47e4-8b8b-cd353482f871" + "1fcbeed4-6249-4be2-a3f6-e769d616ff27" ], "x-ms-correlation-request-id": [ - "fefd7bb3-35e8-47e4-8b8b-cd353482f871" + "1fcbeed4-6249-4be2-a3f6-e769d616ff27" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174229Z:fefd7bb3-35e8-47e4-8b8b-cd353482f871" + "JIOINDIACENTRAL:20220512T084531Z:1fcbeed4-6249-4be2-a3f6-e769d616ff27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:42:29 GMT" + "Thu, 12 May 2022 08:45:30 GMT" ], "Content-Length": [ "21" @@ -1252,19 +1252,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1284,22 +1284,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11919" ], "x-ms-request-id": [ - "5e202dbb-a9b6-47c6-87cd-57f47448d33b" + "76d9814c-e3d6-4f59-80df-94889682813f" ], "x-ms-correlation-request-id": [ - "5e202dbb-a9b6-47c6-87cd-57f47448d33b" + "76d9814c-e3d6-4f59-80df-94889682813f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174300Z:5e202dbb-a9b6-47c6-87cd-57f47448d33b" + "JIOINDIACENTRAL:20220512T084601Z:76d9814c-e3d6-4f59-80df-94889682813f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:43:00 GMT" + "Thu, 12 May 2022 08:46:00 GMT" ], "Content-Length": [ "21" @@ -1312,19 +1312,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1344,22 +1344,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11918" ], "x-ms-request-id": [ - "8157001b-b461-4922-abea-ae9cacc3189c" + "877ddae8-788e-491e-a70c-c4d7d91649c1" ], "x-ms-correlation-request-id": [ - "8157001b-b461-4922-abea-ae9cacc3189c" + "877ddae8-788e-491e-a70c-c4d7d91649c1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174330Z:8157001b-b461-4922-abea-ae9cacc3189c" + "JIOINDIACENTRAL:20220512T084631Z:877ddae8-788e-491e-a70c-c4d7d91649c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:43:29 GMT" + "Thu, 12 May 2022 08:46:31 GMT" ], "Content-Length": [ "21" @@ -1372,19 +1372,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1404,22 +1404,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11917" ], "x-ms-request-id": [ - "9f5cb505-5a91-4a38-99e9-13396230848a" + "d0019094-b904-4230-884e-2d7751a5e72e" ], "x-ms-correlation-request-id": [ - "9f5cb505-5a91-4a38-99e9-13396230848a" + "d0019094-b904-4230-884e-2d7751a5e72e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174400Z:9f5cb505-5a91-4a38-99e9-13396230848a" + "JIOINDIACENTRAL:20220512T084702Z:d0019094-b904-4230-884e-2d7751a5e72e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:44:00 GMT" + "Thu, 12 May 2022 08:47:01 GMT" ], "Content-Length": [ "21" @@ -1432,19 +1432,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1464,22 +1464,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11916" ], "x-ms-request-id": [ - "9300ac2c-f3ef-4135-bda1-9e3910cd5b43" + "20949828-2162-4e55-bf89-1235614980c5" ], "x-ms-correlation-request-id": [ - "9300ac2c-f3ef-4135-bda1-9e3910cd5b43" + "20949828-2162-4e55-bf89-1235614980c5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174431Z:9300ac2c-f3ef-4135-bda1-9e3910cd5b43" + "JIOINDIACENTRAL:20220512T084732Z:20949828-2162-4e55-bf89-1235614980c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:44:30 GMT" + "Thu, 12 May 2022 08:47:31 GMT" ], "Content-Length": [ "21" @@ -1492,19 +1492,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1524,22 +1524,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11915" ], "x-ms-request-id": [ - "44c766d9-d92b-4fbc-bf8c-5c47c39ad3f9" + "870364e1-3e04-4109-b134-0883602cd973" ], "x-ms-correlation-request-id": [ - "44c766d9-d92b-4fbc-bf8c-5c47c39ad3f9" + "870364e1-3e04-4109-b134-0883602cd973" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174501Z:44c766d9-d92b-4fbc-bf8c-5c47c39ad3f9" + "JIOINDIACENTRAL:20220512T084802Z:870364e1-3e04-4109-b134-0883602cd973" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:45:01 GMT" + "Thu, 12 May 2022 08:48:02 GMT" ], "Content-Length": [ "21" @@ -1552,19 +1552,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1584,22 +1584,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11914" ], "x-ms-request-id": [ - "d705a457-38cc-4dd8-9cbf-45c3dbfc55a3" + "effaa1b5-9cc8-4a68-9c89-df4f975f7168" ], "x-ms-correlation-request-id": [ - "d705a457-38cc-4dd8-9cbf-45c3dbfc55a3" + "effaa1b5-9cc8-4a68-9c89-df4f975f7168" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174531Z:d705a457-38cc-4dd8-9cbf-45c3dbfc55a3" + "JIOINDIACENTRAL:20220512T084833Z:effaa1b5-9cc8-4a68-9c89-df4f975f7168" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:45:31 GMT" + "Thu, 12 May 2022 08:48:32 GMT" ], "Content-Length": [ "21" @@ -1612,19 +1612,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1644,22 +1644,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11913" ], "x-ms-request-id": [ - "0e33b991-ba69-470a-a9bf-48585955fb1f" + "3b16d027-eb9c-47c9-8a0a-159f7bb28bd0" ], "x-ms-correlation-request-id": [ - "0e33b991-ba69-470a-a9bf-48585955fb1f" + "3b16d027-eb9c-47c9-8a0a-159f7bb28bd0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174601Z:0e33b991-ba69-470a-a9bf-48585955fb1f" + "JIOINDIACENTRAL:20220512T084904Z:3b16d027-eb9c-47c9-8a0a-159f7bb28bd0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:46:01 GMT" + "Thu, 12 May 2022 08:49:03 GMT" ], "Content-Length": [ "21" @@ -1672,19 +1672,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1704,22 +1704,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11912" ], "x-ms-request-id": [ - "b4cc16b9-c089-4951-b029-6424367c1904" + "e34c4ab0-34be-45dd-9b38-8be37da63789" ], "x-ms-correlation-request-id": [ - "b4cc16b9-c089-4951-b029-6424367c1904" + "e34c4ab0-34be-45dd-9b38-8be37da63789" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174632Z:b4cc16b9-c089-4951-b029-6424367c1904" + "JIOINDIACENTRAL:20220512T084934Z:e34c4ab0-34be-45dd-9b38-8be37da63789" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:46:31 GMT" + "Thu, 12 May 2022 08:49:33 GMT" ], "Content-Length": [ "21" @@ -1732,19 +1732,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1764,22 +1764,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11911" ], "x-ms-request-id": [ - "4f34633a-fb26-40a1-826a-0bdc3ff9f009" + "d2210aec-3043-4356-bf32-dc9f91409ff4" ], "x-ms-correlation-request-id": [ - "4f34633a-fb26-40a1-826a-0bdc3ff9f009" + "d2210aec-3043-4356-bf32-dc9f91409ff4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174702Z:4f34633a-fb26-40a1-826a-0bdc3ff9f009" + "JIOINDIACENTRAL:20220512T085004Z:d2210aec-3043-4356-bf32-dc9f91409ff4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:47:02 GMT" + "Thu, 12 May 2022 08:50:04 GMT" ], "Content-Length": [ "21" @@ -1792,19 +1792,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1824,22 +1824,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11910" ], "x-ms-request-id": [ - "1ffdd056-991f-46e4-b3a1-239291d22482" + "8590da4e-8b91-4a17-bcfe-8300de1283b7" ], "x-ms-correlation-request-id": [ - "1ffdd056-991f-46e4-b3a1-239291d22482" + "8590da4e-8b91-4a17-bcfe-8300de1283b7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174732Z:1ffdd056-991f-46e4-b3a1-239291d22482" + "JIOINDIACENTRAL:20220512T085034Z:8590da4e-8b91-4a17-bcfe-8300de1283b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:47:31 GMT" + "Thu, 12 May 2022 08:50:34 GMT" ], "Content-Length": [ "21" @@ -1852,19 +1852,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1884,22 +1884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11909" ], "x-ms-request-id": [ - "7c5ee267-25ac-4293-b47d-feff4b63c48e" + "96005219-d58d-4d69-b126-f81135a85360" ], "x-ms-correlation-request-id": [ - "7c5ee267-25ac-4293-b47d-feff4b63c48e" + "96005219-d58d-4d69-b126-f81135a85360" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174803Z:7c5ee267-25ac-4293-b47d-feff4b63c48e" + "JIOINDIACENTRAL:20220512T085105Z:96005219-d58d-4d69-b126-f81135a85360" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:48:03 GMT" + "Thu, 12 May 2022 08:51:04 GMT" ], "Content-Length": [ "22" @@ -1912,19 +1912,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/51768f8d-ecf1-4cf7-8636-ca5be9bb0589?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzUxNzY4ZjhkLWVjZjEtNGNmNy04NjM2LWNhNWJlOWJiMDU4OT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/94290f67-a00e-4643-abbd-d72bd9a04754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzk0MjkwZjY3LWEwMGUtNDY0My1hYmJkLWQ3MmJkOWEwNDc1ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1938,28 +1938,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "73be92e3-ffb7-43ce-b942-4e3387a18129" + "92c69194-c84d-4f7a-8b2d-746d2b6f0071" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11908" ], "x-ms-request-id": [ - "89b05df3-8db5-49c0-9513-496f539eff43" + "a88ea37d-23fd-46aa-8373-6c07d1657770" ], "x-ms-correlation-request-id": [ - "89b05df3-8db5-49c0-9513-496f539eff43" + "a88ea37d-23fd-46aa-8373-6c07d1657770" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174803Z:89b05df3-8db5-49c0-9513-496f539eff43" + "JIOINDIACENTRAL:20220512T085105Z:a88ea37d-23fd-46aa-8373-6c07d1657770" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:48:03 GMT" + "Thu, 12 May 2022 08:51:04 GMT" ], "Content-Length": [ "0" @@ -1975,16 +1975,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "035184f5-aa51-4834-9835-c0d494f4f2ca" + "b435c5a7-d3d3-4da9-bb42-1c52553e0ec8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2001,16 +2001,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "bc03fafe-8d85-42d1-92cb-b7c4b27f58f2" + "71e34a4d-7caf-4fda-aa6a-22da8a397eff" ], "x-ms-correlation-request-id": [ - "bc03fafe-8d85-42d1-92cb-b7c4b27f58f2" + "71e34a4d-7caf-4fda-aa6a-22da8a397eff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174809Z:bc03fafe-8d85-42d1-92cb-b7c4b27f58f2" + "JIOINDIACENTRAL:20220512T085112Z:71e34a4d-7caf-4fda-aa6a-22da8a397eff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,7 +2019,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:48:09 GMT" + "Thu, 12 May 2022 08:51:11 GMT" ], "Expires": [ "-1" @@ -2038,10 +2038,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2058,16 +2058,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11907" ], "x-ms-request-id": [ - "75700f9f-c290-4443-8ddf-757df2f6b349" + "9ac9225c-37dd-43e3-8d42-ebe915869473" ], "x-ms-correlation-request-id": [ - "75700f9f-c290-4443-8ddf-757df2f6b349" + "9ac9225c-37dd-43e3-8d42-ebe915869473" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174824Z:75700f9f-c290-4443-8ddf-757df2f6b349" + "JIOINDIACENTRAL:20220512T085127Z:9ac9225c-37dd-43e3-8d42-ebe915869473" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2076,7 +2076,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:48:24 GMT" + "Thu, 12 May 2022 08:51:27 GMT" ], "Expires": [ "-1" @@ -2095,10 +2095,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2115,16 +2115,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11906" ], "x-ms-request-id": [ - "6d267178-3757-4a5e-a113-3940eaac70f3" + "dcb0158e-5792-4617-9447-09f95930663d" ], "x-ms-correlation-request-id": [ - "6d267178-3757-4a5e-a113-3940eaac70f3" + "dcb0158e-5792-4617-9447-09f95930663d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174840Z:6d267178-3757-4a5e-a113-3940eaac70f3" + "JIOINDIACENTRAL:20220512T085143Z:dcb0158e-5792-4617-9447-09f95930663d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2133,7 +2133,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:48:39 GMT" + "Thu, 12 May 2022 08:51:43 GMT" ], "Expires": [ "-1" @@ -2152,10 +2152,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2172,16 +2172,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11905" ], "x-ms-request-id": [ - "4cf122c7-b1bb-4889-bba0-88bcd3461632" + "2b038170-d8f4-4ec5-a5e0-ea1510af5abb" ], "x-ms-correlation-request-id": [ - "4cf122c7-b1bb-4889-bba0-88bcd3461632" + "2b038170-d8f4-4ec5-a5e0-ea1510af5abb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174855Z:4cf122c7-b1bb-4889-bba0-88bcd3461632" + "JIOINDIACENTRAL:20220512T085158Z:2b038170-d8f4-4ec5-a5e0-ea1510af5abb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2190,7 +2190,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:48:55 GMT" + "Thu, 12 May 2022 08:51:58 GMT" ], "Expires": [ "-1" @@ -2209,10 +2209,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2229,16 +2229,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11904" ], "x-ms-request-id": [ - "a3f676ea-f184-4489-963d-f63a717aafdd" + "9384828e-55ee-4bee-8a1c-76b6c3abdcdf" ], "x-ms-correlation-request-id": [ - "a3f676ea-f184-4489-963d-f63a717aafdd" + "9384828e-55ee-4bee-8a1c-76b6c3abdcdf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174911Z:a3f676ea-f184-4489-963d-f63a717aafdd" + "JIOINDIACENTRAL:20220512T085214Z:9384828e-55ee-4bee-8a1c-76b6c3abdcdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2247,7 +2247,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:49:11 GMT" + "Thu, 12 May 2022 08:52:13 GMT" ], "Expires": [ "-1" @@ -2266,10 +2266,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2280,16 +2280,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11903" ], "x-ms-request-id": [ - "5b2db05e-cc0c-42a5-9ded-dc368e41cdc6" + "e1b25f82-bd62-4e7b-9945-fbe12150151c" ], "x-ms-correlation-request-id": [ - "5b2db05e-cc0c-42a5-9ded-dc368e41cdc6" + "e1b25f82-bd62-4e7b-9945-fbe12150151c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174926Z:5b2db05e-cc0c-42a5-9ded-dc368e41cdc6" + "JIOINDIACENTRAL:20220512T085229Z:e1b25f82-bd62-4e7b-9945-fbe12150151c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2298,7 +2298,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:49:26 GMT" + "Thu, 12 May 2022 08:52:29 GMT" ], "Expires": [ "-1" @@ -2317,10 +2317,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ] }, "ResponseHeaders": { @@ -2331,16 +2331,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11902" ], "x-ms-request-id": [ - "7820869e-a424-4e25-9744-86776d2def1d" + "0b195ef4-f371-4e2e-86ee-7661ae1fb409" ], "x-ms-correlation-request-id": [ - "7820869e-a424-4e25-9744-86776d2def1d" + "0b195ef4-f371-4e2e-86ee-7661ae1fb409" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T174927Z:7820869e-a424-4e25-9744-86776d2def1d" + "JIOINDIACENTRAL:20220512T085230Z:0b195ef4-f371-4e2e-86ee-7661ae1fb409" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2349,7 +2349,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:49:26 GMT" + "Thu, 12 May 2022 08:52:29 GMT" ], "Expires": [ "-1" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestCosmosDBLocations.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestCosmosDBLocations.json index 4ca6ec1cec23..f653d18393e9 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestCosmosDBLocations.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestCosmosDBLocations.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd3edf7c-a0fd-46b4-a4dd-d27c438000a9" + "a0dacbed-1f81-48d9-8e07-91049f6831d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -36,50 +36,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11964" ], "x-ms-request-id": [ - "fc81229d-83ee-419e-8ef7-e7ca8a176d85" + "fc4c103c-5b91-407c-a5d2-c0bbe5f3c270" ], "x-ms-correlation-request-id": [ - "fc81229d-83ee-419e-8ef7-e7ca8a176d85" + "fc4c103c-5b91-407c-a5d2-c0bbe5f3c270" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183308Z:fc81229d-83ee-419e-8ef7-e7ca8a176d85" + "JIOINDIACENTRAL:20220512T093602Z:fc4c103c-5b91-407c-a5d2-c0bbe5f3c270" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:33:07 GMT" + "Thu, 12 May 2022 09:36:01 GMT" ], "Content-Length": [ - "14220" + "14233" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/brazilsoutheast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Brazil Southeast\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Central US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/australiasoutheast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Australia Southeast\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/canadacentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Canada Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralindia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Central India\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southeastasia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": true,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/switzerlandnorth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Switzerland North\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"UAE North\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastasia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"East Asia\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/ukwest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"UK West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/switzerlandwest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Switzerland West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westeurope/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West Europe\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"East US 2\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"East US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus3/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West US 3\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/australiaeast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Australia East\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/brazilsouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Brazil South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": true,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/germanywestcentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Germany West Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/francecentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"France Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/japaneast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Japan East\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/japanwest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Japan West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/koreasouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Korea South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/germanynorth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Germany North\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/francesouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"France South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/australiacentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Australia Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"South Central US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southafricanorth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"South Africa North\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/koreacentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Korea Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southindia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"South India\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/norwayeast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Norway East\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/canadaeast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Canada East\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/northcentralus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"North Central US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/norwaywest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Norway West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/northeurope/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"North Europe\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southafricawest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"South Africa West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/australiacentral2/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Australia Central 2\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaecentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"UAE Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uksouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"UK South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westcentralus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West Central US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westindia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West India\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus2/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West US 2\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/jioindiawest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Jio India West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/jioindiacentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Jio India Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/swedencentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Sweden Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/swedensouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Sweden South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/qatarcentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Qatar Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": true,\r\n \"backupStorageRedundancies\": [\r\n \"Local\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/brazilsoutheast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Brazil Southeast\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Central US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/australiasoutheast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Australia Southeast\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/canadacentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Canada Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralindia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Central India\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southeastasia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Southeast Asia\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": true,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/switzerlandnorth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Switzerland North\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"UAE North\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastasia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"East Asia\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/ukwest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"UK West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/switzerlandwest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Switzerland West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westeurope/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West Europe\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"East US 2\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"East US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus3/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West US 3\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/australiaeast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Australia East\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/brazilsouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Brazil South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": true,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/germanywestcentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Germany West Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/francecentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"France Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/japaneast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Japan East\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/japanwest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Japan West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/koreasouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Korea South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/germanynorth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Germany North\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/francesouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"France South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/australiacentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Australia Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"South Central US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southafricanorth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"South Africa North\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/koreacentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Korea Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southindia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"South India\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/norwayeast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Norway East\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/canadaeast/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Canada East\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/northcentralus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"North Central US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/norwaywest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Norway West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/northeurope/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"North Europe\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southafricawest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"South Africa West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/australiacentral2/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Australia Central 2\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaecentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"UAE Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uksouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"UK South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westcentralus/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West Central US\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westindia/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West India\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus2/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"West US 2\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Zone\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/jioindiawest/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Jio India West\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/jioindiacentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Jio India Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/swedencentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Sweden Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/swedensouth/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Sweden South\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": false,\r\n \"isResidencyRestricted\": false,\r\n \"backupStorageRedundancies\": [\r\n \"Geo\",\r\n \"Local\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptionId/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/qatarcentral/\",\r\n \"type\": \"Microsoft.DocumentDB/locations\",\r\n \"name\": \"Qatar Central\",\r\n \"properties\": {\r\n \"supportsAvailabilityZone\": true,\r\n \"isResidencyRestricted\": true,\r\n \"backupStorageRedundancies\": [\r\n \"Local\",\r\n \"Zone\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "674fe6bf-a3eb-47d2-9969-dec71d7b3b8b" + "4a833b55-1863-4f44-8db3-dbdb775cc794" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -99,22 +99,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "b54c79ca-d329-460e-9a97-a45de1072b88" + "119c3c53-85fb-453d-b403-30f556a83ac5" ], "x-ms-correlation-request-id": [ - "b54c79ca-d329-460e-9a97-a45de1072b88" + "119c3c53-85fb-453d-b403-30f556a83ac5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T183310Z:b54c79ca-d329-460e-9a97-a45de1072b88" + "JIOINDIACENTRAL:20220512T093605Z:119c3c53-85fb-453d-b403-30f556a83ac5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 18:33:09 GMT" + "Thu, 12 May 2022 09:36:04 GMT" ], "Content-Length": [ "294" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestPrivateEndpoint.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestPrivateEndpoint.json index 0b32049ff21e..c373f25b462f 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestPrivateEndpoint.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestPrivateEndpoint.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2357ee4d-b692-4637-865b-84ed426b6733" + "964ff5d0-3d7f-4553-9c12-00f93be17986" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "b36824c5-a874-4a2e-9316-e97ef4ac5ffa" + "65afa5c1-ab4f-41c6-9900-b77af51f3e65" ], "x-ms-correlation-request-id": [ - "b36824c5-a874-4a2e-9316-e97ef4ac5ffa" + "65afa5c1-ab4f-41c6-9900-b77af51f3e65" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T172423Z:b36824c5-a874-4a2e-9316-e97ef4ac5ffa" + "JIOINDIACENTRAL:20220512T082723Z:65afa5c1-ab4f-41c6-9900-b77af51f3e65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:24:22 GMT" + "Thu, 12 May 2022 08:27:23 GMT" ], "Content-Length": [ "204" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDc/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d8cad5c-3b06-4110-864d-29ecab3b3aec" + "b6009752-2734-4453-86f9-bfb19603f654" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "2d4138ed-57f5-49da-a1b5-cc69a13719ea" + "93b354dd-e654-426c-ab18-291f45db023a" ], "x-ms-correlation-request-id": [ - "2d4138ed-57f5-49da-a1b5-cc69a13719ea" + "93b354dd-e654-426c-ab18-291f45db023a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172424Z:2d4138ed-57f5-49da-a1b5-cc69a13719ea" + "JIOINDIACENTRAL:20220512T082725Z:93b354dd-e654-426c-ab18-291f45db023a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:24:24 GMT" + "Thu, 12 May 2022 08:27:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDc/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d8cad5c-3b06-4110-864d-29ecab3b3aec" + "b6009752-2734-4453-86f9-bfb19603f654" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "bd10f33f-1736-46d8-a33c-41cce908fc24" + "eaec8c37-1e56-4592-bf3d-482ca68c4d85" ], "x-ms-correlation-request-id": [ - "bd10f33f-1736-46d8-a33c-41cce908fc24" + "eaec8c37-1e56-4592-bf3d-482ca68c4d85" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172638Z:bd10f33f-1736-46d8-a33c-41cce908fc24" + "JIOINDIACENTRAL:20220512T082915Z:eaec8c37-1e56-4592-bf3d-482ca68c4d85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:38 GMT" + "Thu, 12 May 2022 08:29:14 GMT" ], "Content-Length": [ "2265" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"name\": \"db947\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:25:58.2738579Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db947.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"9c51d8e4-9881-4b8d-b012-d23c757bdd57\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"name\": \"db947\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:29:06.7720155Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db947.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"5bc1df3d-2ffa-4c6e-b4fd-8880b4c4a55c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDc/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9d69781-54ea-44ad-b1e6-bb7ecdd38744" + "d5e23377-e800-45c5-a8a0-054f90523f2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "af118419-8b3a-49f8-812d-c362bd2fca69" + "97d56d64-c48d-4906-90c5-cd8938de9b46" ], "x-ms-correlation-request-id": [ - "af118419-8b3a-49f8-812d-c362bd2fca69" + "97d56d64-c48d-4906-90c5-cd8938de9b46" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172639Z:af118419-8b3a-49f8-812d-c362bd2fca69" + "CENTRALINDIA:20220512T082916Z:97d56d64-c48d-4906-90c5-cd8938de9b46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:38 GMT" + "Thu, 12 May 2022 08:29:15 GMT" ], "Content-Length": [ "2265" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"name\": \"db947\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:25:58.2738579Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db947.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"9c51d8e4-9881-4b8d-b012-d23c757bdd57\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"name\": \"db947\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:29:06.7720155Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db947.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"5bc1df3d-2ffa-4c6e-b4fd-8880b4c4a55c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://db947-eastus2.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDc/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d8cad5c-3b06-4110-864d-29ecab3b3aec" + "b6009752-2734-4453-86f9-bfb19603f654" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/operationResults/0f8ec9d9-dadf-4659-b017-2ac9075ef61a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/operationResults/34bd2af3-7862-49e3-82b0-d3649b95ab06?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "0f8ec9d9-dadf-4659-b017-2ac9075ef61a" + "34bd2af3-7862-49e3-82b0-d3649b95ab06" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0f8ec9d9-dadf-4659-b017-2ac9075ef61a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34bd2af3-7862-49e3-82b0-d3649b95ab06?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "f6c34faf-88d9-410d-8bed-3bd452660a0b" + "3fa1b0b7-bcf1-43cc-8272-e71b22e1f957" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172437Z:f6c34faf-88d9-410d-8bed-3bd452660a0b" + "JIOINDIACENTRAL:20220512T082741Z:3fa1b0b7-bcf1-43cc-8272-e71b22e1f957" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:24:37 GMT" + "Thu, 12 May 2022 08:27:41 GMT" ], "Content-Length": [ "1983" @@ -321,23 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"name\": \"db947\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:24:34.4364688Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"9c51d8e4-9881-4b8d-b012-d23c757bdd57\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"name\": \"db947\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T08:27:38.4201418Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": true,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"5bc1df3d-2ffa-4c6e-b4fd-8880b4c4a55c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"db947-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0f8ec9d9-dadf-4659-b017-2ac9075ef61a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzBmOGVjOWQ5LWRhZGYtNDY1OS1iMDE3LTJhYzkwNzVlZjYxYT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34bd2af3-7862-49e3-82b0-d3649b95ab06?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzM0YmQyYWYzLTc4NjItNDllMy04MmIwLWQzNjQ5Yjk1YWIwNj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d8cad5c-3b06-4110-864d-29ecab3b3aec" + "b6009752-2734-4453-86f9-bfb19603f654" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -360,19 +360,19 @@ "11998" ], "x-ms-request-id": [ - "93c3f553-5357-4297-88cd-91b19b485851" + "6571d41c-65c1-4c43-9669-92df4e265c00" ], "x-ms-correlation-request-id": [ - "93c3f553-5357-4297-88cd-91b19b485851" + "6571d41c-65c1-4c43-9669-92df4e265c00" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172507Z:93c3f553-5357-4297-88cd-91b19b485851" + "JIOINDIACENTRAL:20220512T082812Z:6571d41c-65c1-4c43-9669-92df4e265c00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:25:06 GMT" + "Thu, 12 May 2022 08:28:12 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0f8ec9d9-dadf-4659-b017-2ac9075ef61a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzBmOGVjOWQ5LWRhZGYtNDY1OS1iMDE3LTJhYzkwNzVlZjYxYT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34bd2af3-7862-49e3-82b0-d3649b95ab06?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzM0YmQyYWYzLTc4NjItNDllMy04MmIwLWQzNjQ5Yjk1YWIwNj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d8cad5c-3b06-4110-864d-29ecab3b3aec" + "b6009752-2734-4453-86f9-bfb19603f654" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -420,19 +420,19 @@ "11997" ], "x-ms-request-id": [ - "620b8dd5-6376-4e38-9c82-c6d394a50731" + "be56a8ec-c27d-4e8e-a537-fc65df8fde16" ], "x-ms-correlation-request-id": [ - "620b8dd5-6376-4e38-9c82-c6d394a50731" + "be56a8ec-c27d-4e8e-a537-fc65df8fde16" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172538Z:620b8dd5-6376-4e38-9c82-c6d394a50731" + "JIOINDIACENTRAL:20220512T082843Z:be56a8ec-c27d-4e8e-a537-fc65df8fde16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:25:37 GMT" + "Thu, 12 May 2022 08:28:43 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0f8ec9d9-dadf-4659-b017-2ac9075ef61a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzBmOGVjOWQ5LWRhZGYtNDY1OS1iMDE3LTJhYzkwNzVlZjYxYT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/34bd2af3-7862-49e3-82b0-d3649b95ab06?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzM0YmQyYWYzLTc4NjItNDllMy04MmIwLWQzNjQ5Yjk1YWIwNj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d8cad5c-3b06-4110-864d-29ecab3b3aec" + "b6009752-2734-4453-86f9-bfb19603f654" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -480,79 +480,19 @@ "11996" ], "x-ms-request-id": [ - "a78bb1f3-77bc-48d5-bc56-964c99c7c948" + "f78d4c14-f509-4cfc-8974-507e5cd152b5" ], "x-ms-correlation-request-id": [ - "a78bb1f3-77bc-48d5-bc56-964c99c7c948" + "f78d4c14-f509-4cfc-8974-507e5cd152b5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172608Z:a78bb1f3-77bc-48d5-bc56-964c99c7c948" + "JIOINDIACENTRAL:20220512T082914Z:f78d4c14-f509-4cfc-8974-507e5cd152b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:08 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/0f8ec9d9-dadf-4659-b017-2ac9075ef61a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzBmOGVjOWQ5LWRhZGYtNDY1OS1iMDE3LTJhYzkwNzVlZjYxYT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d8cad5c-3b06-4110-864d-29ecab3b3aec" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "e691d7f4-0dc3-4852-b306-64bdd5b4ae82" - ], - "x-ms-correlation-request-id": [ - "e691d7f4-0dc3-4852-b306-64bdd5b4ae82" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172638Z:e691d7f4-0dc3-4852-b306-64bdd5b4ae82" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:26:38 GMT" + "Thu, 12 May 2022 08:29:13 GMT" ], "Content-Length": [ "22" @@ -565,22 +505,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd5341cd-d319-4481-9576-6f9c890c290b" + "b703b1c1-ddd9-4a68-a5f2-f2b7c2603cb5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -594,13 +534,13 @@ "gateway" ], "x-ms-request-id": [ - "71a64f9c-bce4-49cf-a393-53f351eeb624" + "2415cd48-6a3e-44be-895e-1152f3313e5a" ], "x-ms-correlation-request-id": [ - "71a64f9c-bce4-49cf-a393-53f351eeb624" + "2415cd48-6a3e-44be-895e-1152f3313e5a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172639Z:71a64f9c-bce4-49cf-a393-53f351eeb624" + "CENTRALINDIA:20220512T082916Z:2415cd48-6a3e-44be-895e-1152f3313e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,7 +549,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:39 GMT" + "Thu, 12 May 2022 08:29:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -625,19 +565,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd5341cd-d319-4481-9576-6f9c890c290b" + "b703b1c1-ddd9-4a68-a5f2-f2b7c2603cb5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -648,16 +588,16 @@ "no-cache" ], "ETag": [ - "W/\"e1227591-e3c9-4dbc-b692-3820b6a8c3df\"" + "W/\"15f5b26e-3ef1-484d-8af9-af39282fc9dd\"" ], "x-ms-request-id": [ - "39762999-fef9-4741-aa69-123e445e7e8a" + "f61ccda0-6c81-491d-b936-68182b906aa7" ], "x-ms-correlation-request-id": [ - "4162e91c-291a-4333-973a-b73fa6906e21" + "110859b6-deee-4930-b5e1-44f613d6d96b" ], "x-ms-arm-service-request-id": [ - "f3bccd27-db47-46f0-bd1c-4fb5bd4871ab" + "afa6029c-01df-4f5b-91b7-fe79d68bed98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -667,19 +607,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172650Z:4162e91c-291a-4333-973a-b73fa6906e21" + "CENTRALINDIA:20220512T082929Z:110859b6-deee-4930-b5e1-44f613d6d96b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:50 GMT" + "Thu, 12 May 2022 08:29:29 GMT" ], "Content-Length": [ - "1284" + "1511" ], "Content-Type": [ "application/json; charset=utf-8" @@ -688,26 +628,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"MyVnetPE\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE\",\r\n \"etag\": \"W/\\\"e1227591-e3c9-4dbc-b692-3820b6a8c3df\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3dc675e-e4ff-46a6-8fe9-e2b434979266\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"peSubnet\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\",\r\n \"etag\": \"W/\\\"e1227591-e3c9-4dbc-b692-3820b6a8c3df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\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}", + "ResponseBody": "{\r\n \"name\": \"MyVnetPE\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE\",\r\n \"etag\": \"W/\\\"15f5b26e-3ef1-484d-8af9-af39282fc9dd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"122320ad-990d-4252-8bac-e5ed57362aa8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"peSubnet\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\",\r\n \"etag\": \"W/\\\"15f5b26e-3ef1-484d-8af9-af39282fc9dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg2\"\r\n },\r\n \"serviceEndpoints\": [],\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd5341cd-d319-4481-9576-6f9c890c290b" + "b703b1c1-ddd9-4a68-a5f2-f2b7c2603cb5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -718,16 +658,16 @@ "no-cache" ], "ETag": [ - "W/\"e1227591-e3c9-4dbc-b692-3820b6a8c3df\"" + "W/\"15f5b26e-3ef1-484d-8af9-af39282fc9dd\"" ], "x-ms-request-id": [ - "be8b6d00-7aab-4c83-8cfd-310bcbe2dedd" + "e6e75e3e-8c66-401d-ac1a-063020aecef9" ], "x-ms-correlation-request-id": [ - "179ca688-df5d-4afa-9c5e-55e6bacd2675" + "54c938b3-7b34-4087-a9de-e86b19672cd2" ], "x-ms-arm-service-request-id": [ - "cf60b1a8-8520-46b7-9d1b-bed1dff71b5a" + "31e5619b-cb34-4dda-a338-74dadc5ba19f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -737,19 +677,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172650Z:179ca688-df5d-4afa-9c5e-55e6bacd2675" + "CENTRALINDIA:20220512T082930Z:54c938b3-7b34-4087-a9de-e86b19672cd2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:50 GMT" + "Thu, 12 May 2022 08:29:30 GMT" ], "Content-Length": [ - "1284" + "1511" ], "Content-Type": [ "application/json; charset=utf-8" @@ -758,26 +698,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"MyVnetPE\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE\",\r\n \"etag\": \"W/\\\"e1227591-e3c9-4dbc-b692-3820b6a8c3df\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3dc675e-e4ff-46a6-8fe9-e2b434979266\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"peSubnet\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\",\r\n \"etag\": \"W/\\\"e1227591-e3c9-4dbc-b692-3820b6a8c3df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\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}", + "ResponseBody": "{\r\n \"name\": \"MyVnetPE\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE\",\r\n \"etag\": \"W/\\\"15f5b26e-3ef1-484d-8af9-af39282fc9dd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"122320ad-990d-4252-8bac-e5ed57362aa8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"peSubnet\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\",\r\n \"etag\": \"W/\\\"15f5b26e-3ef1-484d-8af9-af39282fc9dd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg2\"\r\n },\r\n \"serviceEndpoints\": [],\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"peSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dd5341cd-d319-4481-9576-6f9c890c290b" + "b703b1c1-ddd9-4a68-a5f2-f2b7c2603cb5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -797,19 +737,19 @@ "3" ], "x-ms-request-id": [ - "81d983f0-dbe7-4a7d-b52e-1447cf636324" + "3dfbe6a5-217f-4882-a71d-79a008599c76" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/81d983f0-dbe7-4a7d-b52e-1447cf636324?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/3dfbe6a5-217f-4882-a71d-79a008599c76?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "afd107b5-0d53-4911-a1fc-bda7bd04e710" + "32a428cf-5a80-4e30-a54c-083937a59152" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "5d89a5ce-c7ff-4c71-a24c-03c5983f8f8b" + "114f0ebb-2d4d-40ff-a59e-421766dab330" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -819,16 +759,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172646Z:afd107b5-0d53-4911-a1fc-bda7bd04e710" + "CENTRALINDIA:20220512T082925Z:32a428cf-5a80-4e30-a54c-083937a59152" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:46 GMT" + "Thu, 12 May 2022 08:29:24 GMT" ], "Content-Length": [ "1282" @@ -840,23 +780,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"MyVnetPE\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE\",\r\n \"etag\": \"W/\\\"6d820bf6-87eb-4027-85ea-b580e7666dfd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a3dc675e-e4ff-46a6-8fe9-e2b434979266\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"peSubnet\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\",\r\n \"etag\": \"W/\\\"6d820bf6-87eb-4027-85ea-b580e7666dfd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\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}", + "ResponseBody": "{\r\n \"name\": \"MyVnetPE\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE\",\r\n \"etag\": \"W/\\\"95ceadf2-7769-4ea4-af34-7a896b0f431a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"122320ad-990d-4252-8bac-e5ed57362aa8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"peSubnet\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\",\r\n \"etag\": \"W/\\\"95ceadf2-7769-4ea4-af34-7a896b0f431a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/81d983f0-dbe7-4a7d-b52e-1447cf636324?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzgxZDk4M2YwLWRiZTctNGE3ZC1iNTJlLTE0NDdjZjYzNjMyND9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/3dfbe6a5-217f-4882-a71d-79a008599c76?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzNkZmJlNmE1LTIxN2YtNDg4Mi1hNzFkLTc5YTAwODU5OWM3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd5341cd-d319-4481-9576-6f9c890c290b" + "b703b1c1-ddd9-4a68-a5f2-f2b7c2603cb5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -867,13 +807,13 @@ "no-cache" ], "x-ms-request-id": [ - "51dda268-ec12-4b9a-b35b-d7abc22938b9" + "3a00ac95-524c-46ab-9aa1-dda27bcda2f9" ], "x-ms-correlation-request-id": [ - "4988e097-017b-4101-9853-c4db6d312758" + "105c4387-e9c6-44fe-92d5-fb736a786766" ], "x-ms-arm-service-request-id": [ - "b9feb286-def0-47a5-913a-6f581d6f68a8" + "e0d21069-87f0-4338-8064-3d3316e277ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -883,16 +823,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172650Z:4988e097-017b-4101-9853-c4db6d312758" + "CENTRALINDIA:20220512T082929Z:105c4387-e9c6-44fe-92d5-fb736a786766" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:49 GMT" + "Thu, 12 May 2022 08:29:29 GMT" ], "Content-Length": [ "29" @@ -908,22 +848,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e570d07-65f8-402b-8be0-3b66ad307fb0" + "1099e592-317c-46f8-99c0-251a360a61a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -937,13 +877,13 @@ "gateway" ], "x-ms-request-id": [ - "ea4edcab-90de-4e13-83ca-7accf872ba70" + "0f5191f7-7cda-4b28-98b8-efd5d9cfff7d" ], "x-ms-correlation-request-id": [ - "ea4edcab-90de-4e13-83ca-7accf872ba70" + "0f5191f7-7cda-4b28-98b8-efd5d9cfff7d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172651Z:ea4edcab-90de-4e13-83ca-7accf872ba70" + "CENTRALINDIA:20220512T082930Z:0f5191f7-7cda-4b28-98b8-efd5d9cfff7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -952,7 +892,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:50 GMT" + "Thu, 12 May 2022 08:29:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -968,19 +908,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e570d07-65f8-402b-8be0-3b66ad307fb0" + "1099e592-317c-46f8-99c0-251a360a61a7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -991,16 +931,16 @@ "no-cache" ], "ETag": [ - "W/\"33ed126b-9350-41e2-bfe8-b4a1d85b7688\"" + "W/\"21a43087-a0cc-4f0a-bed7-45bbf785d964\"" ], "x-ms-request-id": [ - "0944b289-54d1-4e1a-9204-a274aa3403ca" + "978538e2-a094-4413-8f31-a88786290919" ], "x-ms-correlation-request-id": [ - "5126715d-fb39-4bbb-ad0a-66a18ea32330" + "2ebde3db-49b2-459c-ba81-3ecdef07732d" ], "x-ms-arm-service-request-id": [ - "dbe54e4b-808b-419a-bc56-70415f8aa331" + "1a8292a6-3e32-4097-9117-5d50e9a54cee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1010,16 +950,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11994" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172756Z:5126715d-fb39-4bbb-ad0a-66a18ea32330" + "CENTRALINDIA:20220512T083041Z:2ebde3db-49b2-459c-ba81-3ecdef07732d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:55 GMT" + "Thu, 12 May 2022 08:30:41 GMT" ], "Content-Length": [ "1994" @@ -1031,26 +971,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"mype\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\",\r\n \"etag\": \"W/\\\"33ed126b-9350-41e2-bfe8-b4a1d85b7688\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc67da1f-9f5c-4073-a396-1203a305ff87\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"plsConnection\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype/manualPrivateLinkServiceConnections/plsConnection\",\r\n \"etag\": \"W/\\\"33ed126b-9350-41e2-bfe8-b4a1d85b7688\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.6d579b0c-dfe3-41fb-b81b-9396887e9a45\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"mype\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\",\r\n \"etag\": \"W/\\\"21a43087-a0cc-4f0a-bed7-45bbf785d964\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"563e4c91-3c31-4b71-9158-03aee47b612d\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"plsConnection\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype/manualPrivateLinkServiceConnections/plsConnection\",\r\n \"etag\": \"W/\\\"21a43087-a0cc-4f0a-bed7-45bbf785d964\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.11286d1c-dc50-4bb9-ac8e-c4d16641a888\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e570d07-65f8-402b-8be0-3b66ad307fb0" + "1099e592-317c-46f8-99c0-251a360a61a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1061,16 +1001,16 @@ "no-cache" ], "ETag": [ - "W/\"33ed126b-9350-41e2-bfe8-b4a1d85b7688\"" + "W/\"21a43087-a0cc-4f0a-bed7-45bbf785d964\"" ], "x-ms-request-id": [ - "c0ffb51d-8762-4bf9-b24e-5e249a3024a5" + "daf60147-b6b2-4be0-a20c-18ee3df926a0" ], "x-ms-correlation-request-id": [ - "bfbe0337-8500-43e4-9376-b9871edab752" + "0380aa99-9119-44ff-b2db-24cef29237e9" ], "x-ms-arm-service-request-id": [ - "c7d3a2a2-a99f-47fb-b1b0-3f0e7deeb48c" + "874a4512-1eb9-4211-a279-d3332eca39aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1080,16 +1020,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11993" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172756Z:bfbe0337-8500-43e4-9376-b9871edab752" + "CENTRALINDIA:20220512T083042Z:0380aa99-9119-44ff-b2db-24cef29237e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:55 GMT" + "Thu, 12 May 2022 08:30:41 GMT" ], "Content-Length": [ "1994" @@ -1101,32 +1041,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"mype\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\",\r\n \"etag\": \"W/\\\"33ed126b-9350-41e2-bfe8-b4a1d85b7688\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc67da1f-9f5c-4073-a396-1203a305ff87\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"plsConnection\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype/manualPrivateLinkServiceConnections/plsConnection\",\r\n \"etag\": \"W/\\\"33ed126b-9350-41e2-bfe8-b4a1d85b7688\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.6d579b0c-dfe3-41fb-b81b-9396887e9a45\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"mype\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\",\r\n \"etag\": \"W/\\\"21a43087-a0cc-4f0a-bed7-45bbf785d964\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"563e4c91-3c31-4b71-9158-03aee47b612d\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"plsConnection\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype/manualPrivateLinkServiceConnections/plsConnection\",\r\n \"etag\": \"W/\\\"21a43087-a0cc-4f0a-bed7-45bbf785d964\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.11286d1c-dc50-4bb9-ac8e-c4d16641a888\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"peSubnet\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ]\r\n },\r\n \"name\": \"plsConnection\"\r\n }\r\n ],\r\n \"customDnsConfigs\": [],\r\n \"applicationSecurityGroups\": [],\r\n \"ipConfigurations\": []\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg2\",\r\n \"tags\": {}\r\n },\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"peSubnet\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ]\r\n },\r\n \"name\": \"plsConnection\"\r\n }\r\n ],\r\n \"customDnsConfigs\": [],\r\n \"applicationSecurityGroups\": [],\r\n \"ipConfigurations\": []\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3e570d07-65f8-402b-8be0-3b66ad307fb0" + "1099e592-317c-46f8-99c0-251a360a61a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1206" + "1524" ] }, "ResponseHeaders": { @@ -1140,19 +1080,19 @@ "10" ], "x-ms-request-id": [ - "52e0d195-b61b-4378-9cf1-1f51592ef538" + "76bac8e5-9199-4d5d-8732-9f85967c43eb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/52e0d195-b61b-4378-9cf1-1f51592ef538?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/76bac8e5-9199-4d5d-8732-9f85967c43eb?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "1ca0f2ce-a011-4d2c-bbe2-7f2310ddba68" + "f5eee03b-9d05-42e3-999c-26b8eb960b70" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "f9040fea-1fe3-4e59-b7ab-160792425017" + "74268bfb-0f73-4d8c-85e2-fffd2daa09c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1162,16 +1102,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172655Z:1ca0f2ce-a011-4d2c-bbe2-7f2310ddba68" + "CENTRALINDIA:20220512T082940Z:f5eee03b-9d05-42e3-999c-26b8eb960b70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:26:54 GMT" + "Thu, 12 May 2022 08:29:40 GMT" ], "Content-Length": [ "2010" @@ -1183,23 +1123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"mype\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\",\r\n \"etag\": \"W/\\\"bac0e871-b372-4770-b1d2-25cb0fa4d743\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dc67da1f-9f5c-4073-a396-1203a305ff87\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"plsConnection\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype/manualPrivateLinkServiceConnections/plsConnection\",\r\n \"etag\": \"W/\\\"bac0e871-b372-4770-b1d2-25cb0fa4d743\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Awaiting Approval\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.6d579b0c-dfe3-41fb-b81b-9396887e9a45\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"mype\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\",\r\n \"etag\": \"W/\\\"26924921-2e34-4487-9be0-0d20ed26ddcb\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"563e4c91-3c31-4b71-9158-03aee47b612d\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"plsConnection\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype/manualPrivateLinkServiceConnections/plsConnection\",\r\n \"etag\": \"W/\\\"26924921-2e34-4487-9be0-0d20ed26ddcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Awaiting Approval\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.11286d1c-dc50-4bb9-ac8e-c4d16641a888\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/52e0d195-b61b-4378-9cf1-1f51592ef538?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzUyZTBkMTk1LWI2MWItNDM3OC05Y2YxLTFmNTE1OTJlZjUzOD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/76bac8e5-9199-4d5d-8732-9f85967c43eb?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzc2YmFjOGU1LTkxOTktNGQ1ZC04NzMyLTlmODU5NjdjNDNlYj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e570d07-65f8-402b-8be0-3b66ad307fb0" + "1099e592-317c-46f8-99c0-251a360a61a7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1213,13 +1153,13 @@ "10" ], "x-ms-request-id": [ - "3a14ea52-0475-4d74-b132-8451889b32ec" + "582b9bfd-bfd1-42e0-abbc-ec9f3b34004e" ], "x-ms-correlation-request-id": [ - "ba4be050-ad5e-4114-986b-be3f8696e1d7" + "a9efad97-21b0-4fd0-8926-c542d76f625e" ], "x-ms-arm-service-request-id": [ - "262f202a-ed16-4ec7-b60e-fd7f8fd4a352" + "01b995dc-cc0f-46e5-a185-d25efe5fd875" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1229,16 +1169,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172705Z:ba4be050-ad5e-4114-986b-be3f8696e1d7" + "CENTRALINDIA:20220512T082950Z:a9efad97-21b0-4fd0-8926-c542d76f625e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:05 GMT" + "Thu, 12 May 2022 08:29:50 GMT" ], "Content-Length": [ "30" @@ -1254,19 +1194,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/52e0d195-b61b-4378-9cf1-1f51592ef538?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzUyZTBkMTk1LWI2MWItNDM3OC05Y2YxLTFmNTE1OTJlZjUzOD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/76bac8e5-9199-4d5d-8732-9f85967c43eb?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzc2YmFjOGU1LTkxOTktNGQ1ZC04NzMyLTlmODU5NjdjNDNlYj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e570d07-65f8-402b-8be0-3b66ad307fb0" + "1099e592-317c-46f8-99c0-251a360a61a7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1280,13 +1220,13 @@ "20" ], "x-ms-request-id": [ - "69b01542-4c94-447a-859d-ea0e76c9248a" + "0eed6fd8-ffe0-4c02-afd7-f7fc20f8f4dc" ], "x-ms-correlation-request-id": [ - "32f3dc4c-5f3b-4813-b17b-9659de92a31e" + "8d89b899-aa39-4d2d-b5c5-972a7cbe504d" ], "x-ms-arm-service-request-id": [ - "637e7723-a0d1-40b9-863a-1a1fa0743a84" + "0097c42f-09ca-401f-8f63-1cd03c9424a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1296,16 +1236,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172715Z:32f3dc4c-5f3b-4813-b17b-9659de92a31e" + "CENTRALINDIA:20220512T083000Z:8d89b899-aa39-4d2d-b5c5-972a7cbe504d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:14 GMT" + "Thu, 12 May 2022 08:29:59 GMT" ], "Content-Length": [ "30" @@ -1321,19 +1261,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/52e0d195-b61b-4378-9cf1-1f51592ef538?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzUyZTBkMTk1LWI2MWItNDM3OC05Y2YxLTFmNTE1OTJlZjUzOD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/76bac8e5-9199-4d5d-8732-9f85967c43eb?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzc2YmFjOGU1LTkxOTktNGQ1ZC04NzMyLTlmODU5NjdjNDNlYj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e570d07-65f8-402b-8be0-3b66ad307fb0" + "1099e592-317c-46f8-99c0-251a360a61a7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1347,13 +1287,13 @@ "20" ], "x-ms-request-id": [ - "63c903a4-f56a-4c19-8b51-185b8b3cab95" + "c3330e3d-8567-456e-a6b8-1e4ec92c493d" ], "x-ms-correlation-request-id": [ - "cf8e5b8d-551a-443e-84a3-ee2c4965d16a" + "c0db8c67-a327-4fdb-b4d5-ff082a7a1bcf" ], "x-ms-arm-service-request-id": [ - "ca5d1ce5-41f5-44ac-a453-261d80a94b22" + "6a3d4a3e-dedb-4950-a0e0-47d082afd980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1363,16 +1303,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172735Z:cf8e5b8d-551a-443e-84a3-ee2c4965d16a" + "CENTRALINDIA:20220512T083020Z:c0db8c67-a327-4fdb-b4d5-ff082a7a1bcf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:35 GMT" + "Thu, 12 May 2022 08:30:20 GMT" ], "Content-Length": [ "30" @@ -1388,19 +1328,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/52e0d195-b61b-4378-9cf1-1f51592ef538?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzUyZTBkMTk1LWI2MWItNDM3OC05Y2YxLTFmNTE1OTJlZjUzOD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/76bac8e5-9199-4d5d-8732-9f85967c43eb?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzc2YmFjOGU1LTkxOTktNGQ1ZC04NzMyLTlmODU5NjdjNDNlYj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e570d07-65f8-402b-8be0-3b66ad307fb0" + "1099e592-317c-46f8-99c0-251a360a61a7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -1411,13 +1351,13 @@ "no-cache" ], "x-ms-request-id": [ - "1419568d-8182-4cd8-b9c1-0a21b8d78acb" + "6d86e3bd-9f66-47b5-b288-82f29823581a" ], "x-ms-correlation-request-id": [ - "9d528f5a-0878-44ea-ae8e-58c9a6a9fcf6" + "926e9382-fee8-48b1-9b6d-e8a659f965e1" ], "x-ms-arm-service-request-id": [ - "6260b02b-33c7-4850-88e2-eaed0c74edac" + "3142553b-f3f0-4b7a-af94-2b443e2fd461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1427,16 +1367,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11995" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172756Z:9d528f5a-0878-44ea-ae8e-58c9a6a9fcf6" + "CENTRALINDIA:20220512T083041Z:926e9382-fee8-48b1-9b6d-e8a659f965e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:55 GMT" + "Thu, 12 May 2022 08:30:40 GMT" ], "Content-Length": [ "29" @@ -1458,16 +1398,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1342cafe-5c9e-40a3-9027-24bba8e30a87" + "b766e638-99be-4339-bf1a-ef0644019706" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1487,22 +1427,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "28178c27-642b-46da-aefb-d836192aef26" + "94d77048-d39f-4793-bae8-974460c460e6" ], "x-ms-correlation-request-id": [ - "28178c27-642b-46da-aefb-d836192aef26" + "94d77048-d39f-4793-bae8-974460c460e6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172757Z:28178c27-642b-46da-aefb-d836192aef26" + "JIOINDIACENTRAL:20220512T083046Z:94d77048-d39f-4793-bae8-974460c460e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:56 GMT" + "Thu, 12 May 2022 08:30:45 GMT" ], "Content-Length": [ "602" @@ -1521,16 +1461,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a53cde4b-1f4c-42ca-a885-5e3985c46cce" + "fa6696b3-d354-4eeb-ad9d-c6fd09da43c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1550,22 +1490,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "725c0afc-d154-4e76-bd44-1ea7da9b641f" + "9e5abb0b-a953-4495-af13-27159f4f53e7" ], "x-ms-correlation-request-id": [ - "725c0afc-d154-4e76-bd44-1ea7da9b641f" + "9e5abb0b-a953-4495-af13-27159f4f53e7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172759Z:725c0afc-d154-4e76-bd44-1ea7da9b641f" + "JIOINDIACENTRAL:20220512T083054Z:9e5abb0b-a953-4495-af13-27159f4f53e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:58 GMT" + "Thu, 12 May 2022 08:30:53 GMT" ], "Content-Length": [ "602" @@ -1584,16 +1524,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9949c31d-f8f4-4bc6-84de-beddca6e00d0" + "4801cb56-d223-4921-8dfa-a1dbff9f38ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1613,22 +1553,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "92c3bf0a-bf74-4004-9338-30fc09b2a6ac" + "19232e39-2d41-416d-8eaa-cbaadfc5680e" ], "x-ms-correlation-request-id": [ - "92c3bf0a-bf74-4004-9338-30fc09b2a6ac" + "19232e39-2d41-416d-8eaa-cbaadfc5680e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172800Z:92c3bf0a-bf74-4004-9338-30fc09b2a6ac" + "JIOINDIACENTRAL:20220512T083056Z:19232e39-2d41-416d-8eaa-cbaadfc5680e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:59 GMT" + "Thu, 12 May 2022 08:30:56 GMT" ], "Content-Length": [ "602" @@ -1647,16 +1587,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c334e5dc-c014-4d3f-9874-a59736649cf8" + "588a349b-335d-439c-9f6b-d5447b29a8d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1676,22 +1616,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "bdea0959-cfbb-4079-90d7-a30cd24a4594" + "7974890a-35a1-467b-8c4b-cc064186da92" ], "x-ms-correlation-request-id": [ - "bdea0959-cfbb-4079-90d7-a30cd24a4594" + "7974890a-35a1-467b-8c4b-cc064186da92" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172800Z:bdea0959-cfbb-4079-90d7-a30cd24a4594" + "JIOINDIACENTRAL:20220512T083059Z:7974890a-35a1-467b-8c4b-cc064186da92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:59 GMT" + "Thu, 12 May 2022 08:30:58 GMT" ], "Content-Length": [ "602" @@ -1710,16 +1650,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73c0ca41-dfab-479c-893d-287338d2d76c" + "2a960b63-c523-4cbf-a8e8-9244d17ccb4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1739,22 +1679,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "90c21643-e1cd-48b6-9d06-b957c96c9257" + "b4fe655c-8110-4a18-8ebb-fe69de3bb993" ], "x-ms-correlation-request-id": [ - "90c21643-e1cd-48b6-9d06-b957c96c9257" + "b4fe655c-8110-4a18-8ebb-fe69de3bb993" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172800Z:90c21643-e1cd-48b6-9d06-b957c96c9257" + "JIOINDIACENTRAL:20220512T083102Z:b4fe655c-8110-4a18-8ebb-fe69de3bb993" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:59 GMT" + "Thu, 12 May 2022 08:31:02 GMT" ], "Content-Length": [ "602" @@ -1773,16 +1713,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77e4e848-6156-461e-96ec-9583a362d963" + "3a4dec24-80a2-410b-befc-4038e1af3a26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1802,22 +1742,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "83e73088-502f-4ae0-9758-7f29f559784f" + "201ac456-963f-4cad-addf-488b0654c416" ], "x-ms-correlation-request-id": [ - "83e73088-502f-4ae0-9758-7f29f559784f" + "201ac456-963f-4cad-addf-488b0654c416" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172800Z:83e73088-502f-4ae0-9758-7f29f559784f" + "JIOINDIACENTRAL:20220512T083104Z:201ac456-963f-4cad-addf-488b0654c416" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:00 GMT" + "Thu, 12 May 2022 08:31:04 GMT" ], "Content-Length": [ "602" @@ -1836,16 +1776,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4804a0de-ada3-4fca-a32f-eae44103f398" + "7df915db-eb1f-4535-b8e6-9f505c05c2c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1865,22 +1805,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "e2181340-9e13-4636-9a69-8a1db0041a62" + "7cfcad4e-43f3-4ebc-9622-3e4932bab423" ], "x-ms-correlation-request-id": [ - "e2181340-9e13-4636-9a69-8a1db0041a62" + "7cfcad4e-43f3-4ebc-9622-3e4932bab423" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172801Z:e2181340-9e13-4636-9a69-8a1db0041a62" + "JIOINDIACENTRAL:20220512T083106Z:7cfcad4e-43f3-4ebc-9622-3e4932bab423" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:00 GMT" + "Thu, 12 May 2022 08:31:05 GMT" ], "Content-Length": [ "602" @@ -1899,16 +1839,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d80335fd-ae19-4a83-bc24-0a068d9c589f" + "c08946b9-7d97-4d81-acfb-3d495a7787ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1928,22 +1868,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-request-id": [ - "a0298d79-6a57-48f1-9b2f-906dc6e7adec" + "876511ee-7313-4c3d-96eb-436a4c36a43d" ], "x-ms-correlation-request-id": [ - "a0298d79-6a57-48f1-9b2f-906dc6e7adec" + "876511ee-7313-4c3d-96eb-436a4c36a43d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172801Z:a0298d79-6a57-48f1-9b2f-906dc6e7adec" + "JIOINDIACENTRAL:20220512T083107Z:876511ee-7313-4c3d-96eb-436a4c36a43d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:00 GMT" + "Thu, 12 May 2022 08:31:06 GMT" ], "Content-Length": [ "602" @@ -1962,16 +1902,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a11003b-613d-4e8d-adb8-b4da235236b0" + "c01df7c6-6067-4755-ad7d-22e5291272d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -1991,22 +1931,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-request-id": [ - "57497ff5-6ede-4afb-9216-2b86b3a812de" + "8475bfcd-99b5-4041-96fe-c1ac9e7ff173" ], "x-ms-correlation-request-id": [ - "57497ff5-6ede-4afb-9216-2b86b3a812de" + "8475bfcd-99b5-4041-96fe-c1ac9e7ff173" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172801Z:57497ff5-6ede-4afb-9216-2b86b3a812de" + "JIOINDIACENTRAL:20220512T083107Z:8475bfcd-99b5-4041-96fe-c1ac9e7ff173" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:00 GMT" + "Thu, 12 May 2022 08:31:06 GMT" ], "Content-Length": [ "602" @@ -2025,16 +1965,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdc340e4-9cac-42d4-9489-b8eb1dd623e8" + "3dccfb32-c04a-47f1-b228-63ba958a4a01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2054,22 +1994,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11993" ], "x-ms-request-id": [ - "6d518328-63c0-42bc-811d-5f2f68aff531" + "0dfe6828-f9ef-4121-8843-3dbc728219f1" ], "x-ms-correlation-request-id": [ - "6d518328-63c0-42bc-811d-5f2f68aff531" + "0dfe6828-f9ef-4121-8843-3dbc728219f1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172802Z:6d518328-63c0-42bc-811d-5f2f68aff531" + "JIOINDIACENTRAL:20220512T083110Z:0dfe6828-f9ef-4121-8843-3dbc728219f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:02 GMT" + "Thu, 12 May 2022 08:31:09 GMT" ], "Content-Length": [ "602" @@ -2088,16 +2028,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae750083-b60a-4a60-9681-bf4f90b1e34b" + "a8a6e6e2-da47-4577-8dfd-8b54576bd95a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2117,22 +2057,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-request-id": [ - "decc5aaa-f1fc-43a6-9db6-25093f02c51b" + "2a01fe89-93f8-4c36-b7f4-c864c25b47db" ], "x-ms-correlation-request-id": [ - "decc5aaa-f1fc-43a6-9db6-25093f02c51b" + "2a01fe89-93f8-4c36-b7f4-c864c25b47db" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172802Z:decc5aaa-f1fc-43a6-9db6-25093f02c51b" + "JIOINDIACENTRAL:20220512T083110Z:2a01fe89-93f8-4c36-b7f4-c864c25b47db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:02 GMT" + "Thu, 12 May 2022 08:31:10 GMT" ], "Content-Length": [ "602" @@ -2151,16 +2091,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0478ceab-8660-4fff-b0c7-2093cf242722" + "d779d7f9-d7ee-46b1-9f25-4fa4f7164068" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2180,22 +2120,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-request-id": [ - "310c0774-fa19-46ad-b8d3-faf4d7a7014f" + "2cf449a8-0bb5-4474-b752-594b38da3f9d" ], "x-ms-correlation-request-id": [ - "310c0774-fa19-46ad-b8d3-faf4d7a7014f" + "2cf449a8-0bb5-4474-b752-594b38da3f9d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172802Z:310c0774-fa19-46ad-b8d3-faf4d7a7014f" + "JIOINDIACENTRAL:20220512T083112Z:2cf449a8-0bb5-4474-b752-594b38da3f9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:02 GMT" + "Thu, 12 May 2022 08:31:12 GMT" ], "Content-Length": [ "602" @@ -2214,16 +2154,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8042bf8-e8d6-49d2-9fde-0849e5b9cd9f" + "c20c64a0-913c-4fe4-8861-9351fb261556" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2243,22 +2183,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11995" ], "x-ms-request-id": [ - "01357843-a069-4314-af19-f806ce81ed58" + "5375154f-e30e-47f2-a3d2-f83246147c3a" ], "x-ms-correlation-request-id": [ - "01357843-a069-4314-af19-f806ce81ed58" + "5375154f-e30e-47f2-a3d2-f83246147c3a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172802Z:01357843-a069-4314-af19-f806ce81ed58" + "JIOINDIACENTRAL:20220512T083114Z:5375154f-e30e-47f2-a3d2-f83246147c3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:02 GMT" + "Thu, 12 May 2022 08:31:13 GMT" ], "Content-Length": [ "602" @@ -2277,16 +2217,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6204865-96e3-4a67-b27f-8b181da7d764" + "587fdb16-f767-4cf7-babe-57fe6f58ae6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2306,22 +2246,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11994" ], "x-ms-request-id": [ - "22f9222d-b265-4850-978f-1d1c8660b1c5" + "622a945c-7861-478f-8af8-e7ceaacc4449" ], "x-ms-correlation-request-id": [ - "22f9222d-b265-4850-978f-1d1c8660b1c5" + "622a945c-7861-478f-8af8-e7ceaacc4449" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172803Z:22f9222d-b265-4850-978f-1d1c8660b1c5" + "JIOINDIACENTRAL:20220512T083114Z:622a945c-7861-478f-8af8-e7ceaacc4449" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:03 GMT" + "Thu, 12 May 2022 08:31:14 GMT" ], "Content-Length": [ "602" @@ -2340,16 +2280,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea5723ab-fe5f-424a-919e-614deabeeef3" + "22c2e2f2-a558-476c-b9e8-1d095e8cdb03" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2369,22 +2309,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11993" ], "x-ms-request-id": [ - "6dff79c7-d682-4a35-b2ce-e554da4a0ee4" + "3ae0d8f9-ab6d-4b16-bb8c-21d2bae629ba" ], "x-ms-correlation-request-id": [ - "6dff79c7-d682-4a35-b2ce-e554da4a0ee4" + "3ae0d8f9-ab6d-4b16-bb8c-21d2bae629ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172803Z:6dff79c7-d682-4a35-b2ce-e554da4a0ee4" + "JIOINDIACENTRAL:20220512T083115Z:3ae0d8f9-ab6d-4b16-bb8c-21d2bae629ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:03 GMT" + "Thu, 12 May 2022 08:31:14 GMT" ], "Content-Length": [ "602" @@ -2403,16 +2343,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f2b286b-5995-4028-8c68-8d23fa1c328d" + "be5e5620-5c9e-4461-9057-f8f6b11b8576" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2432,22 +2372,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-request-id": [ - "6439f0f0-f7a3-49b5-80e2-e544dae5786b" + "76d45642-eae4-4447-8067-8c74567ab527" ], "x-ms-correlation-request-id": [ - "6439f0f0-f7a3-49b5-80e2-e544dae5786b" + "76d45642-eae4-4447-8067-8c74567ab527" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172803Z:6439f0f0-f7a3-49b5-80e2-e544dae5786b" + "JIOINDIACENTRAL:20220512T083116Z:76d45642-eae4-4447-8067-8c74567ab527" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:03 GMT" + "Thu, 12 May 2022 08:31:15 GMT" ], "Content-Length": [ "602" @@ -2466,16 +2406,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86fcc20d-c894-4a62-863a-fc535ef7227a" + "5cd4ab64-7423-408f-b7d0-bf6d87bebc9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2495,22 +2435,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11987" ], "x-ms-request-id": [ - "40103b45-4be2-4296-acf6-a7b4ffa45342" + "23cffe62-5115-42cc-a6b2-037a0cc995b5" ], "x-ms-correlation-request-id": [ - "40103b45-4be2-4296-acf6-a7b4ffa45342" + "23cffe62-5115-42cc-a6b2-037a0cc995b5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172803Z:40103b45-4be2-4296-acf6-a7b4ffa45342" + "JIOINDIACENTRAL:20220512T083118Z:23cffe62-5115-42cc-a6b2-037a0cc995b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:03 GMT" + "Thu, 12 May 2022 08:31:18 GMT" ], "Content-Length": [ "602" @@ -2529,16 +2469,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "558177d0-eebc-4dd5-94ed-a0e22996fb33" + "552cac77-3b8d-49d5-ad6c-e4bbdbdc5480" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2558,22 +2498,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-request-id": [ - "8dca96b4-563e-443a-9795-ab5087ab136e" + "a764b312-394b-47fa-b626-51b757d4cb9a" ], "x-ms-correlation-request-id": [ - "8dca96b4-563e-443a-9795-ab5087ab136e" + "a764b312-394b-47fa-b626-51b757d4cb9a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172804Z:8dca96b4-563e-443a-9795-ab5087ab136e" + "JIOINDIACENTRAL:20220512T083121Z:a764b312-394b-47fa-b626-51b757d4cb9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:04 GMT" + "Thu, 12 May 2022 08:31:20 GMT" ], "Content-Length": [ "602" @@ -2592,16 +2532,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "773ce134-086c-4377-9629-0047bcd8846a" + "bd85872e-285e-416d-bb21-b01d5d24352e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2621,22 +2561,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11997" ], "x-ms-request-id": [ - "b7ecb71c-93d5-406a-a574-5ed92b2878da" + "fc7159aa-88b1-409b-8797-5f9be8114913" ], "x-ms-correlation-request-id": [ - "b7ecb71c-93d5-406a-a574-5ed92b2878da" + "fc7159aa-88b1-409b-8797-5f9be8114913" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172804Z:b7ecb71c-93d5-406a-a574-5ed92b2878da" + "JIOINDIACENTRAL:20220512T083121Z:fc7159aa-88b1-409b-8797-5f9be8114913" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:04 GMT" + "Thu, 12 May 2022 08:31:20 GMT" ], "Content-Length": [ "602" @@ -2655,16 +2595,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "944d28de-2896-41c0-bd47-43f3ff241b2f" + "5a94baf7-672d-4498-9791-d91bf0092d05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2684,22 +2624,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11992" ], "x-ms-request-id": [ - "bf2107d7-c366-4545-97b0-3e6b8a35203a" + "e11f10a2-362d-4891-817e-45ed4e89eee4" ], "x-ms-correlation-request-id": [ - "bf2107d7-c366-4545-97b0-3e6b8a35203a" + "e11f10a2-362d-4891-817e-45ed4e89eee4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172804Z:bf2107d7-c366-4545-97b0-3e6b8a35203a" + "JIOINDIACENTRAL:20220512T083124Z:e11f10a2-362d-4891-817e-45ed4e89eee4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:04 GMT" + "Thu, 12 May 2022 08:31:24 GMT" ], "Content-Length": [ "602" @@ -2718,16 +2658,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e708f79e-c744-42f5-8da2-44fb70eb5166" + "9cc05957-515a-48c0-9351-2f849d5823a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2747,22 +2687,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11995" ], "x-ms-request-id": [ - "db168845-167d-4498-8579-c4bd32276bf3" + "46bf8d30-8af2-4cea-adb8-a3547080ad7e" ], "x-ms-correlation-request-id": [ - "db168845-167d-4498-8579-c4bd32276bf3" + "46bf8d30-8af2-4cea-adb8-a3547080ad7e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172804Z:db168845-167d-4498-8579-c4bd32276bf3" + "JIOINDIACENTRAL:20220512T083124Z:46bf8d30-8af2-4cea-adb8-a3547080ad7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:04 GMT" + "Thu, 12 May 2022 08:31:24 GMT" ], "Content-Length": [ "602" @@ -2781,16 +2721,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9ffbf1c-2ef2-494f-9e33-53590a307c4d" + "90a04498-0848-423e-a1b0-919d34282f7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2810,22 +2750,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11991" ], "x-ms-request-id": [ - "75c4e05d-270a-4d8f-bc9a-7a52619e5d0d" + "c8b93eff-a416-457c-87c3-70c7e5d8ad57" ], "x-ms-correlation-request-id": [ - "75c4e05d-270a-4d8f-bc9a-7a52619e5d0d" + "c8b93eff-a416-457c-87c3-70c7e5d8ad57" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172805Z:75c4e05d-270a-4d8f-bc9a-7a52619e5d0d" + "JIOINDIACENTRAL:20220512T083126Z:c8b93eff-a416-457c-87c3-70c7e5d8ad57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:05 GMT" + "Thu, 12 May 2022 08:31:26 GMT" ], "Content-Length": [ "602" @@ -2844,16 +2784,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8a31f45-e5f0-454b-ab50-3fc5476afdd9" + "a1519949-eaa5-4bf1-8e5b-df3dc457406a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2873,22 +2813,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11996" ], "x-ms-request-id": [ - "72be651a-fe69-4742-81e9-fe944c9412fc" + "47653da5-92e4-490b-be78-8d3f29ad2934" ], "x-ms-correlation-request-id": [ - "72be651a-fe69-4742-81e9-fe944c9412fc" + "47653da5-92e4-490b-be78-8d3f29ad2934" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172805Z:72be651a-fe69-4742-81e9-fe944c9412fc" + "JIOINDIACENTRAL:20220512T083128Z:47653da5-92e4-490b-be78-8d3f29ad2934" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:05 GMT" + "Thu, 12 May 2022 08:31:28 GMT" ], "Content-Length": [ "602" @@ -2907,16 +2847,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2c309a9-49c1-4eb1-870a-0694ce4f20be" + "1c875947-ceb5-44be-bdd6-af376da0d08b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2936,22 +2876,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11986" ], "x-ms-request-id": [ - "9107c6ed-f46c-45d3-8bf9-8c5fa32e8ffc" + "4c1c7124-73b6-46e7-bc4f-900859084c75" ], "x-ms-correlation-request-id": [ - "9107c6ed-f46c-45d3-8bf9-8c5fa32e8ffc" + "4c1c7124-73b6-46e7-bc4f-900859084c75" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172805Z:9107c6ed-f46c-45d3-8bf9-8c5fa32e8ffc" + "JIOINDIACENTRAL:20220512T083128Z:4c1c7124-73b6-46e7-bc4f-900859084c75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:05 GMT" + "Thu, 12 May 2022 08:31:27 GMT" ], "Content-Length": [ "602" @@ -2970,16 +2910,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28ef2f78-6bee-4541-83c4-bdc05969901d" + "ab5b00af-3ab3-41a4-8440-0e3a8be1e5bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -2999,22 +2939,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11990" ], "x-ms-request-id": [ - "c5ead83c-325a-4063-9a9b-85912869312d" + "193e1ba5-bfd1-4225-abf5-c54c7675bc1e" ], "x-ms-correlation-request-id": [ - "c5ead83c-325a-4063-9a9b-85912869312d" + "193e1ba5-bfd1-4225-abf5-c54c7675bc1e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172806Z:c5ead83c-325a-4063-9a9b-85912869312d" + "JIOINDIACENTRAL:20220512T083129Z:193e1ba5-bfd1-4225-abf5-c54c7675bc1e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:05 GMT" + "Thu, 12 May 2022 08:31:29 GMT" ], "Content-Length": [ "602" @@ -3033,16 +2973,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01f99e5a-c2c8-4d69-9423-f67f1ed3cb9d" + "21ba0059-42da-49e0-82b8-f3614889893f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3062,22 +3002,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11989" ], "x-ms-request-id": [ - "4b2b1462-bc47-44c5-b4b8-baebdb55192a" + "5a8e114f-d3a3-4547-a34c-9c25398bd9f3" ], "x-ms-correlation-request-id": [ - "4b2b1462-bc47-44c5-b4b8-baebdb55192a" + "5a8e114f-d3a3-4547-a34c-9c25398bd9f3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172806Z:4b2b1462-bc47-44c5-b4b8-baebdb55192a" + "JIOINDIACENTRAL:20220512T083130Z:5a8e114f-d3a3-4547-a34c-9c25398bd9f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:06 GMT" + "Thu, 12 May 2022 08:31:30 GMT" ], "Content-Length": [ "602" @@ -3096,16 +3036,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6053ca5-b546-4315-8b7b-f15292a7b682" + "21d743a3-efd0-400f-bd7b-47bf7ad43aa6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3125,22 +3065,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11994" ], "x-ms-request-id": [ - "b08401aa-0fa5-4e61-9281-ccd00386dff7" + "2fc8c8f5-b45f-4871-8882-bc5f0347f0f2" ], "x-ms-correlation-request-id": [ - "b08401aa-0fa5-4e61-9281-ccd00386dff7" + "2fc8c8f5-b45f-4871-8882-bc5f0347f0f2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172806Z:b08401aa-0fa5-4e61-9281-ccd00386dff7" + "JIOINDIACENTRAL:20220512T083131Z:2fc8c8f5-b45f-4871-8882-bc5f0347f0f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:06 GMT" + "Thu, 12 May 2022 08:31:30 GMT" ], "Content-Length": [ "602" @@ -3159,16 +3099,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd59e77e-bb88-4df5-a417-fc381376998e" + "80e86c4d-638c-495d-b7c7-42700d05ce57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3188,22 +3128,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11992" ], "x-ms-request-id": [ - "f1f10534-d78f-4920-9d59-0840f8e7baa7" + "2c3676b8-6056-4301-a991-96600160eec2" ], "x-ms-correlation-request-id": [ - "f1f10534-d78f-4920-9d59-0840f8e7baa7" + "2c3676b8-6056-4301-a991-96600160eec2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172806Z:f1f10534-d78f-4920-9d59-0840f8e7baa7" + "JIOINDIACENTRAL:20220512T083131Z:2c3676b8-6056-4301-a991-96600160eec2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:06 GMT" + "Thu, 12 May 2022 08:31:31 GMT" ], "Content-Length": [ "602" @@ -3222,16 +3162,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90e6967b-cdc7-4e85-8019-36bda8d0432c" + "82fa6a38-95bb-4334-8f98-cb25dd5cbff9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3251,22 +3191,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11996" ], "x-ms-request-id": [ - "342cdb0a-4187-4eeb-ae65-1678f7f88baf" + "2177f20a-96fa-435e-9675-8b1853fa2adb" ], "x-ms-correlation-request-id": [ - "342cdb0a-4187-4eeb-ae65-1678f7f88baf" + "2177f20a-96fa-435e-9675-8b1853fa2adb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172807Z:342cdb0a-4187-4eeb-ae65-1678f7f88baf" + "JIOINDIACENTRAL:20220512T083133Z:2177f20a-96fa-435e-9675-8b1853fa2adb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:06 GMT" + "Thu, 12 May 2022 08:31:32 GMT" ], "Content-Length": [ "602" @@ -3285,16 +3225,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acbc0ec8-b15e-4966-9678-99907e6bd62b" + "90b941ec-1b63-48b4-be82-bf280e69a7fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3314,22 +3254,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11988" ], "x-ms-request-id": [ - "6c1f6bc5-cbc6-497f-b888-40bcb969513c" + "6cb02806-6c24-4919-b58e-16e79ed1ed4f" ], "x-ms-correlation-request-id": [ - "6c1f6bc5-cbc6-497f-b888-40bcb969513c" + "6cb02806-6c24-4919-b58e-16e79ed1ed4f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172807Z:6c1f6bc5-cbc6-497f-b888-40bcb969513c" + "JIOINDIACENTRAL:20220512T083134Z:6cb02806-6c24-4919-b58e-16e79ed1ed4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:07 GMT" + "Thu, 12 May 2022 08:31:33 GMT" ], "Content-Length": [ "602" @@ -3348,16 +3288,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "506ab11a-b5f4-4890-812c-c4e33f4b4fe1" + "38023fc7-c68f-4d9a-bef4-c2d315d07789" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3377,22 +3317,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11997" ], "x-ms-request-id": [ - "610bfc0e-9271-4a2f-8abc-b233b7dba94e" + "8c73fc7e-4b0b-448f-b752-a718595a8e6c" ], "x-ms-correlation-request-id": [ - "610bfc0e-9271-4a2f-8abc-b233b7dba94e" + "8c73fc7e-4b0b-448f-b752-a718595a8e6c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172807Z:610bfc0e-9271-4a2f-8abc-b233b7dba94e" + "JIOINDIACENTRAL:20220512T083134Z:8c73fc7e-4b0b-448f-b752-a718595a8e6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:07 GMT" + "Thu, 12 May 2022 08:31:34 GMT" ], "Content-Length": [ "602" @@ -3411,16 +3351,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48c5239d-a0e3-4e33-abb9-59bb435bb87d" + "57ab52d3-81f7-477a-9074-af580134bd35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3440,22 +3380,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11995" ], "x-ms-request-id": [ - "a9b7a0e8-da04-46bf-9fbb-7a7841766bc5" + "39f2bafc-0372-4c11-b9ac-6cb52d4b2fa8" ], "x-ms-correlation-request-id": [ - "a9b7a0e8-da04-46bf-9fbb-7a7841766bc5" + "39f2bafc-0372-4c11-b9ac-6cb52d4b2fa8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172807Z:a9b7a0e8-da04-46bf-9fbb-7a7841766bc5" + "JIOINDIACENTRAL:20220512T083135Z:39f2bafc-0372-4c11-b9ac-6cb52d4b2fa8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:07 GMT" + "Thu, 12 May 2022 08:31:35 GMT" ], "Content-Length": [ "602" @@ -3474,16 +3414,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71bb3c0e-262a-45b1-8f92-1deaebec8ecf" + "d4ae6c9a-3a83-4025-aa3d-5b91bb4d5315" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3503,22 +3443,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11996" ], "x-ms-request-id": [ - "380899b0-7546-4ef1-8e8a-a95ccf8c3bf2" + "c7604067-5072-4a4c-90c9-d668894df037" ], "x-ms-correlation-request-id": [ - "380899b0-7546-4ef1-8e8a-a95ccf8c3bf2" + "c7604067-5072-4a4c-90c9-d668894df037" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172808Z:380899b0-7546-4ef1-8e8a-a95ccf8c3bf2" + "JIOINDIACENTRAL:20220512T083136Z:c7604067-5072-4a4c-90c9-d668894df037" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:07 GMT" + "Thu, 12 May 2022 08:31:36 GMT" ], "Content-Length": [ "602" @@ -3537,16 +3477,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13a17439-8fe1-45c6-b1cd-db9aa0a47e17" + "1f8c49f9-eb6f-414e-96b2-e64d0aa4b62d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3566,22 +3506,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11995" ], "x-ms-request-id": [ - "ae463239-39b5-4658-a5d6-7af4a9d2f17b" + "b2f6d75d-35ef-4e32-8858-cda488b8fc36" ], "x-ms-correlation-request-id": [ - "ae463239-39b5-4658-a5d6-7af4a9d2f17b" + "b2f6d75d-35ef-4e32-8858-cda488b8fc36" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172808Z:ae463239-39b5-4658-a5d6-7af4a9d2f17b" + "JIOINDIACENTRAL:20220512T083137Z:b2f6d75d-35ef-4e32-8858-cda488b8fc36" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:08 GMT" + "Thu, 12 May 2022 08:31:36 GMT" ], "Content-Length": [ "602" @@ -3600,16 +3540,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4683e0f7-9b19-4b9c-8613-66f510152a5c" + "5428f9c6-3bc7-4f8a-92fd-4cc515a200bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3629,22 +3569,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11994" ], "x-ms-request-id": [ - "334f30ac-7fd9-4697-926e-5e78137a1b8e" + "b9e98987-50f5-4f76-9ad7-7317ab401b6d" ], "x-ms-correlation-request-id": [ - "334f30ac-7fd9-4697-926e-5e78137a1b8e" + "b9e98987-50f5-4f76-9ad7-7317ab401b6d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172808Z:334f30ac-7fd9-4697-926e-5e78137a1b8e" + "JIOINDIACENTRAL:20220512T083137Z:b9e98987-50f5-4f76-9ad7-7317ab401b6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:08 GMT" + "Thu, 12 May 2022 08:31:37 GMT" ], "Content-Length": [ "602" @@ -3663,16 +3603,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13cf8ea4-5f26-4eb1-9d55-20da27efd3bc" + "874b8574-ad69-4602-bed2-96148efa7440" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3692,22 +3632,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11995" ], "x-ms-request-id": [ - "6a226d1b-15d2-4a15-972a-83244c9d632e" + "c66806c6-efcf-430a-9b90-61b2d81060b8" ], "x-ms-correlation-request-id": [ - "6a226d1b-15d2-4a15-972a-83244c9d632e" + "c66806c6-efcf-430a-9b90-61b2d81060b8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172808Z:6a226d1b-15d2-4a15-972a-83244c9d632e" + "JIOINDIACENTRAL:20220512T083138Z:c66806c6-efcf-430a-9b90-61b2d81060b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:08 GMT" + "Thu, 12 May 2022 08:31:38 GMT" ], "Content-Length": [ "602" @@ -3726,16 +3666,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f6470fa-5c47-41aa-a3b0-0a8ea3ec5a53" + "99c81e90-1b5d-478b-895b-1e70d47c9922" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3755,22 +3695,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11994" ], "x-ms-request-id": [ - "684f53ea-e228-4908-bfcc-863d6b8a8371" + "7cfcf20c-b22e-4d95-8e8c-f0efc554571a" ], "x-ms-correlation-request-id": [ - "684f53ea-e228-4908-bfcc-863d6b8a8371" + "7cfcf20c-b22e-4d95-8e8c-f0efc554571a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172809Z:684f53ea-e228-4908-bfcc-863d6b8a8371" + "JIOINDIACENTRAL:20220512T083139Z:7cfcf20c-b22e-4d95-8e8c-f0efc554571a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:08 GMT" + "Thu, 12 May 2022 08:31:39 GMT" ], "Content-Length": [ "602" @@ -3789,16 +3729,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c39eb784-52df-4c34-bd87-4b3c996d0db5" + "2112ee04-4a82-4cf7-8421-55a2c66f7375" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3818,22 +3758,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11991" ], "x-ms-request-id": [ - "d194f087-ed54-46e4-967b-dd7bdb2b8631" + "5d10cc3b-82d9-4112-bbcd-14ef11723868" ], "x-ms-correlation-request-id": [ - "d194f087-ed54-46e4-967b-dd7bdb2b8631" + "5d10cc3b-82d9-4112-bbcd-14ef11723868" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172809Z:d194f087-ed54-46e4-967b-dd7bdb2b8631" + "JIOINDIACENTRAL:20220512T083140Z:5d10cc3b-82d9-4112-bbcd-14ef11723868" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:09 GMT" + "Thu, 12 May 2022 08:31:40 GMT" ], "Content-Length": [ "602" @@ -3852,16 +3792,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3009f3e6-e9ca-461e-8725-3a68a458aae4" + "8b72c7aa-cd6c-47ae-9434-5614e811a3cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3881,22 +3821,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11993" ], "x-ms-request-id": [ - "96ff4dd6-c9f1-45b4-b55c-4590b2052f55" + "70164f56-8bae-484d-b7b5-5768440dfb29" ], "x-ms-correlation-request-id": [ - "96ff4dd6-c9f1-45b4-b55c-4590b2052f55" + "70164f56-8bae-484d-b7b5-5768440dfb29" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172809Z:96ff4dd6-c9f1-45b4-b55c-4590b2052f55" + "JIOINDIACENTRAL:20220512T083140Z:70164f56-8bae-484d-b7b5-5768440dfb29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:09 GMT" + "Thu, 12 May 2022 08:31:40 GMT" ], "Content-Length": [ "602" @@ -3915,16 +3855,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1666aa1-dfdd-45eb-8836-b698a521eb90" + "510c4690-3934-466a-8bbb-555360604ab4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -3944,22 +3884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11992" ], "x-ms-request-id": [ - "e631f2aa-c9e8-4ffe-a2ba-a62a9d361f27" + "aa9d2edb-ff47-4bef-b0d0-e025847f4b16" ], "x-ms-correlation-request-id": [ - "e631f2aa-c9e8-4ffe-a2ba-a62a9d361f27" + "aa9d2edb-ff47-4bef-b0d0-e025847f4b16" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172810Z:e631f2aa-c9e8-4ffe-a2ba-a62a9d361f27" + "JIOINDIACENTRAL:20220512T083141Z:aa9d2edb-ff47-4bef-b0d0-e025847f4b16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:09 GMT" + "Thu, 12 May 2022 08:31:41 GMT" ], "Content-Length": [ "602" @@ -3978,16 +3918,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59d9ad0d-8d3d-47af-8552-c1ba4350e1c7" + "de44eac3-62a6-464e-9074-f03a2e09b568" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4007,22 +3947,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11994" ], "x-ms-request-id": [ - "fbdcae44-f798-4a06-94b0-d3bc6e5af989" + "05028c06-b377-472f-b2be-872d9edc6f96" ], "x-ms-correlation-request-id": [ - "fbdcae44-f798-4a06-94b0-d3bc6e5af989" + "05028c06-b377-472f-b2be-872d9edc6f96" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172810Z:fbdcae44-f798-4a06-94b0-d3bc6e5af989" + "JIOINDIACENTRAL:20220512T083142Z:05028c06-b377-472f-b2be-872d9edc6f96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:09 GMT" + "Thu, 12 May 2022 08:31:41 GMT" ], "Content-Length": [ "602" @@ -4041,16 +3981,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7bcc3e6-0872-46d5-8f4d-8466602f6535" + "feabf1f4-4ebb-49a0-95a7-1ac5f24a3d23" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4070,22 +4010,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11993" ], "x-ms-request-id": [ - "1782550c-40b5-4c55-b8d2-5baa3cd4dc7a" + "3e5bc42d-e210-4af5-91e3-2f64a3ef6eb4" ], "x-ms-correlation-request-id": [ - "1782550c-40b5-4c55-b8d2-5baa3cd4dc7a" + "3e5bc42d-e210-4af5-91e3-2f64a3ef6eb4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172810Z:1782550c-40b5-4c55-b8d2-5baa3cd4dc7a" + "JIOINDIACENTRAL:20220512T083143Z:3e5bc42d-e210-4af5-91e3-2f64a3ef6eb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:10 GMT" + "Thu, 12 May 2022 08:31:42 GMT" ], "Content-Length": [ "602" @@ -4104,16 +4044,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7288af78-4cf7-4f19-9b92-45abdbbc2e9b" + "3144d24a-9831-4ade-9150-d31ff93afe49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4133,22 +4073,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11991" ], "x-ms-request-id": [ - "397c5cb0-be99-4397-996a-0687a2741de9" + "45e076d2-9ef6-4713-801e-ccf8ba3b3769" ], "x-ms-correlation-request-id": [ - "397c5cb0-be99-4397-996a-0687a2741de9" + "45e076d2-9ef6-4713-801e-ccf8ba3b3769" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172810Z:397c5cb0-be99-4397-996a-0687a2741de9" + "JIOINDIACENTRAL:20220512T083144Z:45e076d2-9ef6-4713-801e-ccf8ba3b3769" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:10 GMT" + "Thu, 12 May 2022 08:31:43 GMT" ], "Content-Length": [ "602" @@ -4167,16 +4107,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b0957c5-e6da-4c3a-9f76-f832a7484524" + "6815406d-cf44-4adc-8103-0becf838371f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4196,22 +4136,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11990" ], "x-ms-request-id": [ - "15006921-aad7-4d1b-a2c3-353dec5052a6" + "5be876a7-ab9e-4df8-9abc-afb8e945d9bf" ], "x-ms-correlation-request-id": [ - "15006921-aad7-4d1b-a2c3-353dec5052a6" + "5be876a7-ab9e-4df8-9abc-afb8e945d9bf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172811Z:15006921-aad7-4d1b-a2c3-353dec5052a6" + "JIOINDIACENTRAL:20220512T083145Z:5be876a7-ab9e-4df8-9abc-afb8e945d9bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:10 GMT" + "Thu, 12 May 2022 08:31:44 GMT" ], "Content-Length": [ "602" @@ -4230,16 +4170,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b26b4938-35b6-4bde-b5da-35f026d611ea" + "1e8a68ac-42ac-4ae8-b90c-d67d38fab1a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4259,22 +4199,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11989" ], "x-ms-request-id": [ - "8eae518e-8e39-4b65-9d85-ec8cfae0bef2" + "4a25bed6-6325-4a45-936f-e81eaeb69cc4" ], "x-ms-correlation-request-id": [ - "8eae518e-8e39-4b65-9d85-ec8cfae0bef2" + "4a25bed6-6325-4a45-936f-e81eaeb69cc4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172811Z:8eae518e-8e39-4b65-9d85-ec8cfae0bef2" + "JIOINDIACENTRAL:20220512T083145Z:4a25bed6-6325-4a45-936f-e81eaeb69cc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:10 GMT" + "Thu, 12 May 2022 08:31:45 GMT" ], "Content-Length": [ "602" @@ -4293,16 +4233,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "141c4f31-0fcb-4663-96ec-188658fe9e93" + "7a38a70d-a2d4-4589-b892-d63ede118fde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4322,22 +4262,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11991" ], "x-ms-request-id": [ - "2f20fde8-6c2d-4a62-ba43-659892066ca3" + "385a39f2-3c7e-4874-a437-ddaeae55dffd" ], "x-ms-correlation-request-id": [ - "2f20fde8-6c2d-4a62-ba43-659892066ca3" + "385a39f2-3c7e-4874-a437-ddaeae55dffd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172811Z:2f20fde8-6c2d-4a62-ba43-659892066ca3" + "JIOINDIACENTRAL:20220512T083146Z:385a39f2-3c7e-4874-a437-ddaeae55dffd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:11 GMT" + "Thu, 12 May 2022 08:31:46 GMT" ], "Content-Length": [ "602" @@ -4356,16 +4296,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45a54cb-3d79-4102-8438-b678c15fe06c" + "d796c239-fd46-49a6-8dd4-9e4c024ef6fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4385,22 +4325,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11990" ], "x-ms-request-id": [ - "6f74b61f-49d6-4cf9-a306-c5632165c684" + "f2a41591-4b35-4e11-a00c-3e045f5e8c39" ], "x-ms-correlation-request-id": [ - "6f74b61f-49d6-4cf9-a306-c5632165c684" + "f2a41591-4b35-4e11-a00c-3e045f5e8c39" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172811Z:6f74b61f-49d6-4cf9-a306-c5632165c684" + "JIOINDIACENTRAL:20220512T083147Z:f2a41591-4b35-4e11-a00c-3e045f5e8c39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:11 GMT" + "Thu, 12 May 2022 08:31:46 GMT" ], "Content-Length": [ "602" @@ -4419,16 +4359,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06b1e0aa-eeda-4a62-8a3b-d91c8cd64bd9" + "83fcf458-b6b1-4795-b55f-3260dbf3c6bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4448,22 +4388,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11993" ], "x-ms-request-id": [ - "2da0d5df-908c-47d6-a68c-4fc3e14fdf95" + "34730d60-45f0-4809-81b5-e4855d450b89" ], "x-ms-correlation-request-id": [ - "2da0d5df-908c-47d6-a68c-4fc3e14fdf95" + "34730d60-45f0-4809-81b5-e4855d450b89" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172812Z:2da0d5df-908c-47d6-a68c-4fc3e14fdf95" + "JIOINDIACENTRAL:20220512T083148Z:34730d60-45f0-4809-81b5-e4855d450b89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:11 GMT" + "Thu, 12 May 2022 08:31:47 GMT" ], "Content-Length": [ "602" @@ -4482,16 +4422,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2599edc7-a0c4-47db-8163-8f14def3e1c3" + "3e9723e8-24a4-4cf1-8b13-25301c300a98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4511,22 +4451,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11993" ], "x-ms-request-id": [ - "a6b26e59-3474-460a-8691-2199aec8c531" + "87233d5f-e9d1-4607-8946-ac0f356f4def" ], "x-ms-correlation-request-id": [ - "a6b26e59-3474-460a-8691-2199aec8c531" + "87233d5f-e9d1-4607-8946-ac0f356f4def" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172812Z:a6b26e59-3474-460a-8691-2199aec8c531" + "JIOINDIACENTRAL:20220512T083149Z:87233d5f-e9d1-4607-8946-ac0f356f4def" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:11 GMT" + "Thu, 12 May 2022 08:31:48 GMT" ], "Content-Length": [ "602" @@ -4545,16 +4485,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbffd9ab-99fe-4045-9e64-33b142af8595" + "9a2d2a95-eafb-4420-b027-33f0989875a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4574,22 +4514,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11992" ], "x-ms-request-id": [ - "68f47d81-f8e9-4ca5-ae58-85dacdbdadb6" + "19f805da-ed8d-48e7-856b-492b6455557d" ], "x-ms-correlation-request-id": [ - "68f47d81-f8e9-4ca5-ae58-85dacdbdadb6" + "19f805da-ed8d-48e7-856b-492b6455557d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172812Z:68f47d81-f8e9-4ca5-ae58-85dacdbdadb6" + "JIOINDIACENTRAL:20220512T083149Z:19f805da-ed8d-48e7-856b-492b6455557d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:12 GMT" + "Thu, 12 May 2022 08:31:48 GMT" ], "Content-Length": [ "602" @@ -4608,16 +4548,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "284331f0-94ed-4916-9fc4-712efe275fe4" + "8e07f21d-c248-4cfc-9f94-34b482cf857d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4637,22 +4577,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11985" ], "x-ms-request-id": [ - "a8277d71-35e8-4431-b8ed-ff76f05936b0" + "e2ba171a-e29e-42fd-bf9f-f040abe6c925" ], "x-ms-correlation-request-id": [ - "a8277d71-35e8-4431-b8ed-ff76f05936b0" + "e2ba171a-e29e-42fd-bf9f-f040abe6c925" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172812Z:a8277d71-35e8-4431-b8ed-ff76f05936b0" + "JIOINDIACENTRAL:20220512T083150Z:e2ba171a-e29e-42fd-bf9f-f040abe6c925" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:12 GMT" + "Thu, 12 May 2022 08:31:49 GMT" ], "Content-Length": [ "602" @@ -4671,16 +4611,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81206821-d438-4da8-8473-64465c0dd2aa" + "0f821c23-8bd2-474d-b212-640f26cdbb05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4700,22 +4640,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11988" ], "x-ms-request-id": [ - "5e526b47-09d3-4732-936a-e2ea9f352cb1" + "1622ff61-90ab-4f38-9b88-7b79e6791170" ], "x-ms-correlation-request-id": [ - "5e526b47-09d3-4732-936a-e2ea9f352cb1" + "1622ff61-90ab-4f38-9b88-7b79e6791170" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172813Z:5e526b47-09d3-4732-936a-e2ea9f352cb1" + "JIOINDIACENTRAL:20220512T083151Z:1622ff61-90ab-4f38-9b88-7b79e6791170" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:12 GMT" + "Thu, 12 May 2022 08:31:50 GMT" ], "Content-Length": [ "602" @@ -4734,16 +4674,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96589e3a-4ca7-4719-8816-0302ef1aff99" + "4f9e32b2-600b-4a5f-bc30-ac890ea3df1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4763,22 +4703,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11987" ], "x-ms-request-id": [ - "7f7661e7-17e1-4f73-b673-92507bb31f3f" + "cb7fae37-94dd-401c-816f-c08dc161b207" ], "x-ms-correlation-request-id": [ - "7f7661e7-17e1-4f73-b673-92507bb31f3f" + "cb7fae37-94dd-401c-816f-c08dc161b207" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172813Z:7f7661e7-17e1-4f73-b673-92507bb31f3f" + "JIOINDIACENTRAL:20220512T083152Z:cb7fae37-94dd-401c-816f-c08dc161b207" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:12 GMT" + "Thu, 12 May 2022 08:31:51 GMT" ], "Content-Length": [ "602" @@ -4797,16 +4737,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd5d6c77-66ba-4cb5-b93a-8f3fbd363e10" + "115c3253-34ae-4cdd-89cf-15ae0fffd129" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4826,22 +4766,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11991" ], "x-ms-request-id": [ - "b7b54ad7-3023-4aa7-b0b8-b37a1a80da01" + "339dce15-c8d9-4081-a825-0c227f16352a" ], "x-ms-correlation-request-id": [ - "b7b54ad7-3023-4aa7-b0b8-b37a1a80da01" + "339dce15-c8d9-4081-a825-0c227f16352a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172813Z:b7b54ad7-3023-4aa7-b0b8-b37a1a80da01" + "JIOINDIACENTRAL:20220512T083152Z:339dce15-c8d9-4081-a825-0c227f16352a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:13 GMT" + "Thu, 12 May 2022 08:31:52 GMT" ], "Content-Length": [ "602" @@ -4860,16 +4800,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6658b002-1404-47fc-91c9-3d89ca982ccf" + "abcc4f4b-23ed-4cc2-9352-09446fefdbf1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4889,22 +4829,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11992" ], "x-ms-request-id": [ - "4c330446-7097-4217-9bdc-5a94253e45a7" + "0b639c41-2a71-43d4-bac1-9d926d71ce9c" ], "x-ms-correlation-request-id": [ - "4c330446-7097-4217-9bdc-5a94253e45a7" + "0b639c41-2a71-43d4-bac1-9d926d71ce9c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172814Z:4c330446-7097-4217-9bdc-5a94253e45a7" + "JIOINDIACENTRAL:20220512T083153Z:0b639c41-2a71-43d4-bac1-9d926d71ce9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:13 GMT" + "Thu, 12 May 2022 08:31:53 GMT" ], "Content-Length": [ "602" @@ -4923,16 +4863,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f9da69f-c6bf-400a-9103-ade7146a602e" + "051a0bb4-a030-4f7d-9542-4365cfc5c4b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -4952,22 +4892,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11986" ], "x-ms-request-id": [ - "9d0cf2d4-5140-4192-b3ae-53550219dad8" + "5bd20121-0ab4-4946-8b19-8599b7758d73" ], "x-ms-correlation-request-id": [ - "9d0cf2d4-5140-4192-b3ae-53550219dad8" + "5bd20121-0ab4-4946-8b19-8599b7758d73" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172814Z:9d0cf2d4-5140-4192-b3ae-53550219dad8" + "JIOINDIACENTRAL:20220512T083154Z:5bd20121-0ab4-4946-8b19-8599b7758d73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:13 GMT" + "Thu, 12 May 2022 08:31:53 GMT" ], "Content-Length": [ "602" @@ -4986,16 +4926,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72ff8eb1-111d-4cd8-bef1-e715d2986d48" + "8dd6e261-b72a-4720-ad21-13a830e239ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5015,22 +4955,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11989" ], "x-ms-request-id": [ - "7c347ac8-5c10-4b3e-9093-a237953de7a5" + "45eedcd0-efc5-4794-92fb-54be3aa427e9" ], "x-ms-correlation-request-id": [ - "7c347ac8-5c10-4b3e-9093-a237953de7a5" + "45eedcd0-efc5-4794-92fb-54be3aa427e9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172814Z:7c347ac8-5c10-4b3e-9093-a237953de7a5" + "JIOINDIACENTRAL:20220512T083155Z:45eedcd0-efc5-4794-92fb-54be3aa427e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:13 GMT" + "Thu, 12 May 2022 08:31:55 GMT" ], "Content-Length": [ "602" @@ -5049,16 +4989,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e69e1267-280a-4ebd-a425-ec49aea82012" + "e746dd53-2ad4-4fc3-8e53-1256346807f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5078,22 +5018,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11992" ], "x-ms-request-id": [ - "a506b584-43bf-4072-849c-fa8ec4882d9c" + "9de4f614-161e-46f1-9077-74e5668b69b6" ], "x-ms-correlation-request-id": [ - "a506b584-43bf-4072-849c-fa8ec4882d9c" + "9de4f614-161e-46f1-9077-74e5668b69b6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172814Z:a506b584-43bf-4072-849c-fa8ec4882d9c" + "JIOINDIACENTRAL:20220512T083156Z:9de4f614-161e-46f1-9077-74e5668b69b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:14 GMT" + "Thu, 12 May 2022 08:31:55 GMT" ], "Content-Length": [ "602" @@ -5112,16 +5052,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75f0a975-54c9-4a9e-a6a1-62d98e26f145" + "76222e5c-a866-475a-9a80-d3d0a19ff11b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5141,22 +5081,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11988" ], "x-ms-request-id": [ - "078be960-4e08-428d-b9e2-7d7086498194" + "0aa99865-1f66-45e7-8e06-0b8c26257509" ], "x-ms-correlation-request-id": [ - "078be960-4e08-428d-b9e2-7d7086498194" + "0aa99865-1f66-45e7-8e06-0b8c26257509" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172815Z:078be960-4e08-428d-b9e2-7d7086498194" + "JIOINDIACENTRAL:20220512T083157Z:0aa99865-1f66-45e7-8e06-0b8c26257509" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:14 GMT" + "Thu, 12 May 2022 08:31:56 GMT" ], "Content-Length": [ "602" @@ -5175,16 +5115,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de9430ec-9495-426e-b15f-7b6781e760a0" + "248c6a08-2f44-4604-856f-5b291dcd6890" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5204,22 +5144,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11990" ], "x-ms-request-id": [ - "e8124ea8-342e-4f23-b580-cffbf1315ee1" + "d904b80e-0406-48cc-9c7c-3f59af84bd91" ], "x-ms-correlation-request-id": [ - "e8124ea8-342e-4f23-b580-cffbf1315ee1" + "d904b80e-0406-48cc-9c7c-3f59af84bd91" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172815Z:e8124ea8-342e-4f23-b580-cffbf1315ee1" + "JIOINDIACENTRAL:20220512T083157Z:d904b80e-0406-48cc-9c7c-3f59af84bd91" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:14 GMT" + "Thu, 12 May 2022 08:31:57 GMT" ], "Content-Length": [ "602" @@ -5238,16 +5178,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11c0cbc9-1350-4672-bb72-587c300890b8" + "b69a2da6-ccd5-4616-aef1-0794de12359a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5267,22 +5207,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11990" ], "x-ms-request-id": [ - "cc51f817-5361-467e-8e9b-fd3744c7de56" + "30f1098d-996c-496a-8681-62d6317015fd" ], "x-ms-correlation-request-id": [ - "cc51f817-5361-467e-8e9b-fd3744c7de56" + "30f1098d-996c-496a-8681-62d6317015fd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172815Z:cc51f817-5361-467e-8e9b-fd3744c7de56" + "JIOINDIACENTRAL:20220512T083158Z:30f1098d-996c-496a-8681-62d6317015fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:14 GMT" + "Thu, 12 May 2022 08:31:58 GMT" ], "Content-Length": [ "602" @@ -5301,16 +5241,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cec4a964-b9ad-40b8-9ccf-b5c53b3dd2e1" + "66195435-8e82-40aa-8bb6-d46c9499a1b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5330,22 +5270,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11991" ], "x-ms-request-id": [ - "4d4a735b-48a4-4f6e-9b86-ac0e6a670b66" + "0a3dcd59-2a56-47be-b29b-70d4c58cc717" ], "x-ms-correlation-request-id": [ - "4d4a735b-48a4-4f6e-9b86-ac0e6a670b66" + "0a3dcd59-2a56-47be-b29b-70d4c58cc717" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172815Z:4d4a735b-48a4-4f6e-9b86-ac0e6a670b66" + "JIOINDIACENTRAL:20220512T083159Z:0a3dcd59-2a56-47be-b29b-70d4c58cc717" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:15 GMT" + "Thu, 12 May 2022 08:31:59 GMT" ], "Content-Length": [ "602" @@ -5364,16 +5304,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5afd4d-0206-49cb-ae48-50e908caff18" + "cd95e53f-6c01-4902-9da5-244ec34d92c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5393,22 +5333,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11985" ], "x-ms-request-id": [ - "5999c919-4742-449f-86cd-4ca7ab2c0ac7" + "ab1b569a-9e32-40e5-a956-0c5c46e99851" ], "x-ms-correlation-request-id": [ - "5999c919-4742-449f-86cd-4ca7ab2c0ac7" + "ab1b569a-9e32-40e5-a956-0c5c46e99851" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172816Z:5999c919-4742-449f-86cd-4ca7ab2c0ac7" + "JIOINDIACENTRAL:20220512T083201Z:ab1b569a-9e32-40e5-a956-0c5c46e99851" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:15 GMT" + "Thu, 12 May 2022 08:32:01 GMT" ], "Content-Length": [ "602" @@ -5427,16 +5367,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54b4a3c4-6f4d-4566-80f4-386c1514d6fd" + "450378b9-786a-4483-a047-dfb170496e56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5456,22 +5396,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11989" ], "x-ms-request-id": [ - "72c2271b-420f-41fe-97ef-6f2fd96d8d65" + "b19c5b7e-3dcc-4016-941e-e3c54e83ec30" ], "x-ms-correlation-request-id": [ - "72c2271b-420f-41fe-97ef-6f2fd96d8d65" + "b19c5b7e-3dcc-4016-941e-e3c54e83ec30" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172816Z:72c2271b-420f-41fe-97ef-6f2fd96d8d65" + "JIOINDIACENTRAL:20220512T083202Z:b19c5b7e-3dcc-4016-941e-e3c54e83ec30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:15 GMT" + "Thu, 12 May 2022 08:32:01 GMT" ], "Content-Length": [ "602" @@ -5490,16 +5430,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ccb9dd7-7751-432b-9d12-9277e935eb99" + "af087a1e-cf70-46bb-9ef8-18acd6969cb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5519,22 +5459,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11984" ], "x-ms-request-id": [ - "1d47370d-e256-46c1-af77-05e144f385f9" + "8d313c88-9677-49c1-a9e6-aee52edeb9f8" ], "x-ms-correlation-request-id": [ - "1d47370d-e256-46c1-af77-05e144f385f9" + "8d313c88-9677-49c1-a9e6-aee52edeb9f8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172816Z:1d47370d-e256-46c1-af77-05e144f385f9" + "JIOINDIACENTRAL:20220512T083203Z:8d313c88-9677-49c1-a9e6-aee52edeb9f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:15 GMT" + "Thu, 12 May 2022 08:32:02 GMT" ], "Content-Length": [ "602" @@ -5553,16 +5493,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e519464-1323-4392-a87d-50532e7d2359" + "7fb7ea3a-a57c-41a4-98e2-0abd9d49ceba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5582,22 +5522,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11991" ], "x-ms-request-id": [ - "69cdc75a-9b44-46e8-abae-ea914464846b" + "671dd2f0-b0dc-47d6-a405-2d966aaa6415" ], "x-ms-correlation-request-id": [ - "69cdc75a-9b44-46e8-abae-ea914464846b" + "671dd2f0-b0dc-47d6-a405-2d966aaa6415" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172817Z:69cdc75a-9b44-46e8-abae-ea914464846b" + "JIOINDIACENTRAL:20220512T083204Z:671dd2f0-b0dc-47d6-a405-2d966aaa6415" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:16 GMT" + "Thu, 12 May 2022 08:32:04 GMT" ], "Content-Length": [ "602" @@ -5616,16 +5556,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4e30bc8-d1a3-4ae1-8543-66295d09fc4b" + "a2bf386b-270c-47b5-aa29-5146bfc82a0c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5645,22 +5585,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11990" ], "x-ms-request-id": [ - "eaa92c55-269f-435c-81c4-86a89e7f056d" + "6c0d64b6-f32e-41fe-8b27-7640921667d8" ], "x-ms-correlation-request-id": [ - "eaa92c55-269f-435c-81c4-86a89e7f056d" + "6c0d64b6-f32e-41fe-8b27-7640921667d8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172817Z:eaa92c55-269f-435c-81c4-86a89e7f056d" + "JIOINDIACENTRAL:20220512T083204Z:6c0d64b6-f32e-41fe-8b27-7640921667d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:16 GMT" + "Thu, 12 May 2022 08:32:04 GMT" ], "Content-Length": [ "602" @@ -5679,16 +5619,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1eaac07a-588d-4fb1-98a6-8f57b3eecc61" + "2d9d9f27-b5ff-422e-80c2-03475badd541" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5708,22 +5648,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11987" ], "x-ms-request-id": [ - "306ecc2c-e570-48a6-b87e-c9adf6a18266" + "7bf8dd89-f371-42f7-a347-ff6b4bbefa11" ], "x-ms-correlation-request-id": [ - "306ecc2c-e570-48a6-b87e-c9adf6a18266" + "7bf8dd89-f371-42f7-a347-ff6b4bbefa11" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172817Z:306ecc2c-e570-48a6-b87e-c9adf6a18266" + "JIOINDIACENTRAL:20220512T083205Z:7bf8dd89-f371-42f7-a347-ff6b4bbefa11" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:16 GMT" + "Thu, 12 May 2022 08:32:04 GMT" ], "Content-Length": [ "602" @@ -5742,16 +5682,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3737f170-9921-4fb5-a9a2-054b4aad2c73" + "d0c7f75b-7c34-4e30-b3b5-456e1b889cfe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5771,22 +5711,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11983" ], "x-ms-request-id": [ - "afdf8b92-8e82-43b6-b1f0-18dbdedc38d2" + "e029f03a-c5e4-41e2-9f7b-cf7da0f7a446" ], "x-ms-correlation-request-id": [ - "afdf8b92-8e82-43b6-b1f0-18dbdedc38d2" + "e029f03a-c5e4-41e2-9f7b-cf7da0f7a446" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172817Z:afdf8b92-8e82-43b6-b1f0-18dbdedc38d2" + "JIOINDIACENTRAL:20220512T083206Z:e029f03a-c5e4-41e2-9f7b-cf7da0f7a446" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:16 GMT" + "Thu, 12 May 2022 08:32:06 GMT" ], "Content-Length": [ "602" @@ -5805,16 +5745,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee375b84-aad0-4c2e-90a6-960eb67b0c58" + "04a3113d-5ac7-4a36-adc3-854d79590443" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5834,22 +5774,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11984" ], "x-ms-request-id": [ - "760591a2-5435-4d09-948e-6ae08a70cac4" + "348681c3-be05-4b50-8e6f-dcfa49733c87" ], "x-ms-correlation-request-id": [ - "760591a2-5435-4d09-948e-6ae08a70cac4" + "348681c3-be05-4b50-8e6f-dcfa49733c87" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172818Z:760591a2-5435-4d09-948e-6ae08a70cac4" + "JIOINDIACENTRAL:20220512T083207Z:348681c3-be05-4b50-8e6f-dcfa49733c87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:18 GMT" + "Thu, 12 May 2022 08:32:07 GMT" ], "Content-Length": [ "602" @@ -5868,16 +5808,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d616dc0e-596f-4dfc-82dc-22915abbb86c" + "b3f2f1fb-c9cd-4a92-a7e4-de0f3b3be30a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5897,22 +5837,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11982" ], "x-ms-request-id": [ - "a7a96f69-3777-4abd-be30-38db3a580e3b" + "9f329a67-97bb-4436-827e-b98c958317d7" ], "x-ms-correlation-request-id": [ - "a7a96f69-3777-4abd-be30-38db3a580e3b" + "9f329a67-97bb-4436-827e-b98c958317d7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172818Z:a7a96f69-3777-4abd-be30-38db3a580e3b" + "JIOINDIACENTRAL:20220512T083208Z:9f329a67-97bb-4436-827e-b98c958317d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:18 GMT" + "Thu, 12 May 2022 08:32:07 GMT" ], "Content-Length": [ "602" @@ -5931,16 +5871,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e57f02d-cd97-42a7-bca1-d8c5be7fe984" + "01dfbe57-eeb3-4f3b-bd34-80610c7344f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -5960,22 +5900,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11989" ], "x-ms-request-id": [ - "99f33c7f-6c4e-4dc0-b612-d85dbec6ea40" + "b3cff714-1304-478a-a77c-eec66f7ff7e2" ], "x-ms-correlation-request-id": [ - "99f33c7f-6c4e-4dc0-b612-d85dbec6ea40" + "b3cff714-1304-478a-a77c-eec66f7ff7e2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172818Z:99f33c7f-6c4e-4dc0-b612-d85dbec6ea40" + "JIOINDIACENTRAL:20220512T083208Z:b3cff714-1304-478a-a77c-eec66f7ff7e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:18 GMT" + "Thu, 12 May 2022 08:32:08 GMT" ], "Content-Length": [ "602" @@ -5994,16 +5934,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16a70b2c-edc9-4c29-a6a7-f60374a9373d" + "0e359223-5db5-4fea-8b6a-123db947bafb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6023,22 +5963,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11988" ], "x-ms-request-id": [ - "59015c45-d613-44d8-9c5c-0bfd004b3166" + "6b2f8b7c-59d7-49d0-9a57-3516ede3ef27" ], "x-ms-correlation-request-id": [ - "59015c45-d613-44d8-9c5c-0bfd004b3166" + "6b2f8b7c-59d7-49d0-9a57-3516ede3ef27" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172818Z:59015c45-d613-44d8-9c5c-0bfd004b3166" + "JIOINDIACENTRAL:20220512T083209Z:6b2f8b7c-59d7-49d0-9a57-3516ede3ef27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:18 GMT" + "Thu, 12 May 2022 08:32:08 GMT" ], "Content-Length": [ "602" @@ -6057,16 +5997,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b70739f-c0c8-4c8b-8394-21551cdbbac7" + "00b41238-243a-4a1d-ab56-60f1f757b86b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6086,22 +6026,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11990" ], "x-ms-request-id": [ - "c934116d-8077-4253-ac13-b03b10f083c5" + "cbbaae93-d0be-403a-8874-1aefc802155c" ], "x-ms-correlation-request-id": [ - "c934116d-8077-4253-ac13-b03b10f083c5" + "cbbaae93-d0be-403a-8874-1aefc802155c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172819Z:c934116d-8077-4253-ac13-b03b10f083c5" + "JIOINDIACENTRAL:20220512T083210Z:cbbaae93-d0be-403a-8874-1aefc802155c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:19 GMT" + "Thu, 12 May 2022 08:32:10 GMT" ], "Content-Length": [ "602" @@ -6120,16 +6060,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3f12dad-787d-448a-815f-0d19cb37a4b4" + "bca46f1b-a68c-4889-aa05-06fbbf07007d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6149,22 +6089,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11987" ], "x-ms-request-id": [ - "b97bbf0b-f3bd-4331-ab0a-4bd6644c1b46" + "39c8adfa-d2db-4f5e-84bc-237836dd0055" ], "x-ms-correlation-request-id": [ - "b97bbf0b-f3bd-4331-ab0a-4bd6644c1b46" + "39c8adfa-d2db-4f5e-84bc-237836dd0055" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172819Z:b97bbf0b-f3bd-4331-ab0a-4bd6644c1b46" + "JIOINDIACENTRAL:20220512T083210Z:39c8adfa-d2db-4f5e-84bc-237836dd0055" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:19 GMT" + "Thu, 12 May 2022 08:32:10 GMT" ], "Content-Length": [ "602" @@ -6183,16 +6123,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9981042-d830-4923-8159-ac0b5752d6e0" + "dfd03c6e-9f27-465d-be21-f0c7f99bbcf8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6212,22 +6152,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11983" ], "x-ms-request-id": [ - "3fd38d43-8f26-4d03-bc02-64d5afb6bf9f" + "16a9bd15-22d1-4a86-8173-8fbbd22c153e" ], "x-ms-correlation-request-id": [ - "3fd38d43-8f26-4d03-bc02-64d5afb6bf9f" + "16a9bd15-22d1-4a86-8173-8fbbd22c153e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172819Z:3fd38d43-8f26-4d03-bc02-64d5afb6bf9f" + "JIOINDIACENTRAL:20220512T083211Z:16a9bd15-22d1-4a86-8173-8fbbd22c153e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:19 GMT" + "Thu, 12 May 2022 08:32:11 GMT" ], "Content-Length": [ "602" @@ -6246,16 +6186,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c8907ca-b12b-4ec2-86aa-014ff9767893" + "5534f240-1373-4dbd-a2df-05eb1a0bc503" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6275,22 +6215,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" + "11988" ], "x-ms-request-id": [ - "1072b49d-8259-4008-aad0-4076e7da92e3" + "5c74160e-c3fa-4ee7-a444-f516bf2f54a8" ], "x-ms-correlation-request-id": [ - "1072b49d-8259-4008-aad0-4076e7da92e3" + "5c74160e-c3fa-4ee7-a444-f516bf2f54a8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172819Z:1072b49d-8259-4008-aad0-4076e7da92e3" + "JIOINDIACENTRAL:20220512T083212Z:5c74160e-c3fa-4ee7-a444-f516bf2f54a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:19 GMT" + "Thu, 12 May 2022 08:32:12 GMT" ], "Content-Length": [ "602" @@ -6309,16 +6249,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca577e66-daaf-45b2-acdd-87d9c553e728" + "658dd253-4c02-4b2d-a908-e973b25fb77c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6338,22 +6278,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11986" ], "x-ms-request-id": [ - "226c4e2b-a6aa-4ec1-9ab6-648bdf4a8edb" + "52731a9d-90af-466b-af13-9892c59afd47" ], "x-ms-correlation-request-id": [ - "226c4e2b-a6aa-4ec1-9ab6-648bdf4a8edb" + "52731a9d-90af-466b-af13-9892c59afd47" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172820Z:226c4e2b-a6aa-4ec1-9ab6-648bdf4a8edb" + "JIOINDIACENTRAL:20220512T083213Z:52731a9d-90af-466b-af13-9892c59afd47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:20 GMT" + "Thu, 12 May 2022 08:32:13 GMT" ], "Content-Length": [ "602" @@ -6372,16 +6312,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d435ea37-f546-4015-9e9d-2a8770849cbf" + "062e3927-592b-4e46-afe7-c62f86fb38ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6401,22 +6341,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11981" ], "x-ms-request-id": [ - "35283704-a176-470e-907c-bdc64c2213a2" + "e2af891a-61f2-4432-8f28-074622dae650" ], "x-ms-correlation-request-id": [ - "35283704-a176-470e-907c-bdc64c2213a2" + "e2af891a-61f2-4432-8f28-074622dae650" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172820Z:35283704-a176-470e-907c-bdc64c2213a2" + "JIOINDIACENTRAL:20220512T083214Z:e2af891a-61f2-4432-8f28-074622dae650" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:20 GMT" + "Thu, 12 May 2022 08:32:13 GMT" ], "Content-Length": [ "602" @@ -6435,16 +6375,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffb111e0-3312-4334-9fe6-a29f7034ed88" + "c28b3dea-8347-4a48-a1c0-2420a9238a8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6464,22 +6404,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11987" ], "x-ms-request-id": [ - "55877982-0652-4153-a16a-62c62647c241" + "394c8b89-e539-44fe-9400-3801389b38e6" ], "x-ms-correlation-request-id": [ - "55877982-0652-4153-a16a-62c62647c241" + "394c8b89-e539-44fe-9400-3801389b38e6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172820Z:55877982-0652-4153-a16a-62c62647c241" + "JIOINDIACENTRAL:20220512T083214Z:394c8b89-e539-44fe-9400-3801389b38e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:20 GMT" + "Thu, 12 May 2022 08:32:14 GMT" ], "Content-Length": [ "602" @@ -6498,16 +6438,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "725f3518-f26e-4806-b180-d126a53aa880" + "9e49031c-37de-47e0-a3dd-de5838505f9d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6527,22 +6467,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11989" ], "x-ms-request-id": [ - "c978929f-3edb-422f-9e0e-429640061913" + "b7ac22fc-d24d-4a16-951b-418c82d617f1" ], "x-ms-correlation-request-id": [ - "c978929f-3edb-422f-9e0e-429640061913" + "b7ac22fc-d24d-4a16-951b-418c82d617f1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172821Z:c978929f-3edb-422f-9e0e-429640061913" + "JIOINDIACENTRAL:20220512T083215Z:b7ac22fc-d24d-4a16-951b-418c82d617f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:20 GMT" + "Thu, 12 May 2022 08:32:15 GMT" ], "Content-Length": [ "602" @@ -6561,16 +6501,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56225761-2ed2-45d0-b9c8-23f1517f45f4" + "bcedd204-9cb7-4000-a4bd-066547545c48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6590,22 +6530,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11982" ], "x-ms-request-id": [ - "ac162139-1c32-4fa4-909d-cff1958fec96" + "5d929941-ebd0-4199-a30c-32c1b195088c" ], "x-ms-correlation-request-id": [ - "ac162139-1c32-4fa4-909d-cff1958fec96" + "5d929941-ebd0-4199-a30c-32c1b195088c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172821Z:ac162139-1c32-4fa4-909d-cff1958fec96" + "JIOINDIACENTRAL:20220512T083216Z:5d929941-ebd0-4199-a30c-32c1b195088c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:21 GMT" + "Thu, 12 May 2022 08:32:15 GMT" ], "Content-Length": [ "602" @@ -6624,16 +6564,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7aaa3b7b-8f82-4ace-8748-abeb913dc23d" + "6a9bddc9-4586-4967-85b1-ce6420e29370" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6653,22 +6593,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11980" ], "x-ms-request-id": [ - "b45f1b76-6815-41f9-ab04-6c7adcf5023a" + "2b023eb8-49e6-4da1-9162-5d3f359fbc47" ], "x-ms-correlation-request-id": [ - "b45f1b76-6815-41f9-ab04-6c7adcf5023a" + "2b023eb8-49e6-4da1-9162-5d3f359fbc47" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172821Z:b45f1b76-6815-41f9-ab04-6c7adcf5023a" + "JIOINDIACENTRAL:20220512T083217Z:2b023eb8-49e6-4da1-9162-5d3f359fbc47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:21 GMT" + "Thu, 12 May 2022 08:32:16 GMT" ], "Content-Length": [ "602" @@ -6687,16 +6627,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e418ae46-a93b-44dd-807c-f249322264d1" + "487fe06b-a053-4fcb-a692-900f90b9b3bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6716,22 +6656,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11979" ], "x-ms-request-id": [ - "8272c713-f35b-4ce4-8e4b-28107c2d2374" + "7ec49e42-f2a1-4f45-b063-b49d3428c90d" ], "x-ms-correlation-request-id": [ - "8272c713-f35b-4ce4-8e4b-28107c2d2374" + "7ec49e42-f2a1-4f45-b063-b49d3428c90d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172821Z:8272c713-f35b-4ce4-8e4b-28107c2d2374" + "JIOINDIACENTRAL:20220512T083217Z:7ec49e42-f2a1-4f45-b063-b49d3428c90d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:21 GMT" + "Thu, 12 May 2022 08:32:17 GMT" ], "Content-Length": [ "602" @@ -6750,16 +6690,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "661c21d1-a75a-418c-bdf2-6d00cf8d01e6" + "60ca670f-2a1b-4cac-a958-10e1f891bce9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6779,22 +6719,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11988" ], "x-ms-request-id": [ - "1310d611-92d6-4bd4-bb65-1a7aef5ad69f" + "799bda18-8354-44e4-a271-e8ac94acbe18" ], "x-ms-correlation-request-id": [ - "1310d611-92d6-4bd4-bb65-1a7aef5ad69f" + "799bda18-8354-44e4-a271-e8ac94acbe18" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172822Z:1310d611-92d6-4bd4-bb65-1a7aef5ad69f" + "JIOINDIACENTRAL:20220512T083218Z:799bda18-8354-44e4-a271-e8ac94acbe18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:21 GMT" + "Thu, 12 May 2022 08:32:17 GMT" ], "Content-Length": [ "602" @@ -6813,16 +6753,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00684f0a-7734-459b-b09d-41dd6924e6a8" + "329f3142-5e65-4897-aaf1-0f71d641dbbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6842,22 +6782,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11989" ], "x-ms-request-id": [ - "d6b078b0-e13c-4b58-bbfa-fc171d6c8a18" + "b93f8404-368c-489f-a2b8-4000cf099826" ], "x-ms-correlation-request-id": [ - "d6b078b0-e13c-4b58-bbfa-fc171d6c8a18" + "b93f8404-368c-489f-a2b8-4000cf099826" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172822Z:d6b078b0-e13c-4b58-bbfa-fc171d6c8a18" + "JIOINDIACENTRAL:20220512T083219Z:b93f8404-368c-489f-a2b8-4000cf099826" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:22 GMT" + "Thu, 12 May 2022 08:32:19 GMT" ], "Content-Length": [ "602" @@ -6876,16 +6816,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d93d84c6-359f-451d-8a10-78441d614e76" + "9f21216f-3c42-4da0-9983-81edb9c64e92" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6905,22 +6845,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11988" ], "x-ms-request-id": [ - "429b19ce-9438-4764-9c3b-f3c8129d3007" + "f0a7f032-d1aa-416b-ae48-db0198acdf80" ], "x-ms-correlation-request-id": [ - "429b19ce-9438-4764-9c3b-f3c8129d3007" + "f0a7f032-d1aa-416b-ae48-db0198acdf80" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172822Z:429b19ce-9438-4764-9c3b-f3c8129d3007" + "JIOINDIACENTRAL:20220512T083219Z:f0a7f032-d1aa-416b-ae48-db0198acdf80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:22 GMT" + "Thu, 12 May 2022 08:32:19 GMT" ], "Content-Length": [ "602" @@ -6939,16 +6879,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b81e41e4-4eaf-4ea6-b1d2-87de265f2dbc" + "b9318c50-cded-4e66-97e3-785a20e4daa2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -6968,22 +6908,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11978" ], "x-ms-request-id": [ - "995d5583-074e-4b46-9493-50d3e2672b45" + "62a23054-6952-4c48-ba70-3dd9cf42f99a" ], "x-ms-correlation-request-id": [ - "995d5583-074e-4b46-9493-50d3e2672b45" + "62a23054-6952-4c48-ba70-3dd9cf42f99a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172822Z:995d5583-074e-4b46-9493-50d3e2672b45" + "JIOINDIACENTRAL:20220512T083220Z:62a23054-6952-4c48-ba70-3dd9cf42f99a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:22 GMT" + "Thu, 12 May 2022 08:32:20 GMT" ], "Content-Length": [ "602" @@ -7002,16 +6942,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0846c053-ef43-4d1a-b834-8a3684c52be4" + "6fa20976-6b1c-4848-8074-1798d4815d10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7031,22 +6971,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11987" ], "x-ms-request-id": [ - "288ce932-8abf-42d0-a6c0-7904fa4328f6" + "cdcfc120-3c60-4fb0-83f6-9c115ccdf229" ], "x-ms-correlation-request-id": [ - "288ce932-8abf-42d0-a6c0-7904fa4328f6" + "cdcfc120-3c60-4fb0-83f6-9c115ccdf229" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172823Z:288ce932-8abf-42d0-a6c0-7904fa4328f6" + "JIOINDIACENTRAL:20220512T083221Z:cdcfc120-3c60-4fb0-83f6-9c115ccdf229" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:22 GMT" + "Thu, 12 May 2022 08:32:20 GMT" ], "Content-Length": [ "602" @@ -7065,16 +7005,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afc35c53-2e66-485c-aa9f-e7fe052aeec8" + "7c4f7b44-0494-408d-8e77-74c5f3a48654" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7094,22 +7034,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11981" ], "x-ms-request-id": [ - "9410f712-b514-49e8-a9b7-965d6187a846" + "18b4a40e-fdf5-4be1-bf86-b34da4dd0aa7" ], "x-ms-correlation-request-id": [ - "9410f712-b514-49e8-a9b7-965d6187a846" + "18b4a40e-fdf5-4be1-bf86-b34da4dd0aa7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172823Z:9410f712-b514-49e8-a9b7-965d6187a846" + "JIOINDIACENTRAL:20220512T083222Z:18b4a40e-fdf5-4be1-bf86-b34da4dd0aa7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:23 GMT" + "Thu, 12 May 2022 08:32:21 GMT" ], "Content-Length": [ "602" @@ -7128,16 +7068,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c38eb7ce-b1bb-43d5-a3a1-0778a364690b" + "35ced543-57ab-4221-8c9f-719009d2a9ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7157,22 +7097,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11986" ], "x-ms-request-id": [ - "53f1f654-b3ab-4170-accb-20014c5908c3" + "388ccc75-8527-4214-b133-f8c2b91c1752" ], "x-ms-correlation-request-id": [ - "53f1f654-b3ab-4170-accb-20014c5908c3" + "388ccc75-8527-4214-b133-f8c2b91c1752" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172823Z:53f1f654-b3ab-4170-accb-20014c5908c3" + "JIOINDIACENTRAL:20220512T083222Z:388ccc75-8527-4214-b133-f8c2b91c1752" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:23 GMT" + "Thu, 12 May 2022 08:32:22 GMT" ], "Content-Length": [ "602" @@ -7191,16 +7131,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "791efca1-5a6b-4850-8853-8395c3a30ea3" + "4c8a7e51-04b1-409e-bced-6f0648deb8b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7220,22 +7160,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11985" ], "x-ms-request-id": [ - "f748b853-7f22-4e64-a2a3-51221f4eaff8" + "f5be2f96-f5ad-4cdd-962b-d0366141eadd" ], "x-ms-correlation-request-id": [ - "f748b853-7f22-4e64-a2a3-51221f4eaff8" + "f5be2f96-f5ad-4cdd-962b-d0366141eadd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172823Z:f748b853-7f22-4e64-a2a3-51221f4eaff8" + "JIOINDIACENTRAL:20220512T083223Z:f5be2f96-f5ad-4cdd-962b-d0366141eadd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:23 GMT" + "Thu, 12 May 2022 08:32:22 GMT" ], "Content-Length": [ "602" @@ -7254,16 +7194,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c23de31f-fcf7-421a-8010-f21970cef8f7" + "f8fc6943-7afd-4077-a74c-a03ce7850d39" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7283,22 +7223,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11987" ], "x-ms-request-id": [ - "f0c7afc0-68d9-44a5-85bd-9d0e6eb13070" + "bc8529ef-bd96-40c4-988e-f948f19f21a7" ], "x-ms-correlation-request-id": [ - "f0c7afc0-68d9-44a5-85bd-9d0e6eb13070" + "bc8529ef-bd96-40c4-988e-f948f19f21a7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172824Z:f0c7afc0-68d9-44a5-85bd-9d0e6eb13070" + "JIOINDIACENTRAL:20220512T083225Z:bc8529ef-bd96-40c4-988e-f948f19f21a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:23 GMT" + "Thu, 12 May 2022 08:32:25 GMT" ], "Content-Length": [ "602" @@ -7317,16 +7257,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de66978c-40e2-478f-a8e1-88bd2560cd34" + "051750cb-f9e3-47d8-9a82-2e2780e02fd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7346,22 +7286,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11986" ], "x-ms-request-id": [ - "f48166cb-a5ce-4be2-b813-59bbd0fde98e" + "5a3b5b2c-665c-45ce-805d-3baca9ac6132" ], "x-ms-correlation-request-id": [ - "f48166cb-a5ce-4be2-b813-59bbd0fde98e" + "5a3b5b2c-665c-45ce-805d-3baca9ac6132" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172824Z:f48166cb-a5ce-4be2-b813-59bbd0fde98e" + "JIOINDIACENTRAL:20220512T083225Z:5a3b5b2c-665c-45ce-805d-3baca9ac6132" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:24 GMT" + "Thu, 12 May 2022 08:32:25 GMT" ], "Content-Length": [ "602" @@ -7380,16 +7320,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d6d92a5-c664-42c7-94dd-e89d722dba40" + "5c7853b0-945c-4a00-8fdc-c8d26d39ec4b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7409,22 +7349,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11986" ], "x-ms-request-id": [ - "566a7236-c9c8-463d-8b7d-b853e81d527d" + "063458bf-9cac-4fe3-93f5-df3c5034613b" ], "x-ms-correlation-request-id": [ - "566a7236-c9c8-463d-8b7d-b853e81d527d" + "063458bf-9cac-4fe3-93f5-df3c5034613b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172824Z:566a7236-c9c8-463d-8b7d-b853e81d527d" + "JIOINDIACENTRAL:20220512T083226Z:063458bf-9cac-4fe3-93f5-df3c5034613b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:24 GMT" + "Thu, 12 May 2022 08:32:26 GMT" ], "Content-Length": [ "602" @@ -7443,16 +7383,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7689bc9f-2c65-493f-b90d-c58efc672740" + "755c1173-f979-43e3-8744-b7c1d6953757" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7472,22 +7412,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11987" ], "x-ms-request-id": [ - "67b988c9-3988-486b-ab5b-f6b92182f631" + "b5d3e63c-cdba-4ed8-8dd8-20cd39e5a0ac" ], "x-ms-correlation-request-id": [ - "67b988c9-3988-486b-ab5b-f6b92182f631" + "b5d3e63c-cdba-4ed8-8dd8-20cd39e5a0ac" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172825Z:67b988c9-3988-486b-ab5b-f6b92182f631" + "JIOINDIACENTRAL:20220512T083227Z:b5d3e63c-cdba-4ed8-8dd8-20cd39e5a0ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:24 GMT" + "Thu, 12 May 2022 08:32:26 GMT" ], "Content-Length": [ "602" @@ -7506,16 +7446,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9e07174-fc88-4489-b5e8-b4f4673174fc" + "0fa7bf2f-4573-4aad-bfaf-e660ddcfab38" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7535,22 +7475,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11985" ], "x-ms-request-id": [ - "e8a44ff6-1e20-4770-9e8c-8800f3b0b1fa" + "bb4eb023-8f1a-44bc-b092-c73973f87a10" ], "x-ms-correlation-request-id": [ - "e8a44ff6-1e20-4770-9e8c-8800f3b0b1fa" + "bb4eb023-8f1a-44bc-b092-c73973f87a10" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172825Z:e8a44ff6-1e20-4770-9e8c-8800f3b0b1fa" + "JIOINDIACENTRAL:20220512T083228Z:bb4eb023-8f1a-44bc-b092-c73973f87a10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:24 GMT" + "Thu, 12 May 2022 08:32:27 GMT" ], "Content-Length": [ "602" @@ -7569,16 +7509,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be49c03c-4511-47f9-aad7-afd730b18e4a" + "81df5036-d03c-4715-9a36-bdf9c930b275" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7598,22 +7538,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11977" ], "x-ms-request-id": [ - "5975a996-feb5-4a8e-9f3e-9591d8ba9c6c" + "11580a64-8107-422c-8ab1-86b481f7f9d6" ], "x-ms-correlation-request-id": [ - "5975a996-feb5-4a8e-9f3e-9591d8ba9c6c" + "11580a64-8107-422c-8ab1-86b481f7f9d6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172825Z:5975a996-feb5-4a8e-9f3e-9591d8ba9c6c" + "JIOINDIACENTRAL:20220512T083228Z:11580a64-8107-422c-8ab1-86b481f7f9d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:25 GMT" + "Thu, 12 May 2022 08:32:28 GMT" ], "Content-Length": [ "602" @@ -7632,16 +7572,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "203e3aa4-1b5e-46b4-8521-870371242c54" + "b51b294a-c9d4-44fd-a554-aa4609b52c33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7661,22 +7601,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11984" ], "x-ms-request-id": [ - "304b16d7-9500-4809-a28e-fbbcbd54d871" + "257d43c0-85ff-44ea-b2b5-e161f893db0e" ], "x-ms-correlation-request-id": [ - "304b16d7-9500-4809-a28e-fbbcbd54d871" + "257d43c0-85ff-44ea-b2b5-e161f893db0e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172825Z:304b16d7-9500-4809-a28e-fbbcbd54d871" + "JIOINDIACENTRAL:20220512T083229Z:257d43c0-85ff-44ea-b2b5-e161f893db0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:25 GMT" + "Thu, 12 May 2022 08:32:29 GMT" ], "Content-Length": [ "602" @@ -7695,16 +7635,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe4e2456-f2e6-4542-bdd2-1926f875cd86" + "a6d9d0f0-94ac-4511-9df8-f2e39ec9180c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7724,22 +7664,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "11983" ], "x-ms-request-id": [ - "debd7419-83dc-4571-999f-61d492b6c334" + "8f03579e-6971-4a70-919f-d3eb554e3c0b" ], "x-ms-correlation-request-id": [ - "debd7419-83dc-4571-999f-61d492b6c334" + "8f03579e-6971-4a70-919f-d3eb554e3c0b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172826Z:debd7419-83dc-4571-999f-61d492b6c334" + "JIOINDIACENTRAL:20220512T083230Z:8f03579e-6971-4a70-919f-d3eb554e3c0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:25 GMT" + "Thu, 12 May 2022 08:32:30 GMT" ], "Content-Length": [ "602" @@ -7758,16 +7698,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07ae21aa-c111-4a60-89c5-f199f5304d6b" + "7977b3b4-8fbe-4452-a8f0-8b389724616d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7787,22 +7727,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11985" ], "x-ms-request-id": [ - "9010f122-6847-4af0-8289-7c139844c8fb" + "125a221d-6bae-45e0-851d-5a234ae1a7c4" ], "x-ms-correlation-request-id": [ - "9010f122-6847-4af0-8289-7c139844c8fb" + "125a221d-6bae-45e0-851d-5a234ae1a7c4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172826Z:9010f122-6847-4af0-8289-7c139844c8fb" + "JIOINDIACENTRAL:20220512T083231Z:125a221d-6bae-45e0-851d-5a234ae1a7c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:25 GMT" + "Thu, 12 May 2022 08:32:30 GMT" ], "Content-Length": [ "602" @@ -7821,16 +7761,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f9e1e9d-02eb-4b29-8169-ec684372de7f" + "cb95b804-ad3f-436d-8767-3d8024980fbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7850,22 +7790,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11976" ], "x-ms-request-id": [ - "2e6798bb-e3a3-40ac-a08a-aa5cc8d95ee1" + "3926ef56-0e1f-4a15-9e4b-5febaa4ddd79" ], "x-ms-correlation-request-id": [ - "2e6798bb-e3a3-40ac-a08a-aa5cc8d95ee1" + "3926ef56-0e1f-4a15-9e4b-5febaa4ddd79" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172826Z:2e6798bb-e3a3-40ac-a08a-aa5cc8d95ee1" + "JIOINDIACENTRAL:20220512T083231Z:3926ef56-0e1f-4a15-9e4b-5febaa4ddd79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:26 GMT" + "Thu, 12 May 2022 08:32:31 GMT" ], "Content-Length": [ "602" @@ -7884,16 +7824,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64893849-30b4-43bc-9e52-63b2cdc48492" + "1f9dbe01-a1f9-4a3f-9b8c-c4ec64ea1b30" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7913,22 +7853,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11984" ], "x-ms-request-id": [ - "c5fc1c12-5172-4c26-990a-edbc4919e629" + "a96887ec-e3ef-4a00-b5c9-cf6a4949cc87" ], "x-ms-correlation-request-id": [ - "c5fc1c12-5172-4c26-990a-edbc4919e629" + "a96887ec-e3ef-4a00-b5c9-cf6a4949cc87" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172826Z:c5fc1c12-5172-4c26-990a-edbc4919e629" + "JIOINDIACENTRAL:20220512T083232Z:a96887ec-e3ef-4a00-b5c9-cf6a4949cc87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:26 GMT" + "Thu, 12 May 2022 08:32:32 GMT" ], "Content-Length": [ "602" @@ -7947,16 +7887,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf20f151-0f32-434b-9f12-4ff5125897ea" + "bc009e43-c038-45ed-b73d-336a6c2d76c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -7976,22 +7916,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11975" ], "x-ms-request-id": [ - "78358ab3-6a2c-4b5b-9889-71a89d357885" + "d0739b34-5451-4e75-ab40-60b3ed4af06f" ], "x-ms-correlation-request-id": [ - "78358ab3-6a2c-4b5b-9889-71a89d357885" + "d0739b34-5451-4e75-ab40-60b3ed4af06f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172827Z:78358ab3-6a2c-4b5b-9889-71a89d357885" + "JIOINDIACENTRAL:20220512T083233Z:d0739b34-5451-4e75-ab40-60b3ed4af06f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:26 GMT" + "Thu, 12 May 2022 08:32:32 GMT" ], "Content-Length": [ "602" @@ -8010,16 +7950,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81142c68-4563-4bb9-9df5-dbdfaea489f0" + "e58b2871-fab3-4c6f-9759-1fdd9f6f5b7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8039,22 +7979,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11974" ], "x-ms-request-id": [ - "39f3bc72-9cbc-4999-8683-15b36da83f07" + "35b4a8b4-d3cf-4660-af1b-45a46de7b013" ], "x-ms-correlation-request-id": [ - "39f3bc72-9cbc-4999-8683-15b36da83f07" + "35b4a8b4-d3cf-4660-af1b-45a46de7b013" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172827Z:39f3bc72-9cbc-4999-8683-15b36da83f07" + "JIOINDIACENTRAL:20220512T083233Z:35b4a8b4-d3cf-4660-af1b-45a46de7b013" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:27 GMT" + "Thu, 12 May 2022 08:32:33 GMT" ], "Content-Length": [ "602" @@ -8073,16 +8013,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "931f031b-77ab-4942-a6db-bfa5e17e7998" + "a03a183e-d931-4713-b2fb-e4dfab64d66f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8102,22 +8042,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11973" ], "x-ms-request-id": [ - "91b75992-ad2d-42d7-a6c2-235abe7b0e08" + "a4440b03-527f-4529-98ce-8ae8eae13521" ], "x-ms-correlation-request-id": [ - "91b75992-ad2d-42d7-a6c2-235abe7b0e08" + "a4440b03-527f-4529-98ce-8ae8eae13521" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172827Z:91b75992-ad2d-42d7-a6c2-235abe7b0e08" + "JIOINDIACENTRAL:20220512T083234Z:a4440b03-527f-4529-98ce-8ae8eae13521" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:27 GMT" + "Thu, 12 May 2022 08:32:34 GMT" ], "Content-Length": [ "602" @@ -8136,16 +8076,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aee995f1-f6f9-4f1f-ad66-6eeb91cf2ab4" + "e9239828-a4aa-40c9-971e-12195e68eb0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8165,22 +8105,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "11986" ], "x-ms-request-id": [ - "9054457b-bf82-47e8-8319-7fda5e3bbfc5" + "76367dc3-e525-4cab-a096-c41ee6cd9261" ], "x-ms-correlation-request-id": [ - "9054457b-bf82-47e8-8319-7fda5e3bbfc5" + "76367dc3-e525-4cab-a096-c41ee6cd9261" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172828Z:9054457b-bf82-47e8-8319-7fda5e3bbfc5" + "JIOINDIACENTRAL:20220512T083236Z:76367dc3-e525-4cab-a096-c41ee6cd9261" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:27 GMT" + "Thu, 12 May 2022 08:32:35 GMT" ], "Content-Length": [ "602" @@ -8199,16 +8139,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dbc803f-ab64-458e-a256-f6f30ffdc8a9" + "704fba10-f425-4443-bb84-23626186af2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8228,22 +8168,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11980" ], "x-ms-request-id": [ - "44d49a05-3745-4c82-9613-d073c3643926" + "ce8ffcd1-656f-4d2f-a76d-6a255c425c79" ], "x-ms-correlation-request-id": [ - "44d49a05-3745-4c82-9613-d073c3643926" + "ce8ffcd1-656f-4d2f-a76d-6a255c425c79" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172828Z:44d49a05-3745-4c82-9613-d073c3643926" + "JIOINDIACENTRAL:20220512T083236Z:ce8ffcd1-656f-4d2f-a76d-6a255c425c79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:27 GMT" + "Thu, 12 May 2022 08:32:36 GMT" ], "Content-Length": [ "602" @@ -8262,16 +8202,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a1c9e7f-b2db-48fe-87e7-db8db5f3609e" + "80452d7a-1f9b-4175-a9b1-37e55ce4936d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8291,22 +8231,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11983" ], "x-ms-request-id": [ - "3089b399-66b1-45c3-b6c3-b9ac770d21e6" + "ee3a1a63-b585-49f2-b540-46f17ea40fa9" ], "x-ms-correlation-request-id": [ - "3089b399-66b1-45c3-b6c3-b9ac770d21e6" + "ee3a1a63-b585-49f2-b540-46f17ea40fa9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172828Z:3089b399-66b1-45c3-b6c3-b9ac770d21e6" + "JIOINDIACENTRAL:20220512T083237Z:ee3a1a63-b585-49f2-b540-46f17ea40fa9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:28 GMT" + "Thu, 12 May 2022 08:32:36 GMT" ], "Content-Length": [ "602" @@ -8325,16 +8265,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7885e15-ec4a-4eaa-8fc2-58ac15f9ecb8" + "fd441a83-4891-4001-9785-81b5c55d6d43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8354,22 +8294,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11982" ], "x-ms-request-id": [ - "86c58845-5e39-4aa5-a4b0-7489f916f2b4" + "aa2b687d-6818-41d6-be7b-b1e37cedc5b5" ], "x-ms-correlation-request-id": [ - "86c58845-5e39-4aa5-a4b0-7489f916f2b4" + "aa2b687d-6818-41d6-be7b-b1e37cedc5b5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172828Z:86c58845-5e39-4aa5-a4b0-7489f916f2b4" + "JIOINDIACENTRAL:20220512T083238Z:aa2b687d-6818-41d6-be7b-b1e37cedc5b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:28 GMT" + "Thu, 12 May 2022 08:32:37 GMT" ], "Content-Length": [ "602" @@ -8388,16 +8328,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3882d45-a53d-4663-9fb3-9227ebaf2343" + "58ad3e33-e301-4cb4-a010-9ef8fe4a2201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8417,22 +8357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11984" ], "x-ms-request-id": [ - "05475390-8212-41c7-8862-a838e07f8664" + "bab25030-66cf-4124-b791-b0ff208f5b58" ], "x-ms-correlation-request-id": [ - "05475390-8212-41c7-8862-a838e07f8664" + "bab25030-66cf-4124-b791-b0ff208f5b58" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172829Z:05475390-8212-41c7-8862-a838e07f8664" + "JIOINDIACENTRAL:20220512T083239Z:bab25030-66cf-4124-b791-b0ff208f5b58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:28 GMT" + "Thu, 12 May 2022 08:32:39 GMT" ], "Content-Length": [ "602" @@ -8451,16 +8391,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac9beb07-e6b9-4012-b43a-cb4b21bb7b2b" + "b23604d7-1bab-4d69-bc6b-1ee6edff378b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8480,22 +8420,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11982" ], "x-ms-request-id": [ - "e3a84609-467e-422a-83fc-89a16e66a2ca" + "8070e5a8-46af-457b-b966-b59895d3200d" ], "x-ms-correlation-request-id": [ - "e3a84609-467e-422a-83fc-89a16e66a2ca" + "8070e5a8-46af-457b-b966-b59895d3200d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172829Z:e3a84609-467e-422a-83fc-89a16e66a2ca" + "JIOINDIACENTRAL:20220512T083240Z:8070e5a8-46af-457b-b966-b59895d3200d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:28 GMT" + "Thu, 12 May 2022 08:32:39 GMT" ], "Content-Length": [ "602" @@ -8514,16 +8454,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca8f10ca-4598-42f1-828e-e75a061c87fc" + "a88d2e16-59d2-4a39-9a70-1431c186da9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8543,22 +8483,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11981" ], "x-ms-request-id": [ - "f096b6bf-a8ff-4ae4-bb83-06b057d309c7" + "47b59135-a606-4a9c-a229-ecf096b796a0" ], "x-ms-correlation-request-id": [ - "f096b6bf-a8ff-4ae4-bb83-06b057d309c7" + "47b59135-a606-4a9c-a229-ecf096b796a0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172829Z:f096b6bf-a8ff-4ae4-bb83-06b057d309c7" + "JIOINDIACENTRAL:20220512T083241Z:47b59135-a606-4a9c-a229-ecf096b796a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:29 GMT" + "Thu, 12 May 2022 08:32:40 GMT" ], "Content-Length": [ "602" @@ -8577,16 +8517,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "816b829a-e1a5-4fab-90d7-487c624737a8" + "a4b217aa-f092-4e0e-a764-209e6239aab8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8606,22 +8546,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11981" ], "x-ms-request-id": [ - "e81624b2-351f-4d4c-8e6c-8b1bf15a2cd8" + "da417c02-34d1-40b6-abe7-71035ad28b5f" ], "x-ms-correlation-request-id": [ - "e81624b2-351f-4d4c-8e6c-8b1bf15a2cd8" + "da417c02-34d1-40b6-abe7-71035ad28b5f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172829Z:e81624b2-351f-4d4c-8e6c-8b1bf15a2cd8" + "JIOINDIACENTRAL:20220512T083241Z:da417c02-34d1-40b6-abe7-71035ad28b5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:29 GMT" + "Thu, 12 May 2022 08:32:41 GMT" ], "Content-Length": [ "602" @@ -8640,16 +8580,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "606c7e82-8c58-40e3-a6b4-963a1f886c77" + "f549309c-5b48-4d89-ae23-104f2584f283" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8669,22 +8609,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11972" ], "x-ms-request-id": [ - "b0c5da41-fc2c-447e-8064-abc2f41ddab4" + "1109fafe-e904-4658-82c8-8a388315d6af" ], "x-ms-correlation-request-id": [ - "b0c5da41-fc2c-447e-8064-abc2f41ddab4" + "1109fafe-e904-4658-82c8-8a388315d6af" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172830Z:b0c5da41-fc2c-447e-8064-abc2f41ddab4" + "JIOINDIACENTRAL:20220512T083242Z:1109fafe-e904-4658-82c8-8a388315d6af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:29 GMT" + "Thu, 12 May 2022 08:32:42 GMT" ], "Content-Length": [ "602" @@ -8703,16 +8643,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c26a96b2-b353-4a62-b194-5e112659b584" + "1490e793-7efd-40b8-93e4-549a35cc4dd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8732,22 +8672,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11983" ], "x-ms-request-id": [ - "3d8f3403-f7eb-4099-93d7-954b71675aae" + "39dda27a-27bb-49cb-8586-d6c46bb73202" ], "x-ms-correlation-request-id": [ - "3d8f3403-f7eb-4099-93d7-954b71675aae" + "39dda27a-27bb-49cb-8586-d6c46bb73202" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172830Z:3d8f3403-f7eb-4099-93d7-954b71675aae" + "JIOINDIACENTRAL:20220512T083243Z:39dda27a-27bb-49cb-8586-d6c46bb73202" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:30 GMT" + "Thu, 12 May 2022 08:32:42 GMT" ], "Content-Length": [ "602" @@ -8766,16 +8706,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25f2f18a-f44c-4d47-9cc3-1b722dca963b" + "25f5a907-2f78-4d95-aa6b-56728ff9c05b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8795,22 +8735,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11980" ], "x-ms-request-id": [ - "b904daab-a65b-4cbd-af46-6d87786378b2" + "db64369c-677b-4603-a43d-2943ce99a65d" ], "x-ms-correlation-request-id": [ - "b904daab-a65b-4cbd-af46-6d87786378b2" + "db64369c-677b-4603-a43d-2943ce99a65d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172830Z:b904daab-a65b-4cbd-af46-6d87786378b2" + "JIOINDIACENTRAL:20220512T083244Z:db64369c-677b-4603-a43d-2943ce99a65d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:30 GMT" + "Thu, 12 May 2022 08:32:43 GMT" ], "Content-Length": [ "602" @@ -8829,16 +8769,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2222962-0b1a-4a90-8e18-f5d5b679a05f" + "29a7f736-61ab-4693-98a4-61d6e05fe508" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8858,22 +8798,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11985" ], "x-ms-request-id": [ - "56ca458e-e815-4dd8-967d-160510d16a0c" + "418b0323-a800-48b2-92b0-2c71894691f3" ], "x-ms-correlation-request-id": [ - "56ca458e-e815-4dd8-967d-160510d16a0c" + "418b0323-a800-48b2-92b0-2c71894691f3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172831Z:56ca458e-e815-4dd8-967d-160510d16a0c" + "JIOINDIACENTRAL:20220512T083245Z:418b0323-a800-48b2-92b0-2c71894691f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:30 GMT" + "Thu, 12 May 2022 08:32:44 GMT" ], "Content-Length": [ "602" @@ -8892,16 +8832,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c84a85bf-254e-4b33-9169-375474389f52" + "653418ff-82f8-4ee8-981e-be396acf7bd2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8921,22 +8861,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11980" ], "x-ms-request-id": [ - "8802d1a6-3203-443f-bac3-80c55167d04b" + "f4c18fec-aa2f-4d70-a74c-e543c5cc1509" ], "x-ms-correlation-request-id": [ - "8802d1a6-3203-443f-bac3-80c55167d04b" + "f4c18fec-aa2f-4d70-a74c-e543c5cc1509" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172831Z:8802d1a6-3203-443f-bac3-80c55167d04b" + "JIOINDIACENTRAL:20220512T083245Z:f4c18fec-aa2f-4d70-a74c-e543c5cc1509" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:30 GMT" + "Thu, 12 May 2022 08:32:45 GMT" ], "Content-Length": [ "602" @@ -8955,16 +8895,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "571e93f9-ffcc-4c72-a36b-be6c44f554de" + "ffcf2da7-348e-44a1-bd25-525f0a06ae65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -8984,22 +8924,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "11979" ], "x-ms-request-id": [ - "7537677b-b612-4f92-93b1-ad2b8e4a3593" + "8334408a-23dc-4a50-a738-108bda34f02f" ], "x-ms-correlation-request-id": [ - "7537677b-b612-4f92-93b1-ad2b8e4a3593" + "8334408a-23dc-4a50-a738-108bda34f02f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172831Z:7537677b-b612-4f92-93b1-ad2b8e4a3593" + "JIOINDIACENTRAL:20220512T083246Z:8334408a-23dc-4a50-a738-108bda34f02f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:31 GMT" + "Thu, 12 May 2022 08:32:46 GMT" ], "Content-Length": [ "602" @@ -9018,16 +8958,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfbfa637-c448-461f-94e5-91698d52c1d8" + "7611fa28-a9fb-461f-ba36-18145fb74dd5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9047,22 +8987,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11979" ], "x-ms-request-id": [ - "fc6c67da-103e-407b-a7df-7275dfb00c51" + "074135c1-c979-402a-88cb-b441f9d0f5c5" ], "x-ms-correlation-request-id": [ - "fc6c67da-103e-407b-a7df-7275dfb00c51" + "074135c1-c979-402a-88cb-b441f9d0f5c5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172831Z:fc6c67da-103e-407b-a7df-7275dfb00c51" + "JIOINDIACENTRAL:20220512T083247Z:074135c1-c979-402a-88cb-b441f9d0f5c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:31 GMT" + "Thu, 12 May 2022 08:32:47 GMT" ], "Content-Length": [ "602" @@ -9081,16 +9021,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d004e36-d37c-4438-bd7c-acb26a57b95b" + "bc5b4a4b-fafd-45af-96ab-267752168dea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9110,22 +9050,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11984" ], "x-ms-request-id": [ - "d2df91c9-e6b3-49f9-a7ed-36466406a8d6" + "4be1bed3-6c82-4ae5-95c4-23870692a948" ], "x-ms-correlation-request-id": [ - "d2df91c9-e6b3-49f9-a7ed-36466406a8d6" + "4be1bed3-6c82-4ae5-95c4-23870692a948" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172832Z:d2df91c9-e6b3-49f9-a7ed-36466406a8d6" + "JIOINDIACENTRAL:20220512T083248Z:4be1bed3-6c82-4ae5-95c4-23870692a948" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:31 GMT" + "Thu, 12 May 2022 08:32:47 GMT" ], "Content-Length": [ "602" @@ -9144,16 +9084,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9b79c9b-5d41-48e9-95fc-c42d41147c88" + "9a6ee8ab-40f9-49e3-9dd5-20f5d85fd8be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9173,22 +9113,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11994" ], "x-ms-request-id": [ - "fa0db7e8-fcfe-4e3f-a560-a1a6940d6827" + "8beda082-19f0-405c-8345-e1d12f00aee1" ], "x-ms-correlation-request-id": [ - "fa0db7e8-fcfe-4e3f-a560-a1a6940d6827" + "8beda082-19f0-405c-8345-e1d12f00aee1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172832Z:fa0db7e8-fcfe-4e3f-a560-a1a6940d6827" + "JIOINDIACENTRAL:20220512T083249Z:8beda082-19f0-405c-8345-e1d12f00aee1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:31 GMT" + "Thu, 12 May 2022 08:32:48 GMT" ], "Content-Length": [ "602" @@ -9207,16 +9147,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95fd83df-648f-47bf-87de-18e672694f59" + "a14c816e-3dd1-4bc4-8063-e36d4d5daec2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9236,22 +9176,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11982" ], "x-ms-request-id": [ - "5367ad2a-a4bd-4239-9d60-b88af270e2b6" + "553d2aa9-808c-4852-a975-a47625f0ae0f" ], "x-ms-correlation-request-id": [ - "5367ad2a-a4bd-4239-9d60-b88af270e2b6" + "553d2aa9-808c-4852-a975-a47625f0ae0f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172832Z:5367ad2a-a4bd-4239-9d60-b88af270e2b6" + "JIOINDIACENTRAL:20220512T083250Z:553d2aa9-808c-4852-a975-a47625f0ae0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:32 GMT" + "Thu, 12 May 2022 08:32:50 GMT" ], "Content-Length": [ "602" @@ -9270,16 +9210,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eedeff0-a1c3-47ab-b098-90b40b0357fc" + "c72faae2-ee86-4747-b64d-c4802b92585a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9299,22 +9239,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11978" ], "x-ms-request-id": [ - "c2d05072-99e7-486c-bd08-f59ec02b6a0b" + "e4ed1f97-b66f-4ac3-b802-fd8f0db90381" ], "x-ms-correlation-request-id": [ - "c2d05072-99e7-486c-bd08-f59ec02b6a0b" + "e4ed1f97-b66f-4ac3-b802-fd8f0db90381" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172832Z:c2d05072-99e7-486c-bd08-f59ec02b6a0b" + "JIOINDIACENTRAL:20220512T083251Z:e4ed1f97-b66f-4ac3-b802-fd8f0db90381" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:32 GMT" + "Thu, 12 May 2022 08:32:51 GMT" ], "Content-Length": [ "602" @@ -9333,16 +9273,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e84f399-a638-4362-a4e0-ad60e8a51cb1" + "20a0a22e-7632-4854-845f-1f62f5c73b25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9362,22 +9302,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11981" ], "x-ms-request-id": [ - "cc5fece8-e493-450d-a436-6bc446f0828e" + "d3b0dc1d-da24-4c66-bf6f-702f6dc5c421" ], "x-ms-correlation-request-id": [ - "cc5fece8-e493-450d-a436-6bc446f0828e" + "d3b0dc1d-da24-4c66-bf6f-702f6dc5c421" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172833Z:cc5fece8-e493-450d-a436-6bc446f0828e" + "JIOINDIACENTRAL:20220512T083252Z:d3b0dc1d-da24-4c66-bf6f-702f6dc5c421" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:32 GMT" + "Thu, 12 May 2022 08:32:51 GMT" ], "Content-Length": [ "602" @@ -9396,16 +9336,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f237dc06-c13d-4d32-844a-87f5090e45aa" + "f2a16860-8cf0-48ac-9cb9-1822b200f704" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9425,22 +9365,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11985" ], "x-ms-request-id": [ - "2b876296-68cd-4623-b211-9f818ff6d8d6" + "399584f2-a0ca-417f-a60e-323376231cda" ], "x-ms-correlation-request-id": [ - "2b876296-68cd-4623-b211-9f818ff6d8d6" + "399584f2-a0ca-417f-a60e-323376231cda" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172833Z:2b876296-68cd-4623-b211-9f818ff6d8d6" + "JIOINDIACENTRAL:20220512T083253Z:399584f2-a0ca-417f-a60e-323376231cda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:32 GMT" + "Thu, 12 May 2022 08:32:52 GMT" ], "Content-Length": [ "602" @@ -9459,16 +9399,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbc495ee-cda8-4d05-9668-67d3ad9c537d" + "86bb8a99-2de1-4eaf-ae39-6ef2082b56fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9488,22 +9428,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "11978" ], "x-ms-request-id": [ - "063086a2-5e97-4840-825a-d144978e8c6c" + "c0e02a10-29de-4a73-90d1-1fed17dee195" ], "x-ms-correlation-request-id": [ - "063086a2-5e97-4840-825a-d144978e8c6c" + "c0e02a10-29de-4a73-90d1-1fed17dee195" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172833Z:063086a2-5e97-4840-825a-d144978e8c6c" + "JIOINDIACENTRAL:20220512T083254Z:c0e02a10-29de-4a73-90d1-1fed17dee195" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:33 GMT" + "Thu, 12 May 2022 08:32:54 GMT" ], "Content-Length": [ "602" @@ -9522,16 +9462,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e4de8a5-358e-4d76-b4f2-e6e626a43fb2" + "ef4184be-d250-40b7-83a7-978fc6cf0f30" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9551,22 +9491,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11980" ], "x-ms-request-id": [ - "e5b010af-22c3-45b2-8780-e00b23d3a56c" + "7969d966-7ec9-4df4-b928-c49e19b2c981" ], "x-ms-correlation-request-id": [ - "e5b010af-22c3-45b2-8780-e00b23d3a56c" + "7969d966-7ec9-4df4-b928-c49e19b2c981" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172834Z:e5b010af-22c3-45b2-8780-e00b23d3a56c" + "JIOINDIACENTRAL:20220512T083255Z:7969d966-7ec9-4df4-b928-c49e19b2c981" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:33 GMT" + "Thu, 12 May 2022 08:32:55 GMT" ], "Content-Length": [ "602" @@ -9585,16 +9525,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "408ed3df-74af-4519-87a4-e747cda8939e" + "8e5a352f-af44-4d9c-b200-c78509e5834f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9614,22 +9554,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11977" ], "x-ms-request-id": [ - "7918892a-bb81-4907-9031-ea210dfb6a8e" + "7653b88a-3f9d-4ecc-8820-8e9cece5b776" ], "x-ms-correlation-request-id": [ - "7918892a-bb81-4907-9031-ea210dfb6a8e" + "7653b88a-3f9d-4ecc-8820-8e9cece5b776" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172834Z:7918892a-bb81-4907-9031-ea210dfb6a8e" + "JIOINDIACENTRAL:20220512T083256Z:7653b88a-3f9d-4ecc-8820-8e9cece5b776" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:33 GMT" + "Thu, 12 May 2022 08:32:56 GMT" ], "Content-Length": [ "602" @@ -9648,16 +9588,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bac1545-ca41-4cd7-9eae-90930f764633" + "af902fcd-22fe-482d-8c16-0874a4038951" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9677,22 +9617,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11977" ], "x-ms-request-id": [ - "2c947001-04f1-4ef4-a56d-ed31028a094f" + "10550f0c-d361-4c9c-838a-115c2093a47b" ], "x-ms-correlation-request-id": [ - "2c947001-04f1-4ef4-a56d-ed31028a094f" + "10550f0c-d361-4c9c-838a-115c2093a47b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172834Z:2c947001-04f1-4ef4-a56d-ed31028a094f" + "JIOINDIACENTRAL:20220512T083257Z:10550f0c-d361-4c9c-838a-115c2093a47b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:33 GMT" + "Thu, 12 May 2022 08:32:56 GMT" ], "Content-Length": [ "602" @@ -9711,16 +9651,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a286eb40-0789-4064-9303-f71b1e8500bd" + "59e1b839-e3f9-49f4-8100-ae2cb848e3fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9740,22 +9680,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11976" ], "x-ms-request-id": [ - "8466b6ea-ff60-4d59-a6db-b6794833a5fe" + "b9b73b12-9182-49f6-8421-f040e4bd35da" ], "x-ms-correlation-request-id": [ - "8466b6ea-ff60-4d59-a6db-b6794833a5fe" + "b9b73b12-9182-49f6-8421-f040e4bd35da" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172834Z:8466b6ea-ff60-4d59-a6db-b6794833a5fe" + "JIOINDIACENTRAL:20220512T083257Z:b9b73b12-9182-49f6-8421-f040e4bd35da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:34 GMT" + "Thu, 12 May 2022 08:32:57 GMT" ], "Content-Length": [ "602" @@ -9774,16 +9714,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c16c1c11-6c5d-4706-b041-03e1eddeadc9" + "34f96af8-29bf-4d35-8ab1-36ec3816d5cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9803,22 +9743,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11983" ], "x-ms-request-id": [ - "4318780d-7f53-4d1c-a018-f6ec5ad87657" + "c44594ee-d4ed-4ec5-b724-77d4e2217c9a" ], "x-ms-correlation-request-id": [ - "4318780d-7f53-4d1c-a018-f6ec5ad87657" + "c44594ee-d4ed-4ec5-b724-77d4e2217c9a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172835Z:4318780d-7f53-4d1c-a018-f6ec5ad87657" + "JIOINDIACENTRAL:20220512T083258Z:c44594ee-d4ed-4ec5-b724-77d4e2217c9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:34 GMT" + "Thu, 12 May 2022 08:32:57 GMT" ], "Content-Length": [ "602" @@ -9837,16 +9777,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f93f38f3-2dc4-4791-96e3-3bd7877a43d8" + "4e84b58d-778e-4379-bbca-a63c2df7e52f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9866,22 +9806,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11986" ], "x-ms-request-id": [ - "70bdc12c-1152-4ebb-8c8e-5dd916af4b6c" + "578f0d57-2f69-41d2-a892-eac9ad43739c" ], "x-ms-correlation-request-id": [ - "70bdc12c-1152-4ebb-8c8e-5dd916af4b6c" + "578f0d57-2f69-41d2-a892-eac9ad43739c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172835Z:70bdc12c-1152-4ebb-8c8e-5dd916af4b6c" + "JIOINDIACENTRAL:20220512T083259Z:578f0d57-2f69-41d2-a892-eac9ad43739c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:34 GMT" + "Thu, 12 May 2022 08:32:59 GMT" ], "Content-Length": [ "602" @@ -9900,16 +9840,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89d1b6c1-330a-4889-8d61-b4b3fa387472" + "e667267e-74ac-4cfc-a12f-0b76123b962a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9929,22 +9869,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11975" ], "x-ms-request-id": [ - "da1e311e-93c4-4603-b97c-6d28ad104907" + "b2ce47d8-3b59-4b72-9dd9-a60348407fa9" ], "x-ms-correlation-request-id": [ - "da1e311e-93c4-4603-b97c-6d28ad104907" + "b2ce47d8-3b59-4b72-9dd9-a60348407fa9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172835Z:da1e311e-93c4-4603-b97c-6d28ad104907" + "JIOINDIACENTRAL:20220512T083300Z:b2ce47d8-3b59-4b72-9dd9-a60348407fa9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:35 GMT" + "Thu, 12 May 2022 08:32:59 GMT" ], "Content-Length": [ "602" @@ -9963,16 +9903,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17fc9802-1e4b-4e02-bf1f-5dd92e59d001" + "53d8b8e4-db4d-4061-b67e-32cd450a2f0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -9992,22 +9932,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11971" ], "x-ms-request-id": [ - "cbabc346-92d7-4483-9769-68104db68bd9" + "6288fd1c-7177-480d-896f-76fdd71ba718" ], "x-ms-correlation-request-id": [ - "cbabc346-92d7-4483-9769-68104db68bd9" + "6288fd1c-7177-480d-896f-76fdd71ba718" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172835Z:cbabc346-92d7-4483-9769-68104db68bd9" + "JIOINDIACENTRAL:20220512T083301Z:6288fd1c-7177-480d-896f-76fdd71ba718" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:35 GMT" + "Thu, 12 May 2022 08:33:01 GMT" ], "Content-Length": [ "602" @@ -10026,16 +9966,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4742a2bf-590d-444a-b87f-a1cac90df301" + "79e3840f-4744-473e-868e-3f2a0153999d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10055,22 +9995,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11970" ], "x-ms-request-id": [ - "55327801-ce0d-420a-bdb5-9af0ef993c30" + "a89754e1-5c2f-465c-bf6d-4d823606a158" ], "x-ms-correlation-request-id": [ - "55327801-ce0d-420a-bdb5-9af0ef993c30" + "a89754e1-5c2f-465c-bf6d-4d823606a158" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172836Z:55327801-ce0d-420a-bdb5-9af0ef993c30" + "JIOINDIACENTRAL:20220512T083302Z:a89754e1-5c2f-465c-bf6d-4d823606a158" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:35 GMT" + "Thu, 12 May 2022 08:33:02 GMT" ], "Content-Length": [ "602" @@ -10089,16 +10029,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba85596d-0071-4989-b59d-0782b61af527" + "19c827a5-ce94-40e8-b2a0-dcf22d4bcff7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10118,22 +10058,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11976" ], "x-ms-request-id": [ - "8794d8e4-2f7b-4aa4-843e-e95b13677f9e" + "459b28bc-afb5-4255-9cc5-a8e6923e565d" ], "x-ms-correlation-request-id": [ - "8794d8e4-2f7b-4aa4-843e-e95b13677f9e" + "459b28bc-afb5-4255-9cc5-a8e6923e565d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172836Z:8794d8e4-2f7b-4aa4-843e-e95b13677f9e" + "JIOINDIACENTRAL:20220512T083303Z:459b28bc-afb5-4255-9cc5-a8e6923e565d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:35 GMT" + "Thu, 12 May 2022 08:33:03 GMT" ], "Content-Length": [ "602" @@ -10152,16 +10092,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21c6d5ca-943c-452c-bbf2-0ccddf1985b7" + "e0d75cb1-d176-4b7b-a4d0-9818a9013bfe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10181,22 +10121,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11969" ], "x-ms-request-id": [ - "52c821ac-5f2b-4099-8fb3-eaeecf736e51" + "3ebc97bf-979f-4bb6-a317-db9585347b3e" ], "x-ms-correlation-request-id": [ - "52c821ac-5f2b-4099-8fb3-eaeecf736e51" + "3ebc97bf-979f-4bb6-a317-db9585347b3e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172836Z:52c821ac-5f2b-4099-8fb3-eaeecf736e51" + "JIOINDIACENTRAL:20220512T083303Z:3ebc97bf-979f-4bb6-a317-db9585347b3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:36 GMT" + "Thu, 12 May 2022 08:33:03 GMT" ], "Content-Length": [ "602" @@ -10215,16 +10155,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61677720-a76c-438e-a770-cf752a291ef3" + "b14da0f7-6413-4c34-b29e-e1821bb6262e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10244,22 +10184,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11984" ], "x-ms-request-id": [ - "c5724844-53c2-4d5e-91a8-b54a1e839a17" + "02f499ab-411f-4f33-b1df-3440832e8b58" ], "x-ms-correlation-request-id": [ - "c5724844-53c2-4d5e-91a8-b54a1e839a17" + "02f499ab-411f-4f33-b1df-3440832e8b58" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172836Z:c5724844-53c2-4d5e-91a8-b54a1e839a17" + "JIOINDIACENTRAL:20220512T083304Z:02f499ab-411f-4f33-b1df-3440832e8b58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:36 GMT" + "Thu, 12 May 2022 08:33:03 GMT" ], "Content-Length": [ "602" @@ -10278,16 +10218,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f7b9e7c-fb55-41f2-bfbf-9ea4b9ecd941" + "863a840a-6c84-4c47-aa0b-f906b9487599" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10307,22 +10247,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11968" ], "x-ms-request-id": [ - "ccc4a9df-e416-444f-8445-24d6c83d94eb" + "7224ffa1-4b1c-4547-a66f-8342231c866d" ], "x-ms-correlation-request-id": [ - "ccc4a9df-e416-444f-8445-24d6c83d94eb" + "7224ffa1-4b1c-4547-a66f-8342231c866d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172837Z:ccc4a9df-e416-444f-8445-24d6c83d94eb" + "JIOINDIACENTRAL:20220512T083305Z:7224ffa1-4b1c-4547-a66f-8342231c866d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:36 GMT" + "Thu, 12 May 2022 08:33:04 GMT" ], "Content-Length": [ "602" @@ -10341,16 +10281,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "494a5127-e266-4f51-b7f6-d00d5054e0ea" + "a404f7aa-73ad-4d90-ace1-060a99c4087c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10370,22 +10310,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11967" ], "x-ms-request-id": [ - "33881393-4952-4ca6-b7ac-2c3b4e0ca336" + "1b9eb3d9-4298-4054-a5dd-39deec0afbc9" ], "x-ms-correlation-request-id": [ - "33881393-4952-4ca6-b7ac-2c3b4e0ca336" + "1b9eb3d9-4298-4054-a5dd-39deec0afbc9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172837Z:33881393-4952-4ca6-b7ac-2c3b4e0ca336" + "JIOINDIACENTRAL:20220512T083306Z:1b9eb3d9-4298-4054-a5dd-39deec0afbc9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:36 GMT" + "Thu, 12 May 2022 08:33:05 GMT" ], "Content-Length": [ "602" @@ -10404,16 +10344,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8febb3ac-ed5c-41bd-bcbf-646effb43b72" + "df46171d-3913-4aeb-a6a9-2d16c00c9c28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10433,22 +10373,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11979" ], "x-ms-request-id": [ - "d6b4db15-28f6-4280-90fa-407a8659c86b" + "d1b8b173-dff2-489a-9796-c848e685ced1" ], "x-ms-correlation-request-id": [ - "d6b4db15-28f6-4280-90fa-407a8659c86b" + "d1b8b173-dff2-489a-9796-c848e685ced1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172837Z:d6b4db15-28f6-4280-90fa-407a8659c86b" + "JIOINDIACENTRAL:20220512T083306Z:d1b8b173-dff2-489a-9796-c848e685ced1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:37 GMT" + "Thu, 12 May 2022 08:33:06 GMT" ], "Content-Length": [ "602" @@ -10467,16 +10407,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d7a778f-d818-4b7e-88e4-f9d8f20fe2fc" + "006657cc-6e73-4cba-b71f-4b5c5abb57ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10496,22 +10436,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11966" ], "x-ms-request-id": [ - "3c7b47a9-0e1e-41ac-8539-5c6998286d0e" + "0f66622e-8fcf-4ebd-bb33-280c857bc6f2" ], "x-ms-correlation-request-id": [ - "3c7b47a9-0e1e-41ac-8539-5c6998286d0e" + "0f66622e-8fcf-4ebd-bb33-280c857bc6f2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172838Z:3c7b47a9-0e1e-41ac-8539-5c6998286d0e" + "JIOINDIACENTRAL:20220512T083307Z:0f66622e-8fcf-4ebd-bb33-280c857bc6f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:37 GMT" + "Thu, 12 May 2022 08:33:07 GMT" ], "Content-Length": [ "602" @@ -10530,16 +10470,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20b68b4f-344e-46f9-ac1b-e3ee10d577d3" + "c8b83c2d-b8b7-4b3c-ba97-966cc4b0b213" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10559,22 +10499,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11985" ], "x-ms-request-id": [ - "7702bf3e-c2d0-4712-8fc6-282b9c65adab" + "24fd8c6c-5d19-41ae-9561-45f678b7193b" ], "x-ms-correlation-request-id": [ - "7702bf3e-c2d0-4712-8fc6-282b9c65adab" + "24fd8c6c-5d19-41ae-9561-45f678b7193b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172838Z:7702bf3e-c2d0-4712-8fc6-282b9c65adab" + "JIOINDIACENTRAL:20220512T083308Z:24fd8c6c-5d19-41ae-9561-45f678b7193b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:37 GMT" + "Thu, 12 May 2022 08:33:08 GMT" ], "Content-Length": [ "602" @@ -10593,16 +10533,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a44cd5af-23df-43b6-a4ef-ba3d5780ac52" + "e313f1f6-8d9a-42da-b396-e1a0ad3c2fb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10622,22 +10562,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11984" ], "x-ms-request-id": [ - "be367eba-cf73-4706-9da9-f3add672feec" + "d3a0ecd7-20c9-447e-81d0-3101e273b2e9" ], "x-ms-correlation-request-id": [ - "be367eba-cf73-4706-9da9-f3add672feec" + "d3a0ecd7-20c9-447e-81d0-3101e273b2e9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172838Z:be367eba-cf73-4706-9da9-f3add672feec" + "JIOINDIACENTRAL:20220512T083309Z:d3a0ecd7-20c9-447e-81d0-3101e273b2e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:37 GMT" + "Thu, 12 May 2022 08:33:08 GMT" ], "Content-Length": [ "602" @@ -10656,16 +10596,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3ba7c38-8a87-4f8c-ad2a-bf2f6ceef8a3" + "4358ce7e-6b51-4f55-ad2e-42caf26fff1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10685,22 +10625,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11974" ], "x-ms-request-id": [ - "e20d3fa5-28d8-432b-855e-de33af017fbe" + "1e03ac9c-2037-44f4-8bae-60e59f6fa0b4" ], "x-ms-correlation-request-id": [ - "e20d3fa5-28d8-432b-855e-de33af017fbe" + "1e03ac9c-2037-44f4-8bae-60e59f6fa0b4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172838Z:e20d3fa5-28d8-432b-855e-de33af017fbe" + "JIOINDIACENTRAL:20220512T083309Z:1e03ac9c-2037-44f4-8bae-60e59f6fa0b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:38 GMT" + "Thu, 12 May 2022 08:33:09 GMT" ], "Content-Length": [ "602" @@ -10719,16 +10659,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03975dd4-c5d9-4ccf-8845-2d71ec8c7392" + "be1abaf0-a6fc-4458-bb67-3bcd10919dfb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10748,22 +10688,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11979" ], "x-ms-request-id": [ - "3ca78e99-f4eb-416c-98d9-d0d3cb344dab" + "0606c0b1-33f4-4653-a9ee-229dec0e5e00" ], "x-ms-correlation-request-id": [ - "3ca78e99-f4eb-416c-98d9-d0d3cb344dab" + "0606c0b1-33f4-4653-a9ee-229dec0e5e00" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172839Z:3ca78e99-f4eb-416c-98d9-d0d3cb344dab" + "JIOINDIACENTRAL:20220512T083310Z:0606c0b1-33f4-4653-a9ee-229dec0e5e00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:38 GMT" + "Thu, 12 May 2022 08:33:09 GMT" ], "Content-Length": [ "602" @@ -10782,16 +10722,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a413c5ca-0817-41f1-82b7-1d83992bc334" + "5ed304c9-9f74-46b5-b2d4-bafcf1ff7a49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10811,22 +10751,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11965" ], "x-ms-request-id": [ - "9c256c4c-31f4-4134-b07d-63c9668668fa" + "195bbd62-dd53-42a0-a8a4-51176f5354bc" ], "x-ms-correlation-request-id": [ - "9c256c4c-31f4-4134-b07d-63c9668668fa" + "195bbd62-dd53-42a0-a8a4-51176f5354bc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172839Z:9c256c4c-31f4-4134-b07d-63c9668668fa" + "JIOINDIACENTRAL:20220512T083311Z:195bbd62-dd53-42a0-a8a4-51176f5354bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:38 GMT" + "Thu, 12 May 2022 08:33:10 GMT" ], "Content-Length": [ "602" @@ -10845,16 +10785,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f500da53-c6ab-44c3-a4ea-1c9a5962b9c1" + "7bae61f6-a969-4359-8475-10e294555f96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10874,22 +10814,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11982" ], "x-ms-request-id": [ - "9991c8bf-dd2d-4468-b0fe-de58171525ec" + "46ad89f4-7f50-46a2-8110-e0ac5f2dc3b1" ], "x-ms-correlation-request-id": [ - "9991c8bf-dd2d-4468-b0fe-de58171525ec" + "46ad89f4-7f50-46a2-8110-e0ac5f2dc3b1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172839Z:9991c8bf-dd2d-4468-b0fe-de58171525ec" + "JIOINDIACENTRAL:20220512T083312Z:46ad89f4-7f50-46a2-8110-e0ac5f2dc3b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:39 GMT" + "Thu, 12 May 2022 08:33:11 GMT" ], "Content-Length": [ "602" @@ -10908,16 +10848,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76ac5027-bbf0-4d1d-9bdc-ee5aa833fe98" + "f3aaf46a-8d82-4bf4-bd61-4b4f348fa0e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -10937,22 +10877,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11983" ], "x-ms-request-id": [ - "c3f97f00-31ad-4712-8d46-3d9e0774307f" + "d524645e-4ef6-4e92-8f54-83d45ec5b3a0" ], "x-ms-correlation-request-id": [ - "c3f97f00-31ad-4712-8d46-3d9e0774307f" + "d524645e-4ef6-4e92-8f54-83d45ec5b3a0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172840Z:c3f97f00-31ad-4712-8d46-3d9e0774307f" + "JIOINDIACENTRAL:20220512T083312Z:d524645e-4ef6-4e92-8f54-83d45ec5b3a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:39 GMT" + "Thu, 12 May 2022 08:33:12 GMT" ], "Content-Length": [ "602" @@ -10971,16 +10911,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0205c34c-6b03-4d39-82dd-3ada7d55b863" + "f1a92c59-18af-40c6-b9d9-ca1c37d27d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11000,22 +10940,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11973" ], "x-ms-request-id": [ - "341d23e4-2cac-4acf-beb2-93da7685daae" + "a931677b-3ee7-49a5-b0aa-695c8aa3acd7" ], "x-ms-correlation-request-id": [ - "341d23e4-2cac-4acf-beb2-93da7685daae" + "a931677b-3ee7-49a5-b0aa-695c8aa3acd7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172840Z:341d23e4-2cac-4acf-beb2-93da7685daae" + "JIOINDIACENTRAL:20220512T083313Z:a931677b-3ee7-49a5-b0aa-695c8aa3acd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:39 GMT" + "Thu, 12 May 2022 08:33:13 GMT" ], "Content-Length": [ "602" @@ -11034,16 +10974,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91726818-135a-4b15-b515-82a61012371c" + "5b6aad99-d5b9-4b9e-a1f7-d72b9399517b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11063,22 +11003,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11981" ], "x-ms-request-id": [ - "65f06e03-3094-4ffa-b1b3-226fdb94fe83" + "91838e5d-4e13-4548-8eb3-fe9185a06576" ], "x-ms-correlation-request-id": [ - "65f06e03-3094-4ffa-b1b3-226fdb94fe83" + "91838e5d-4e13-4548-8eb3-fe9185a06576" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172840Z:65f06e03-3094-4ffa-b1b3-226fdb94fe83" + "JIOINDIACENTRAL:20220512T083314Z:91838e5d-4e13-4548-8eb3-fe9185a06576" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:39 GMT" + "Thu, 12 May 2022 08:33:14 GMT" ], "Content-Length": [ "602" @@ -11097,16 +11037,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a41ba63-3603-43f6-a096-93755671df77" + "364b198c-f7ea-4d24-985a-ec4480c2cef0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11126,22 +11066,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11975" ], "x-ms-request-id": [ - "caeb45f3-b329-458b-8b3a-863e5adf7ccb" + "98950057-1e19-40cb-b970-c29475358900" ], "x-ms-correlation-request-id": [ - "caeb45f3-b329-458b-8b3a-863e5adf7ccb" + "98950057-1e19-40cb-b970-c29475358900" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172840Z:caeb45f3-b329-458b-8b3a-863e5adf7ccb" + "JIOINDIACENTRAL:20220512T083315Z:98950057-1e19-40cb-b970-c29475358900" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:40 GMT" + "Thu, 12 May 2022 08:33:14 GMT" ], "Content-Length": [ "602" @@ -11160,16 +11100,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f20f58b-6faf-4a90-9633-8367e4d60a9f" + "e068e37d-4ff1-421a-872d-2a38bdc947eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11189,22 +11129,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11964" ], "x-ms-request-id": [ - "45d011fe-321a-422e-99e9-7beba94aa9bb" + "1a9212c0-9c46-4c09-a88a-c1349d2d1240" ], "x-ms-correlation-request-id": [ - "45d011fe-321a-422e-99e9-7beba94aa9bb" + "1a9212c0-9c46-4c09-a88a-c1349d2d1240" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172841Z:45d011fe-321a-422e-99e9-7beba94aa9bb" + "JIOINDIACENTRAL:20220512T083316Z:1a9212c0-9c46-4c09-a88a-c1349d2d1240" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:40 GMT" + "Thu, 12 May 2022 08:33:16 GMT" ], "Content-Length": [ "602" @@ -11223,16 +11163,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d6769b-7e6c-47b4-82e2-f6a018c0f7fc" + "ce05ec11-ff4e-4990-93e8-b0579d4c0480" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11252,22 +11192,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" + "11974" ], "x-ms-request-id": [ - "3f552159-2d36-4b85-8c54-dfb221176de9" + "05bb2524-1b7a-4df7-a7fb-1d3114f4634f" ], "x-ms-correlation-request-id": [ - "3f552159-2d36-4b85-8c54-dfb221176de9" + "05bb2524-1b7a-4df7-a7fb-1d3114f4634f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172841Z:3f552159-2d36-4b85-8c54-dfb221176de9" + "JIOINDIACENTRAL:20220512T083316Z:05bb2524-1b7a-4df7-a7fb-1d3114f4634f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:40 GMT" + "Thu, 12 May 2022 08:33:15 GMT" ], "Content-Length": [ "602" @@ -11286,16 +11226,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34f36e24-8e10-4d24-8e54-40e8e2cefed8" + "797225c5-9b38-4f78-bf29-64968b6c9988" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11315,22 +11255,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11972" ], "x-ms-request-id": [ - "6e59d83a-91d2-46fd-942f-5796c6d48c14" + "10b28202-3d19-4d14-be79-ebc82f006590" ], "x-ms-correlation-request-id": [ - "6e59d83a-91d2-46fd-942f-5796c6d48c14" + "10b28202-3d19-4d14-be79-ebc82f006590" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172841Z:6e59d83a-91d2-46fd-942f-5796c6d48c14" + "JIOINDIACENTRAL:20220512T083317Z:10b28202-3d19-4d14-be79-ebc82f006590" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:40 GMT" + "Thu, 12 May 2022 08:33:17 GMT" ], "Content-Length": [ "602" @@ -11349,16 +11289,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ca2bb83-7aa5-4cec-aa1d-b42b7afde595" + "a2d32118-97cc-48a0-9cc7-10679286d19e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11378,22 +11318,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11978" ], "x-ms-request-id": [ - "2309428a-6d99-466e-945d-3b82a7a1e1cd" + "9987b481-baa9-4b6b-ba13-290dd6521a3a" ], "x-ms-correlation-request-id": [ - "2309428a-6d99-466e-945d-3b82a7a1e1cd" + "9987b481-baa9-4b6b-ba13-290dd6521a3a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172842Z:2309428a-6d99-466e-945d-3b82a7a1e1cd" + "JIOINDIACENTRAL:20220512T083318Z:9987b481-baa9-4b6b-ba13-290dd6521a3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:41 GMT" + "Thu, 12 May 2022 08:33:18 GMT" ], "Content-Length": [ "602" @@ -11412,16 +11352,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4251d60-39e3-4118-a9d2-0c9f0f481aab" + "6b4e6259-c885-4417-8612-c9ba2fdf7549" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11441,22 +11381,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11973" ], "x-ms-request-id": [ - "183c5bd5-19b1-4abb-8dae-e3f4be243a2f" + "d30533a1-656e-4cbe-baa4-b997df4d8208" ], "x-ms-correlation-request-id": [ - "183c5bd5-19b1-4abb-8dae-e3f4be243a2f" + "d30533a1-656e-4cbe-baa4-b997df4d8208" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172842Z:183c5bd5-19b1-4abb-8dae-e3f4be243a2f" + "JIOINDIACENTRAL:20220512T083319Z:d30533a1-656e-4cbe-baa4-b997df4d8208" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:41 GMT" + "Thu, 12 May 2022 08:33:19 GMT" ], "Content-Length": [ "602" @@ -11475,16 +11415,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef9d915b-aa80-4b34-bcc4-d11317b5122e" + "ab9a3409-4b62-4941-b256-2f490cb2e034" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11504,22 +11444,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11980" ], "x-ms-request-id": [ - "cdee5b40-ffbc-4ddf-b334-4360d0b0f5c9" + "c4c6a5e3-d178-4b48-bc49-9532578caf86" ], "x-ms-correlation-request-id": [ - "cdee5b40-ffbc-4ddf-b334-4360d0b0f5c9" + "c4c6a5e3-d178-4b48-bc49-9532578caf86" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172842Z:cdee5b40-ffbc-4ddf-b334-4360d0b0f5c9" + "JIOINDIACENTRAL:20220512T083319Z:c4c6a5e3-d178-4b48-bc49-9532578caf86" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:41 GMT" + "Thu, 12 May 2022 08:33:19 GMT" ], "Content-Length": [ "602" @@ -11538,16 +11478,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7aa8653-be9c-4c3a-aba7-45d82e1c140e" + "427e616f-186c-4713-8b46-2423a6a82510" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11567,22 +11507,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11982" ], "x-ms-request-id": [ - "6e419cf9-11a5-462e-876e-35dcc1d66a8c" + "809a152b-0deb-4750-bd4a-dbe9d89d208b" ], "x-ms-correlation-request-id": [ - "6e419cf9-11a5-462e-876e-35dcc1d66a8c" + "809a152b-0deb-4750-bd4a-dbe9d89d208b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172842Z:6e419cf9-11a5-462e-876e-35dcc1d66a8c" + "JIOINDIACENTRAL:20220512T083320Z:809a152b-0deb-4750-bd4a-dbe9d89d208b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:42 GMT" + "Thu, 12 May 2022 08:33:20 GMT" ], "Content-Length": [ "602" @@ -11601,16 +11541,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48c341bb-8a5f-401e-b3a9-53bbaa2ef942" + "1f108e57-9d46-4e5b-8e00-1f6ee9c5b1d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11630,22 +11570,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11978" ], "x-ms-request-id": [ - "31eaea01-ade6-4c7f-b95f-bba27c9af573" + "e9c4dbf7-f609-46b1-b407-31fcde56515e" ], "x-ms-correlation-request-id": [ - "31eaea01-ade6-4c7f-b95f-bba27c9af573" + "e9c4dbf7-f609-46b1-b407-31fcde56515e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172843Z:31eaea01-ade6-4c7f-b95f-bba27c9af573" + "JIOINDIACENTRAL:20220512T083321Z:e9c4dbf7-f609-46b1-b407-31fcde56515e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:42 GMT" + "Thu, 12 May 2022 08:33:20 GMT" ], "Content-Length": [ "602" @@ -11664,16 +11604,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c474ee85-fe75-4dad-b716-c3400006ac12" + "2daa13bf-a90d-4f98-b0d5-03c770f88a61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11693,22 +11633,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11972" ], "x-ms-request-id": [ - "746a5ef6-da0f-4269-8781-42dc6c77fd64" + "1012190e-43cb-4a7b-bcfe-17774fc689da" ], "x-ms-correlation-request-id": [ - "746a5ef6-da0f-4269-8781-42dc6c77fd64" + "1012190e-43cb-4a7b-bcfe-17774fc689da" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172843Z:746a5ef6-da0f-4269-8781-42dc6c77fd64" + "JIOINDIACENTRAL:20220512T083322Z:1012190e-43cb-4a7b-bcfe-17774fc689da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:42 GMT" + "Thu, 12 May 2022 08:33:22 GMT" ], "Content-Length": [ "602" @@ -11727,16 +11667,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29941a93-b810-441c-b113-bf35a14e1d70" + "ea37ccc6-75ec-4c56-83e8-e995f260d7c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11756,22 +11696,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11983" ], "x-ms-request-id": [ - "e8ed8ed5-4dc6-4674-a792-7988e7f2f2dd" + "709c91b7-f4d1-4b99-8742-6818ccd7cdc2" ], "x-ms-correlation-request-id": [ - "e8ed8ed5-4dc6-4674-a792-7988e7f2f2dd" + "709c91b7-f4d1-4b99-8742-6818ccd7cdc2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172843Z:e8ed8ed5-4dc6-4674-a792-7988e7f2f2dd" + "JIOINDIACENTRAL:20220512T083323Z:709c91b7-f4d1-4b99-8742-6818ccd7cdc2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:42 GMT" + "Thu, 12 May 2022 08:33:23 GMT" ], "Content-Length": [ "602" @@ -11790,16 +11730,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0a056f8-fd1f-48a6-aa5b-6ba507480dbd" + "1db2b02c-4f0d-4174-98d1-b0fdd07b9f84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11819,22 +11759,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" + "11977" ], "x-ms-request-id": [ - "a298cc76-43a3-4b80-9f39-e8c808e32565" + "b466ea2b-8588-4bc5-93c4-38fedcf70910" ], "x-ms-correlation-request-id": [ - "a298cc76-43a3-4b80-9f39-e8c808e32565" + "b466ea2b-8588-4bc5-93c4-38fedcf70910" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172843Z:a298cc76-43a3-4b80-9f39-e8c808e32565" + "JIOINDIACENTRAL:20220512T083323Z:b466ea2b-8588-4bc5-93c4-38fedcf70910" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:43 GMT" + "Thu, 12 May 2022 08:33:23 GMT" ], "Content-Length": [ "602" @@ -11853,16 +11793,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89b3287b-99cd-4d8f-be83-7a0b31b5e8bc" + "cbcde086-deaa-4be0-b3d1-f2830ad5e2a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11882,22 +11822,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "11982" ], "x-ms-request-id": [ - "b8f3e45a-9bd3-46dd-983f-0030cb5e9832" + "9b8406a3-45f8-474d-a654-a363fb31edb5" ], "x-ms-correlation-request-id": [ - "b8f3e45a-9bd3-46dd-983f-0030cb5e9832" + "9b8406a3-45f8-474d-a654-a363fb31edb5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172844Z:b8f3e45a-9bd3-46dd-983f-0030cb5e9832" + "JIOINDIACENTRAL:20220512T083324Z:9b8406a3-45f8-474d-a654-a363fb31edb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:43 GMT" + "Thu, 12 May 2022 08:33:24 GMT" ], "Content-Length": [ "602" @@ -11916,16 +11856,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e78cbf5c-24e7-4d72-aa15-802c224ed3ca" + "dac8dfb6-7b8c-49fc-a4e6-b9a674739adb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -11945,22 +11885,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" + "11979" ], "x-ms-request-id": [ - "ef1c32dd-aa63-4d55-91d4-6cc444ea1a06" + "8abefd54-d4ed-48bc-a45d-bd0839231e29" ], "x-ms-correlation-request-id": [ - "ef1c32dd-aa63-4d55-91d4-6cc444ea1a06" + "8abefd54-d4ed-48bc-a45d-bd0839231e29" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172844Z:ef1c32dd-aa63-4d55-91d4-6cc444ea1a06" + "JIOINDIACENTRAL:20220512T083325Z:8abefd54-d4ed-48bc-a45d-bd0839231e29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:43 GMT" + "Thu, 12 May 2022 08:33:25 GMT" ], "Content-Length": [ "602" @@ -11979,16 +11919,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8f76298-b152-481c-adfa-6d6b68540dd3" + "5f848667-35e5-4857-9c07-ea6c4f46eada" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12008,22 +11948,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" + "11981" ], "x-ms-request-id": [ - "0da979b8-67b6-48bd-a265-a2bbfc69836b" + "68747371-9a4a-4932-91ab-fc218d19b3b2" ], "x-ms-correlation-request-id": [ - "0da979b8-67b6-48bd-a265-a2bbfc69836b" + "68747371-9a4a-4932-91ab-fc218d19b3b2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172844Z:0da979b8-67b6-48bd-a265-a2bbfc69836b" + "JIOINDIACENTRAL:20220512T083325Z:68747371-9a4a-4932-91ab-fc218d19b3b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:43 GMT" + "Thu, 12 May 2022 08:33:25 GMT" ], "Content-Length": [ "602" @@ -12042,16 +11982,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96b3fb5d-0b66-4daa-8eb9-76363b321125" + "e1759105-4855-4e00-a5a8-a3f32edf2fbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12071,22 +12011,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" + "11981" ], "x-ms-request-id": [ - "b4799393-b57d-496d-8f59-5388eae0c564" + "c96365c0-9ca7-4061-9f5d-18b887405826" ], "x-ms-correlation-request-id": [ - "b4799393-b57d-496d-8f59-5388eae0c564" + "c96365c0-9ca7-4061-9f5d-18b887405826" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172845Z:b4799393-b57d-496d-8f59-5388eae0c564" + "JIOINDIACENTRAL:20220512T083326Z:c96365c0-9ca7-4061-9f5d-18b887405826" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:44 GMT" + "Thu, 12 May 2022 08:33:26 GMT" ], "Content-Length": [ "602" @@ -12105,16 +12045,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa9e9cc8-74ab-4155-ac89-20a820eb4f51" + "fbdda42d-8e06-43f1-88aa-68d39e172966" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12134,22 +12074,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "11978" ], "x-ms-request-id": [ - "1bc4d75d-ee5b-4572-9c1a-0085e30dad9b" + "07a2839e-d4f8-45f3-bd02-3952a7ece9c1" ], "x-ms-correlation-request-id": [ - "1bc4d75d-ee5b-4572-9c1a-0085e30dad9b" + "07a2839e-d4f8-45f3-bd02-3952a7ece9c1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172845Z:1bc4d75d-ee5b-4572-9c1a-0085e30dad9b" + "JIOINDIACENTRAL:20220512T083328Z:07a2839e-d4f8-45f3-bd02-3952a7ece9c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:44 GMT" + "Thu, 12 May 2022 08:33:27 GMT" ], "Content-Length": [ "602" @@ -12168,16 +12108,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56402d5d-80f8-46c2-8dc9-ea7351005ebf" + "4ce78892-4a45-4de8-806b-845cd26e806b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12197,22 +12137,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" + "11976" ], "x-ms-request-id": [ - "57d4817a-7726-4bb4-9c34-bcd728ea1ebc" + "7fa616a0-70ae-41bf-ab39-6178f1cd77ac" ], "x-ms-correlation-request-id": [ - "57d4817a-7726-4bb4-9c34-bcd728ea1ebc" + "7fa616a0-70ae-41bf-ab39-6178f1cd77ac" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172845Z:57d4817a-7726-4bb4-9c34-bcd728ea1ebc" + "JIOINDIACENTRAL:20220512T083329Z:7fa616a0-70ae-41bf-ab39-6178f1cd77ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:44 GMT" + "Thu, 12 May 2022 08:33:28 GMT" ], "Content-Length": [ "602" @@ -12231,16 +12171,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e94e151-9304-48db-9474-f3236179b6ac" + "6bb35866-9dcd-4cdf-a536-b121fa132d78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12260,22 +12200,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11980" ], "x-ms-request-id": [ - "40a417c4-5b83-48ee-9a0c-72cbe43cc470" + "764dadd5-4220-43ad-ae0f-ddf09503608b" ], "x-ms-correlation-request-id": [ - "40a417c4-5b83-48ee-9a0c-72cbe43cc470" + "764dadd5-4220-43ad-ae0f-ddf09503608b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172845Z:40a417c4-5b83-48ee-9a0c-72cbe43cc470" + "JIOINDIACENTRAL:20220512T083330Z:764dadd5-4220-43ad-ae0f-ddf09503608b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:44 GMT" + "Thu, 12 May 2022 08:33:29 GMT" ], "Content-Length": [ "602" @@ -12294,16 +12234,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72b09f84-dcd8-40d1-8218-e410019676ca" + "339cf6c5-7878-487f-a758-660a48aa98f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12323,22 +12263,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11977" ], "x-ms-request-id": [ - "48d07d83-210b-47bd-a530-59c346f0e679" + "1d97ac10-c1bd-447e-aeb8-b1ed7c8d551d" ], "x-ms-correlation-request-id": [ - "48d07d83-210b-47bd-a530-59c346f0e679" + "1d97ac10-c1bd-447e-aeb8-b1ed7c8d551d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172846Z:48d07d83-210b-47bd-a530-59c346f0e679" + "JIOINDIACENTRAL:20220512T083330Z:1d97ac10-c1bd-447e-aeb8-b1ed7c8d551d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:45 GMT" + "Thu, 12 May 2022 08:33:30 GMT" ], "Content-Length": [ "602" @@ -12357,16 +12297,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff59670-bc5a-4ffb-bc4a-473b7061c22b" + "6cf9ac14-9c85-4bb0-870f-a95017f80acf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12386,22 +12326,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "11963" ], "x-ms-request-id": [ - "42e99d43-83d6-4a6d-a677-a5eb067f8394" + "ab913fa7-d062-491e-a876-38dcc1be5517" ], "x-ms-correlation-request-id": [ - "42e99d43-83d6-4a6d-a677-a5eb067f8394" + "ab913fa7-d062-491e-a876-38dcc1be5517" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172846Z:42e99d43-83d6-4a6d-a677-a5eb067f8394" + "JIOINDIACENTRAL:20220512T083331Z:ab913fa7-d062-491e-a876-38dcc1be5517" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:45 GMT" + "Thu, 12 May 2022 08:33:31 GMT" ], "Content-Length": [ "602" @@ -12420,16 +12360,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d278775-dc6e-4e43-bab9-ae486501e6f0" + "ac16b264-6acc-40f9-8088-a7f4ac097b2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12449,22 +12389,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" + "11971" ], "x-ms-request-id": [ - "9cd1b9fa-d7b2-4d44-a3b7-0f15c8677bb4" + "3fb24718-2f0d-44c2-8fdd-52cd9fe25a55" ], "x-ms-correlation-request-id": [ - "9cd1b9fa-d7b2-4d44-a3b7-0f15c8677bb4" + "3fb24718-2f0d-44c2-8fdd-52cd9fe25a55" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172846Z:9cd1b9fa-d7b2-4d44-a3b7-0f15c8677bb4" + "JIOINDIACENTRAL:20220512T083332Z:3fb24718-2f0d-44c2-8fdd-52cd9fe25a55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:45 GMT" + "Thu, 12 May 2022 08:33:31 GMT" ], "Content-Length": [ "602" @@ -12483,16 +12423,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d082ff8-7470-40a8-adbb-cfdbd1aff65b" + "3f8249a3-7b3e-4642-aa41-72c92f7d7e6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12512,22 +12452,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "11977" ], "x-ms-request-id": [ - "c51f6d60-e8c7-49c8-ba49-47be3df04f75" + "3adc6a70-5348-4ffb-b51c-87a40af8ef2b" ], "x-ms-correlation-request-id": [ - "c51f6d60-e8c7-49c8-ba49-47be3df04f75" + "3adc6a70-5348-4ffb-b51c-87a40af8ef2b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172846Z:c51f6d60-e8c7-49c8-ba49-47be3df04f75" + "JIOINDIACENTRAL:20220512T083332Z:3adc6a70-5348-4ffb-b51c-87a40af8ef2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:46 GMT" + "Thu, 12 May 2022 08:33:31 GMT" ], "Content-Length": [ "602" @@ -12546,16 +12486,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f3439e1-9e93-4d7f-857a-7692816fd265" + "88b16e96-b8fe-46f1-89f1-3661081d21a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12575,22 +12515,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" + "11976" ], "x-ms-request-id": [ - "18eef238-c077-40c9-b52f-cc99f16bfcf9" + "da9d347f-9324-4882-8993-4478ea6004b0" ], "x-ms-correlation-request-id": [ - "18eef238-c077-40c9-b52f-cc99f16bfcf9" + "da9d347f-9324-4882-8993-4478ea6004b0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172847Z:18eef238-c077-40c9-b52f-cc99f16bfcf9" + "JIOINDIACENTRAL:20220512T083333Z:da9d347f-9324-4882-8993-4478ea6004b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:46 GMT" + "Thu, 12 May 2022 08:33:33 GMT" ], "Content-Length": [ "602" @@ -12609,16 +12549,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26064cb6-2cda-44a8-b1ba-7b9281bcbe78" + "74e0b98a-3844-49f3-863e-a8328e425012" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12638,22 +12578,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" + "11975" ], "x-ms-request-id": [ - "249f0c4e-93c1-47f3-9af0-fbf293081abc" + "95c07905-dc3f-4c65-93eb-21d44cf850d5" ], "x-ms-correlation-request-id": [ - "249f0c4e-93c1-47f3-9af0-fbf293081abc" + "95c07905-dc3f-4c65-93eb-21d44cf850d5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172847Z:249f0c4e-93c1-47f3-9af0-fbf293081abc" + "JIOINDIACENTRAL:20220512T083334Z:95c07905-dc3f-4c65-93eb-21d44cf850d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:46 GMT" + "Thu, 12 May 2022 08:33:33 GMT" ], "Content-Length": [ "602" @@ -12672,16 +12612,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0eb65c5-ea8b-4d2b-8891-adb86c901e04" + "3c60464c-35e2-47f9-a7f5-e59e0b2ce81f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12701,22 +12641,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11980" ], "x-ms-request-id": [ - "5df78de4-2f84-4a2a-8072-10d53ec0f976" + "bd392cd1-52aa-4012-b109-29647ab0ff89" ], "x-ms-correlation-request-id": [ - "5df78de4-2f84-4a2a-8072-10d53ec0f976" + "bd392cd1-52aa-4012-b109-29647ab0ff89" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172847Z:5df78de4-2f84-4a2a-8072-10d53ec0f976" + "JIOINDIACENTRAL:20220512T083335Z:bd392cd1-52aa-4012-b109-29647ab0ff89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:46 GMT" + "Thu, 12 May 2022 08:33:34 GMT" ], "Content-Length": [ "602" @@ -12735,16 +12675,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3912dcc-ff6a-4dcf-a43f-91e31023b88e" + "6bb9e95d-3427-4eb9-b346-9d774d11bb9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12764,22 +12704,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" + "11979" ], "x-ms-request-id": [ - "a1f2552c-9894-4ed6-972a-9f6c7679764b" + "861bcf1b-d1fb-4800-ad46-0ac3852a5a54" ], "x-ms-correlation-request-id": [ - "a1f2552c-9894-4ed6-972a-9f6c7679764b" + "861bcf1b-d1fb-4800-ad46-0ac3852a5a54" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172848Z:a1f2552c-9894-4ed6-972a-9f6c7679764b" + "JIOINDIACENTRAL:20220512T083335Z:861bcf1b-d1fb-4800-ad46-0ac3852a5a54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:47 GMT" + "Thu, 12 May 2022 08:33:35 GMT" ], "Content-Length": [ "602" @@ -12798,16 +12738,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aacd545-d2b0-4814-9a4d-2b38a5549561" + "f62902d8-cd50-4b7a-8f7f-53d5972ce509" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12827,22 +12767,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11979" ], "x-ms-request-id": [ - "6b1aada4-49e4-43d0-9e45-5185d591ff27" + "eec2ad6e-5798-4f3b-98c7-2a0b6bc9cb5d" ], "x-ms-correlation-request-id": [ - "6b1aada4-49e4-43d0-9e45-5185d591ff27" + "eec2ad6e-5798-4f3b-98c7-2a0b6bc9cb5d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172848Z:6b1aada4-49e4-43d0-9e45-5185d591ff27" + "JIOINDIACENTRAL:20220512T083336Z:eec2ad6e-5798-4f3b-98c7-2a0b6bc9cb5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:47 GMT" + "Thu, 12 May 2022 08:33:35 GMT" ], "Content-Length": [ "602" @@ -12861,16 +12801,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64838f82-0010-4018-8a48-ac117ed1085f" + "93847ea7-0847-4124-8305-fbc42ea08c9d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12890,22 +12830,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" + "11970" ], "x-ms-request-id": [ - "71fced3a-60bb-4d00-9af3-1bd0857e995b" + "65cdb21d-1cad-42f2-bbb0-ee91937b12a9" ], "x-ms-correlation-request-id": [ - "71fced3a-60bb-4d00-9af3-1bd0857e995b" + "65cdb21d-1cad-42f2-bbb0-ee91937b12a9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172848Z:71fced3a-60bb-4d00-9af3-1bd0857e995b" + "JIOINDIACENTRAL:20220512T083337Z:65cdb21d-1cad-42f2-bbb0-ee91937b12a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:47 GMT" + "Thu, 12 May 2022 08:33:36 GMT" ], "Content-Length": [ "602" @@ -12924,16 +12864,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf690502-b20f-4e84-8383-17737faa5dd8" + "2f481016-fc1f-45f2-be68-8845b0e78291" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -12953,22 +12893,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "11978" ], "x-ms-request-id": [ - "561a4d41-4d8b-4958-b6e6-2a161b26ea7f" + "4163c318-5d47-4cf8-adb2-15046e5775ef" ], "x-ms-correlation-request-id": [ - "561a4d41-4d8b-4958-b6e6-2a161b26ea7f" + "4163c318-5d47-4cf8-adb2-15046e5775ef" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172848Z:561a4d41-4d8b-4958-b6e6-2a161b26ea7f" + "JIOINDIACENTRAL:20220512T083337Z:4163c318-5d47-4cf8-adb2-15046e5775ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:47 GMT" + "Thu, 12 May 2022 08:33:37 GMT" ], "Content-Length": [ "602" @@ -12987,16 +12927,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b623bfe5-2f77-41f8-ac04-84dea4a111bb" + "e5e32aed-bf0c-4a1d-88b5-693458eb89f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13016,22 +12956,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" + "11971" ], "x-ms-request-id": [ - "3f43992c-cc8d-4e03-bcb1-399990199c9b" + "dbd256f1-665f-4eb3-9492-aff304bbbc23" ], "x-ms-correlation-request-id": [ - "3f43992c-cc8d-4e03-bcb1-399990199c9b" + "dbd256f1-665f-4eb3-9492-aff304bbbc23" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172849Z:3f43992c-cc8d-4e03-bcb1-399990199c9b" + "JIOINDIACENTRAL:20220512T083338Z:dbd256f1-665f-4eb3-9492-aff304bbbc23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:48 GMT" + "Thu, 12 May 2022 08:33:37 GMT" ], "Content-Length": [ "602" @@ -13050,16 +12990,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c1bf400-ac95-4673-a320-8cb58423f7d0" + "1e7cad11-33ee-43b9-986b-7c92bffab7eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13079,22 +13019,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11970" ], "x-ms-request-id": [ - "2f9a3809-ae8f-4855-887d-88815b7b94bb" + "bfe26705-d276-4e82-9c8b-da9da0680dff" ], "x-ms-correlation-request-id": [ - "2f9a3809-ae8f-4855-887d-88815b7b94bb" + "bfe26705-d276-4e82-9c8b-da9da0680dff" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172849Z:2f9a3809-ae8f-4855-887d-88815b7b94bb" + "JIOINDIACENTRAL:20220512T083339Z:bfe26705-d276-4e82-9c8b-da9da0680dff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:48 GMT" + "Thu, 12 May 2022 08:33:38 GMT" ], "Content-Length": [ "602" @@ -13113,16 +13053,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5debe4-08ab-4412-949e-c3d7e5e7d1b2" + "9d06ae2d-b260-4ba0-87d9-cfa981d5ce6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13142,22 +13082,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11976" ], "x-ms-request-id": [ - "fbd16c85-774b-4ab4-8d52-ec1aed3f2cb4" + "6777c921-6bf1-40fc-bfa2-4967d132fe6b" ], "x-ms-correlation-request-id": [ - "fbd16c85-774b-4ab4-8d52-ec1aed3f2cb4" + "6777c921-6bf1-40fc-bfa2-4967d132fe6b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172849Z:fbd16c85-774b-4ab4-8d52-ec1aed3f2cb4" + "JIOINDIACENTRAL:20220512T083339Z:6777c921-6bf1-40fc-bfa2-4967d132fe6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:48 GMT" + "Thu, 12 May 2022 08:33:39 GMT" ], "Content-Length": [ "602" @@ -13176,16 +13116,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b240b9fa-de88-4b40-aaf3-1f5051fa4f13" + "b2427e28-e30c-408d-8045-ebe9cc1bcba5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13205,22 +13145,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11969" ], "x-ms-request-id": [ - "6a2fd3d2-53af-4106-b134-f49e8d1fab10" + "35572f18-7d4b-446a-b072-3f4698c32237" ], "x-ms-correlation-request-id": [ - "6a2fd3d2-53af-4106-b134-f49e8d1fab10" + "35572f18-7d4b-446a-b072-3f4698c32237" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172849Z:6a2fd3d2-53af-4106-b134-f49e8d1fab10" + "JIOINDIACENTRAL:20220512T083340Z:35572f18-7d4b-446a-b072-3f4698c32237" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:49 GMT" + "Thu, 12 May 2022 08:33:39 GMT" ], "Content-Length": [ "602" @@ -13239,16 +13179,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae6b523b-b7f7-4f41-900c-ebbf6809e742" + "bea73e49-a1d0-4eea-9134-ca331c022885" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13268,22 +13208,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11975" ], "x-ms-request-id": [ - "7a1c6e7f-d66f-491b-b3a8-baca4252e124" + "8512c694-c2ad-4fb9-a81c-92e907fe50a9" ], "x-ms-correlation-request-id": [ - "7a1c6e7f-d66f-491b-b3a8-baca4252e124" + "8512c694-c2ad-4fb9-a81c-92e907fe50a9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172850Z:7a1c6e7f-d66f-491b-b3a8-baca4252e124" + "JIOINDIACENTRAL:20220512T083341Z:8512c694-c2ad-4fb9-a81c-92e907fe50a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:49 GMT" + "Thu, 12 May 2022 08:33:40 GMT" ], "Content-Length": [ "602" @@ -13302,16 +13242,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f36a815c-3b00-4fe6-b139-cea67f253d43" + "f32d47b3-2d3c-4a25-a99b-7c37f8ba8891" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13331,22 +13271,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11968" ], "x-ms-request-id": [ - "eac899e7-dc42-46c0-b6a9-37f72d6eef50" + "144768d7-fd75-4373-8391-2c64ff8fb671" ], "x-ms-correlation-request-id": [ - "eac899e7-dc42-46c0-b6a9-37f72d6eef50" + "144768d7-fd75-4373-8391-2c64ff8fb671" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172850Z:eac899e7-dc42-46c0-b6a9-37f72d6eef50" + "JIOINDIACENTRAL:20220512T083342Z:144768d7-fd75-4373-8391-2c64ff8fb671" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:49 GMT" + "Thu, 12 May 2022 08:33:41 GMT" ], "Content-Length": [ "602" @@ -13365,16 +13305,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72602787-8548-42a2-b3b9-93aae566822b" + "2cd98aa1-ecf4-45ec-a4f3-c51973868dd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13394,22 +13334,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "11962" ], "x-ms-request-id": [ - "e7c46003-5391-4602-9fac-63860ea2125b" + "1f868312-e3c1-40fc-8809-dd53cbd6feaf" ], "x-ms-correlation-request-id": [ - "e7c46003-5391-4602-9fac-63860ea2125b" + "1f868312-e3c1-40fc-8809-dd53cbd6feaf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172850Z:e7c46003-5391-4602-9fac-63860ea2125b" + "JIOINDIACENTRAL:20220512T083343Z:1f868312-e3c1-40fc-8809-dd53cbd6feaf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:49 GMT" + "Thu, 12 May 2022 08:33:42 GMT" ], "Content-Length": [ "602" @@ -13428,16 +13368,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25e9d901-0826-45aa-92f0-2cb53dfa27b4" + "1b5f1fb5-c767-4483-838a-8c84a9e14785" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13457,22 +13397,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "11974" ], "x-ms-request-id": [ - "65b58538-2a2c-4a6f-a11e-3042c3342f92" + "09a4228e-fb13-4805-a646-3f2fd6d27c19" ], "x-ms-correlation-request-id": [ - "65b58538-2a2c-4a6f-a11e-3042c3342f92" + "09a4228e-fb13-4805-a646-3f2fd6d27c19" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172851Z:65b58538-2a2c-4a6f-a11e-3042c3342f92" + "JIOINDIACENTRAL:20220512T083343Z:09a4228e-fb13-4805-a646-3f2fd6d27c19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:50 GMT" + "Thu, 12 May 2022 08:33:42 GMT" ], "Content-Length": [ "602" @@ -13491,16 +13431,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d64c82fb-9bc1-41c8-816f-d87dd5d8fe7d" + "aa05a076-fda0-4d57-8cda-5ff8ffbc43c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13520,22 +13460,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" + "11975" ], "x-ms-request-id": [ - "3c7cde1a-1bd4-40d0-a48e-01340447a548" + "ab5d71d9-e67e-416f-b7cd-b4ca95eedead" ], "x-ms-correlation-request-id": [ - "3c7cde1a-1bd4-40d0-a48e-01340447a548" + "ab5d71d9-e67e-416f-b7cd-b4ca95eedead" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172851Z:3c7cde1a-1bd4-40d0-a48e-01340447a548" + "JIOINDIACENTRAL:20220512T083344Z:ab5d71d9-e67e-416f-b7cd-b4ca95eedead" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:50 GMT" + "Thu, 12 May 2022 08:33:43 GMT" ], "Content-Length": [ "602" @@ -13554,16 +13494,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2250687d-4c1d-41b1-96e3-88249df7ca8c" + "b4633d6d-fa74-453b-ac28-b3c10a4590d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13583,22 +13523,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "11974" ], "x-ms-request-id": [ - "1fa9b803-a98b-4517-b6c5-ec14b6720e14" + "1c35408d-8185-4ba4-b275-3d81ccf83381" ], "x-ms-correlation-request-id": [ - "1fa9b803-a98b-4517-b6c5-ec14b6720e14" + "1c35408d-8185-4ba4-b275-3d81ccf83381" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172851Z:1fa9b803-a98b-4517-b6c5-ec14b6720e14" + "JIOINDIACENTRAL:20220512T083345Z:1c35408d-8185-4ba4-b275-3d81ccf83381" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:50 GMT" + "Thu, 12 May 2022 08:33:44 GMT" ], "Content-Length": [ "602" @@ -13617,16 +13557,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41a6ec47-0f46-497e-a579-f3695d929ac3" + "8ae642d8-c614-4e79-8622-dfc6f3d6155e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13646,22 +13586,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11961" ], "x-ms-request-id": [ - "f0f09264-dcf7-4fd0-a0b0-90e8a7b4c302" + "d46d6c81-0ad4-4513-bc82-10ec7bd03c6c" ], "x-ms-correlation-request-id": [ - "f0f09264-dcf7-4fd0-a0b0-90e8a7b4c302" + "d46d6c81-0ad4-4513-bc82-10ec7bd03c6c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172851Z:f0f09264-dcf7-4fd0-a0b0-90e8a7b4c302" + "JIOINDIACENTRAL:20220512T083346Z:d46d6c81-0ad4-4513-bc82-10ec7bd03c6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:50 GMT" + "Thu, 12 May 2022 08:33:45 GMT" ], "Content-Length": [ "602" @@ -13680,16 +13620,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab4f888b-f29a-4a5d-b702-b19bcbf533c7" + "1d19cd7d-7632-4360-b3e6-4aa9a3bd2a4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13709,22 +13649,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "11978" ], "x-ms-request-id": [ - "50df32b6-242a-49a8-be0d-4a61c4e00165" + "a1a038e6-ebe5-40cf-9ecb-5e109127835a" ], "x-ms-correlation-request-id": [ - "50df32b6-242a-49a8-be0d-4a61c4e00165" + "a1a038e6-ebe5-40cf-9ecb-5e109127835a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172852Z:50df32b6-242a-49a8-be0d-4a61c4e00165" + "JIOINDIACENTRAL:20220512T083346Z:a1a038e6-ebe5-40cf-9ecb-5e109127835a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:52 GMT" + "Thu, 12 May 2022 08:33:46 GMT" ], "Content-Length": [ "602" @@ -13743,16 +13683,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36cb2591-b301-4369-9882-d9b6af7734a8" + "bc5f82c1-b42f-454e-9500-49b44b9f74fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13772,22 +13712,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11969" ], "x-ms-request-id": [ - "f89fb491-cea5-4a3c-afd0-777cc5cd87fa" + "74541b66-1b6d-4740-b412-a9f3cb51d836" ], "x-ms-correlation-request-id": [ - "f89fb491-cea5-4a3c-afd0-777cc5cd87fa" + "74541b66-1b6d-4740-b412-a9f3cb51d836" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172852Z:f89fb491-cea5-4a3c-afd0-777cc5cd87fa" + "JIOINDIACENTRAL:20220512T083347Z:74541b66-1b6d-4740-b412-a9f3cb51d836" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:52 GMT" + "Thu, 12 May 2022 08:33:47 GMT" ], "Content-Length": [ "602" @@ -13806,16 +13746,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45de79a3-2ad0-4504-8b65-f62d7cdf98fb" + "734294b1-1a25-4c6a-b196-f3c42f3cf6ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13835,22 +13775,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11968" ], "x-ms-request-id": [ - "35f27c58-32c9-4de4-86ff-027f0ba4ce6f" + "e1de0e3e-1442-46f4-b341-4e110f183ae4" ], "x-ms-correlation-request-id": [ - "35f27c58-32c9-4de4-86ff-027f0ba4ce6f" + "e1de0e3e-1442-46f4-b341-4e110f183ae4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172852Z:35f27c58-32c9-4de4-86ff-027f0ba4ce6f" + "JIOINDIACENTRAL:20220512T083348Z:e1de0e3e-1442-46f4-b341-4e110f183ae4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:52 GMT" + "Thu, 12 May 2022 08:33:48 GMT" ], "Content-Length": [ "602" @@ -13869,16 +13809,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13f49502-c0ac-4a6d-ad7d-559f01b92a56" + "24f00997-6c98-4a84-9ead-ed9586ef7f4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13898,22 +13838,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" + "11977" ], "x-ms-request-id": [ - "f56bfd5c-9110-4630-8ca1-930d496b5bcf" + "be03c3cb-f419-4d33-947a-62b33ba23ebe" ], "x-ms-correlation-request-id": [ - "f56bfd5c-9110-4630-8ca1-930d496b5bcf" + "be03c3cb-f419-4d33-947a-62b33ba23ebe" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172852Z:f56bfd5c-9110-4630-8ca1-930d496b5bcf" + "JIOINDIACENTRAL:20220512T083349Z:be03c3cb-f419-4d33-947a-62b33ba23ebe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:52 GMT" + "Thu, 12 May 2022 08:33:48 GMT" ], "Content-Length": [ "602" @@ -13932,16 +13872,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a17f4414-5140-472d-ad76-b2b9991b2ee0" + "c57d5bce-1524-4916-b226-45eaa1bdb861" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -13961,22 +13901,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11999" ], "x-ms-request-id": [ - "a6ad447a-e1b0-4ecf-bb71-d780a23e57cf" + "dc3439d2-3e0c-4853-9254-c1f036edda37" ], "x-ms-correlation-request-id": [ - "a6ad447a-e1b0-4ecf-bb71-d780a23e57cf" + "dc3439d2-3e0c-4853-9254-c1f036edda37" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172853Z:a6ad447a-e1b0-4ecf-bb71-d780a23e57cf" + "JIOINDIACENTRAL:20220512T083351Z:dc3439d2-3e0c-4853-9254-c1f036edda37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:53 GMT" + "Thu, 12 May 2022 08:33:51 GMT" ], "Content-Length": [ "602" @@ -13995,16 +13935,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7df3796-4eb2-47dd-988e-6c4ad7852c67" + "f0a5ecb8-811c-4d04-8cdd-8eff32bfb183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14024,22 +13964,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" + "11999" ], "x-ms-request-id": [ - "f6f03269-acab-4cde-86c6-7f300a5ab1bc" + "64d8f1e1-1f17-42ae-860f-dcfa7fa58824" ], "x-ms-correlation-request-id": [ - "f6f03269-acab-4cde-86c6-7f300a5ab1bc" + "64d8f1e1-1f17-42ae-860f-dcfa7fa58824" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172853Z:f6f03269-acab-4cde-86c6-7f300a5ab1bc" + "JIOINDIACENTRAL:20220512T083355Z:64d8f1e1-1f17-42ae-860f-dcfa7fa58824" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:53 GMT" + "Thu, 12 May 2022 08:33:55 GMT" ], "Content-Length": [ "602" @@ -14058,16 +13998,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2100e367-d8ed-481e-a406-0269dda42e22" + "440da29c-373a-4cf5-ba70-0915a405f111" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14087,22 +14027,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" + "11998" ], "x-ms-request-id": [ - "1591d1c1-1c57-4ef9-8a3e-0f4ad31fa7b6" + "4db08fc0-460f-4209-8cb0-cd82f30bd6f3" ], "x-ms-correlation-request-id": [ - "1591d1c1-1c57-4ef9-8a3e-0f4ad31fa7b6" + "4db08fc0-460f-4209-8cb0-cd82f30bd6f3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172853Z:1591d1c1-1c57-4ef9-8a3e-0f4ad31fa7b6" + "JIOINDIACENTRAL:20220512T083356Z:4db08fc0-460f-4209-8cb0-cd82f30bd6f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:53 GMT" + "Thu, 12 May 2022 08:33:55 GMT" ], "Content-Length": [ "602" @@ -14121,16 +14061,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b695f6e-a7b7-4b49-9807-cc9b505c7dd9" + "487f09e9-2c1a-4755-a7c2-23e8fc6cf1ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14150,22 +14090,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11997" ], "x-ms-request-id": [ - "2296cb42-c92f-4c11-b67f-f753ac8708fa" + "02a5e1bf-fbfe-47f5-8764-16c32abcc2d9" ], "x-ms-correlation-request-id": [ - "2296cb42-c92f-4c11-b67f-f753ac8708fa" + "02a5e1bf-fbfe-47f5-8764-16c32abcc2d9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172854Z:2296cb42-c92f-4c11-b67f-f753ac8708fa" + "JIOINDIACENTRAL:20220512T083357Z:02a5e1bf-fbfe-47f5-8764-16c32abcc2d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:53 GMT" + "Thu, 12 May 2022 08:33:57 GMT" ], "Content-Length": [ "602" @@ -14184,16 +14124,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d306dce0-f631-4b20-a551-9dc0ee911ee3" + "b9f293af-bcc8-4ad2-8397-d422d0bb5b3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14213,22 +14153,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11998" ], "x-ms-request-id": [ - "6673ea4a-5840-409a-8a33-c9d107a3326f" + "5a19d0de-b1f0-461e-8328-2cd8d815041f" ], "x-ms-correlation-request-id": [ - "6673ea4a-5840-409a-8a33-c9d107a3326f" + "5a19d0de-b1f0-461e-8328-2cd8d815041f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172854Z:6673ea4a-5840-409a-8a33-c9d107a3326f" + "JIOINDIACENTRAL:20220512T083359Z:5a19d0de-b1f0-461e-8328-2cd8d815041f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:54 GMT" + "Thu, 12 May 2022 08:33:58 GMT" ], "Content-Length": [ "602" @@ -14247,16 +14187,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1627fd3-cc23-4d95-bc09-56d82c33d4e1" + "afced652-8f67-4e3b-a22c-26e8f45238aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14276,22 +14216,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" + "11996" ], "x-ms-request-id": [ - "cba219f8-8c24-4c95-967a-46d6592151f1" + "8088f7e8-1936-4ecb-93be-5373d1d2329b" ], "x-ms-correlation-request-id": [ - "cba219f8-8c24-4c95-967a-46d6592151f1" + "8088f7e8-1936-4ecb-93be-5373d1d2329b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172854Z:cba219f8-8c24-4c95-967a-46d6592151f1" + "JIOINDIACENTRAL:20220512T083400Z:8088f7e8-1936-4ecb-93be-5373d1d2329b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:54 GMT" + "Thu, 12 May 2022 08:33:59 GMT" ], "Content-Length": [ "602" @@ -14310,16 +14250,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5eac9a2e-cf4b-424b-a9e7-8cabaab819c9" + "0a5b635d-0dd9-4f51-90a1-3993f0d8343c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14339,22 +14279,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11995" ], "x-ms-request-id": [ - "9e5c1af7-b988-4166-bc1c-fbcf38c0537e" + "54335077-0814-4515-a644-bc5d2ca3cc2e" ], "x-ms-correlation-request-id": [ - "9e5c1af7-b988-4166-bc1c-fbcf38c0537e" + "54335077-0814-4515-a644-bc5d2ca3cc2e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172854Z:9e5c1af7-b988-4166-bc1c-fbcf38c0537e" + "JIOINDIACENTRAL:20220512T083400Z:54335077-0814-4515-a644-bc5d2ca3cc2e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:54 GMT" + "Thu, 12 May 2022 08:34:00 GMT" ], "Content-Length": [ "602" @@ -14373,16 +14313,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65c6633d-bce1-4688-b860-09430dcf20a5" + "6c1148d2-b65a-4bb0-9dd5-66012015e880" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14402,22 +14342,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" + "11994" ], "x-ms-request-id": [ - "43ad4299-0692-47a8-bbd3-8425b64455f1" + "f4845953-4bf8-4289-8690-e9f3fb1d8fb3" ], "x-ms-correlation-request-id": [ - "43ad4299-0692-47a8-bbd3-8425b64455f1" + "f4845953-4bf8-4289-8690-e9f3fb1d8fb3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172855Z:43ad4299-0692-47a8-bbd3-8425b64455f1" + "JIOINDIACENTRAL:20220512T083401Z:f4845953-4bf8-4289-8690-e9f3fb1d8fb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:54 GMT" + "Thu, 12 May 2022 08:34:00 GMT" ], "Content-Length": [ "602" @@ -14436,16 +14376,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d50c5c04-709f-4caa-ad39-39943c289464" + "eb6e7173-85ae-4648-a839-171aa75ca0b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14465,22 +14405,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" + "11993" ], "x-ms-request-id": [ - "30228e95-44c8-40b7-a2ac-26d3ed065607" + "3d1dbfcf-a363-4660-80ca-f9806a904875" ], "x-ms-correlation-request-id": [ - "30228e95-44c8-40b7-a2ac-26d3ed065607" + "3d1dbfcf-a363-4660-80ca-f9806a904875" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172855Z:30228e95-44c8-40b7-a2ac-26d3ed065607" + "JIOINDIACENTRAL:20220512T083402Z:3d1dbfcf-a363-4660-80ca-f9806a904875" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:55 GMT" + "Thu, 12 May 2022 08:34:01 GMT" ], "Content-Length": [ "602" @@ -14499,16 +14439,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b27401e-c44f-4f13-9dc5-3428eaf76162" + "d85b027c-7c35-4eb3-8a29-4f3b2d666f3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14528,22 +14468,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" + "11992" ], "x-ms-request-id": [ - "29fcf815-ff32-4ed0-a29a-5751f0c38c21" + "a521a421-6e5d-4bef-9f22-f3532fc20d4b" ], "x-ms-correlation-request-id": [ - "29fcf815-ff32-4ed0-a29a-5751f0c38c21" + "a521a421-6e5d-4bef-9f22-f3532fc20d4b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172855Z:29fcf815-ff32-4ed0-a29a-5751f0c38c21" + "JIOINDIACENTRAL:20220512T083402Z:a521a421-6e5d-4bef-9f22-f3532fc20d4b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:55 GMT" + "Thu, 12 May 2022 08:34:02 GMT" ], "Content-Length": [ "602" @@ -14562,16 +14502,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbba7664-04b6-46f3-b9e5-148ab54840b0" + "8ba92392-8b2d-438b-a23f-536178b491dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14591,22 +14531,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" + "11993" ], "x-ms-request-id": [ - "4936b615-7d7f-4b6b-a84c-9b0926e59bdb" + "69de8d3a-37b8-45e5-a80c-c0e846769c3e" ], "x-ms-correlation-request-id": [ - "4936b615-7d7f-4b6b-a84c-9b0926e59bdb" + "69de8d3a-37b8-45e5-a80c-c0e846769c3e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172855Z:4936b615-7d7f-4b6b-a84c-9b0926e59bdb" + "JIOINDIACENTRAL:20220512T083404Z:69de8d3a-37b8-45e5-a80c-c0e846769c3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:55 GMT" + "Thu, 12 May 2022 08:34:03 GMT" ], "Content-Length": [ "602" @@ -14625,16 +14565,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d26bbcf4-5c78-4a42-80dc-34c1e187a55a" + "0a51a683-c43e-4b34-9caa-42a9207b7efc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14654,22 +14594,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" + "11992" ], "x-ms-request-id": [ - "359d50e0-7208-4c39-b2d6-26b624569d7a" + "97679e97-bff1-4fb0-ade6-f7c05dddfe3c" ], "x-ms-correlation-request-id": [ - "359d50e0-7208-4c39-b2d6-26b624569d7a" + "97679e97-bff1-4fb0-ade6-f7c05dddfe3c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172856Z:359d50e0-7208-4c39-b2d6-26b624569d7a" + "JIOINDIACENTRAL:20220512T083404Z:97679e97-bff1-4fb0-ade6-f7c05dddfe3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:55 GMT" + "Thu, 12 May 2022 08:34:03 GMT" ], "Content-Length": [ "602" @@ -14688,16 +14628,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d171cd7-0153-4247-a04e-a120b097aa2a" + "ce4055d8-0d62-43a2-889e-0a979b1dbf2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14717,22 +14657,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" + "11991" ], "x-ms-request-id": [ - "61372a10-ce92-468d-b288-13623d289818" + "a8f2933a-dce2-4b58-b7ab-b53aa3c0a6fd" ], "x-ms-correlation-request-id": [ - "61372a10-ce92-468d-b288-13623d289818" + "a8f2933a-dce2-4b58-b7ab-b53aa3c0a6fd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172856Z:61372a10-ce92-468d-b288-13623d289818" + "JIOINDIACENTRAL:20220512T083405Z:a8f2933a-dce2-4b58-b7ab-b53aa3c0a6fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:56 GMT" + "Thu, 12 May 2022 08:34:04 GMT" ], "Content-Length": [ "602" @@ -14751,16 +14691,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d903cc3-54c3-4e1e-8e0a-4a9dec05a4be" + "6db57c23-633a-4765-a4b9-dbcb1e1034bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14780,22 +14720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" + "11997" ], "x-ms-request-id": [ - "32475028-1f18-41ea-a81d-33dce1236da4" + "fc9c9bb4-4f32-4f20-b908-1e40e5bfbe73" ], "x-ms-correlation-request-id": [ - "32475028-1f18-41ea-a81d-33dce1236da4" + "fc9c9bb4-4f32-4f20-b908-1e40e5bfbe73" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172856Z:32475028-1f18-41ea-a81d-33dce1236da4" + "JIOINDIACENTRAL:20220512T083406Z:fc9c9bb4-4f32-4f20-b908-1e40e5bfbe73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:56 GMT" + "Thu, 12 May 2022 08:34:06 GMT" ], "Content-Length": [ "602" @@ -14814,16 +14754,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69f336c8-bea1-4f68-8c79-7c0d1a7f68eb" + "5c1a4550-c3c1-43eb-9a2c-80a67506dcff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14843,22 +14783,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" + "11999" ], "x-ms-request-id": [ - "8c38db53-cde2-4d35-8295-a09d6cb89e10" + "56c9a7fd-9163-4dc4-a8e4-fce2327d554b" ], "x-ms-correlation-request-id": [ - "8c38db53-cde2-4d35-8295-a09d6cb89e10" + "56c9a7fd-9163-4dc4-a8e4-fce2327d554b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172856Z:8c38db53-cde2-4d35-8295-a09d6cb89e10" + "JIOINDIACENTRAL:20220512T083408Z:56c9a7fd-9163-4dc4-a8e4-fce2327d554b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:56 GMT" + "Thu, 12 May 2022 08:34:08 GMT" ], "Content-Length": [ "602" @@ -14877,16 +14817,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b803e6a-3ddd-4a41-be98-14f17b9a81fb" + "afc5fe88-8b56-4356-b06b-cd7291c6fd2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14906,22 +14846,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "11998" ], "x-ms-request-id": [ - "28ef20a4-63c9-4645-ac08-747580b9b552" + "b899dc16-8e79-4141-b563-54761d30c60b" ], "x-ms-correlation-request-id": [ - "28ef20a4-63c9-4645-ac08-747580b9b552" + "b899dc16-8e79-4141-b563-54761d30c60b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172857Z:28ef20a4-63c9-4645-ac08-747580b9b552" + "JIOINDIACENTRAL:20220512T083410Z:b899dc16-8e79-4141-b563-54761d30c60b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:56 GMT" + "Thu, 12 May 2022 08:34:09 GMT" ], "Content-Length": [ "602" @@ -14940,16 +14880,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52026bb2-a128-4265-8c76-6a7ad8369d27" + "df337a01-e382-42ec-89a0-d3762bab252b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -14969,22 +14909,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" + "11990" ], "x-ms-request-id": [ - "8936ca05-45dc-4380-a6a8-702b24ff5266" + "0c9de63c-33f7-4389-9487-03003332b199" ], "x-ms-correlation-request-id": [ - "8936ca05-45dc-4380-a6a8-702b24ff5266" + "0c9de63c-33f7-4389-9487-03003332b199" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172857Z:8936ca05-45dc-4380-a6a8-702b24ff5266" + "JIOINDIACENTRAL:20220512T083411Z:0c9de63c-33f7-4389-9487-03003332b199" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:57 GMT" + "Thu, 12 May 2022 08:34:10 GMT" ], "Content-Length": [ "602" @@ -15003,16 +14943,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75b6e354-fbd4-4da5-9f3a-e4ea32d34a09" + "7443dd67-298c-4670-8a37-8c602dd920f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15032,22 +14972,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" + "11989" ], "x-ms-request-id": [ - "467d2355-d98c-4154-967f-fd3aa1b12893" + "d18be25d-bd7e-42f0-8782-2dfb1cf6d6b2" ], "x-ms-correlation-request-id": [ - "467d2355-d98c-4154-967f-fd3aa1b12893" + "d18be25d-bd7e-42f0-8782-2dfb1cf6d6b2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172857Z:467d2355-d98c-4154-967f-fd3aa1b12893" + "JIOINDIACENTRAL:20220512T083412Z:d18be25d-bd7e-42f0-8782-2dfb1cf6d6b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:57 GMT" + "Thu, 12 May 2022 08:34:12 GMT" ], "Content-Length": [ "602" @@ -15066,16 +15006,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b96ba6fe-bf94-4e7c-8c45-90207a6e54fe" + "4bc06c93-aa58-4a86-b6c9-66012e1937c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15095,22 +15035,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11997" ], "x-ms-request-id": [ - "d5d57f3c-ad4a-467e-ae5c-db2a53bca9f0" + "1a869bb2-f509-46f2-ad57-0e17ea107558" ], "x-ms-correlation-request-id": [ - "d5d57f3c-ad4a-467e-ae5c-db2a53bca9f0" + "1a869bb2-f509-46f2-ad57-0e17ea107558" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172858Z:d5d57f3c-ad4a-467e-ae5c-db2a53bca9f0" + "JIOINDIACENTRAL:20220512T083412Z:1a869bb2-f509-46f2-ad57-0e17ea107558" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:57 GMT" + "Thu, 12 May 2022 08:34:12 GMT" ], "Content-Length": [ "602" @@ -15129,16 +15069,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db32b631-81f9-414a-8975-6a1460ca8e2b" + "062a8679-1fdc-4ef9-ae82-cc5331d99b4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15158,22 +15098,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" + "11996" ], "x-ms-request-id": [ - "89f4fc4e-3e10-4bfd-8f7a-22384c2ab041" + "9dd25fc2-9d9c-4fab-bdd5-4372f67e5e4e" ], "x-ms-correlation-request-id": [ - "89f4fc4e-3e10-4bfd-8f7a-22384c2ab041" + "9dd25fc2-9d9c-4fab-bdd5-4372f67e5e4e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172858Z:89f4fc4e-3e10-4bfd-8f7a-22384c2ab041" + "JIOINDIACENTRAL:20220512T083413Z:9dd25fc2-9d9c-4fab-bdd5-4372f67e5e4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:57 GMT" + "Thu, 12 May 2022 08:34:13 GMT" ], "Content-Length": [ "602" @@ -15192,16 +15132,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "255384ee-f454-4d81-adbd-e2e20ea96916" + "8e46063f-e6e9-410f-b2af-7acbd0e21f8b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15221,22 +15161,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" + "11996" ], "x-ms-request-id": [ - "dda6fef8-c9b0-4b21-b9d4-3e5f6d512132" + "8d19bfd2-abd5-45b3-a6ed-d49168d81dd7" ], "x-ms-correlation-request-id": [ - "dda6fef8-c9b0-4b21-b9d4-3e5f6d512132" + "8d19bfd2-abd5-45b3-a6ed-d49168d81dd7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172858Z:dda6fef8-c9b0-4b21-b9d4-3e5f6d512132" + "JIOINDIACENTRAL:20220512T083414Z:8d19bfd2-abd5-45b3-a6ed-d49168d81dd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:58 GMT" + "Thu, 12 May 2022 08:34:13 GMT" ], "Content-Length": [ "602" @@ -15255,16 +15195,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54c9bfa5-1695-40ac-a013-e6eacec89f9f" + "f2c76c16-76fe-47a5-9f1c-cd0ca62c8345" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15284,22 +15224,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" + "11988" ], "x-ms-request-id": [ - "c962ec66-59e6-4ba3-8247-3cffa79792d5" + "37510467-f824-4d40-93cd-c81b68e6d64b" ], "x-ms-correlation-request-id": [ - "c962ec66-59e6-4ba3-8247-3cffa79792d5" + "37510467-f824-4d40-93cd-c81b68e6d64b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172858Z:c962ec66-59e6-4ba3-8247-3cffa79792d5" + "JIOINDIACENTRAL:20220512T083414Z:37510467-f824-4d40-93cd-c81b68e6d64b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:58 GMT" + "Thu, 12 May 2022 08:34:14 GMT" ], "Content-Length": [ "602" @@ -15318,16 +15258,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8efe2ba4-961a-4f96-b359-c77120bec1a3" + "6a6a60eb-62c6-4d81-a18e-7c7ac5611c35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15347,22 +15287,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11987" ], "x-ms-request-id": [ - "bf5756b9-a8e3-471b-8f9e-4ddadf7e5ecd" + "7e5749a4-5f79-4dd0-afe6-87a6a4c40214" ], "x-ms-correlation-request-id": [ - "bf5756b9-a8e3-471b-8f9e-4ddadf7e5ecd" + "7e5749a4-5f79-4dd0-afe6-87a6a4c40214" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172859Z:bf5756b9-a8e3-471b-8f9e-4ddadf7e5ecd" + "JIOINDIACENTRAL:20220512T083415Z:7e5749a4-5f79-4dd0-afe6-87a6a4c40214" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:58 GMT" + "Thu, 12 May 2022 08:34:15 GMT" ], "Content-Length": [ "602" @@ -15381,16 +15321,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "646ac606-d39c-43dd-812a-ecd84722d80a" + "9b986208-c156-4af9-8c85-887673c4b521" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15410,22 +15350,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" + "11995" ], "x-ms-request-id": [ - "a6dc18c8-5dbf-42fc-90d0-536196706eb4" + "404e599e-b181-4252-bfbf-5acae53d0524" ], "x-ms-correlation-request-id": [ - "a6dc18c8-5dbf-42fc-90d0-536196706eb4" + "404e599e-b181-4252-bfbf-5acae53d0524" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172859Z:a6dc18c8-5dbf-42fc-90d0-536196706eb4" + "JIOINDIACENTRAL:20220512T083416Z:404e599e-b181-4252-bfbf-5acae53d0524" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:58 GMT" + "Thu, 12 May 2022 08:34:15 GMT" ], "Content-Length": [ "602" @@ -15444,16 +15384,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21c64cfb-ffda-41e6-82ac-2169a7334ccf" + "bd85442b-d9ae-4c50-ad7f-5bb5e7d0b9cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15473,22 +15413,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11986" ], "x-ms-request-id": [ - "3351a755-eb5f-42b8-b3b5-2cdf314ef0a5" + "2a815b77-2812-4d6c-b7d0-45179273bf5f" ], "x-ms-correlation-request-id": [ - "3351a755-eb5f-42b8-b3b5-2cdf314ef0a5" + "2a815b77-2812-4d6c-b7d0-45179273bf5f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172859Z:3351a755-eb5f-42b8-b3b5-2cdf314ef0a5" + "JIOINDIACENTRAL:20220512T083417Z:2a815b77-2812-4d6c-b7d0-45179273bf5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:59 GMT" + "Thu, 12 May 2022 08:34:16 GMT" ], "Content-Length": [ "602" @@ -15507,16 +15447,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1884a637-24f9-4f1b-8322-7b8601322359" + "378ee6a1-d831-4079-9df3-d3271c1d29fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15536,22 +15476,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11995" ], "x-ms-request-id": [ - "a5acc901-3360-4261-862a-b92177310d54" + "f1966301-1e32-446c-9ab7-39cf769637a4" ], "x-ms-correlation-request-id": [ - "a5acc901-3360-4261-862a-b92177310d54" + "f1966301-1e32-446c-9ab7-39cf769637a4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172859Z:a5acc901-3360-4261-862a-b92177310d54" + "JIOINDIACENTRAL:20220512T083417Z:f1966301-1e32-446c-9ab7-39cf769637a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:59 GMT" + "Thu, 12 May 2022 08:34:17 GMT" ], "Content-Length": [ "602" @@ -15570,16 +15510,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae43c6ff-7059-4b7d-8b7e-f0d8092e7106" + "ad35b132-3a3e-4526-8463-c705daf2e4dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15599,22 +15539,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11991" ], "x-ms-request-id": [ - "cb38b1af-cf5a-40a2-ba97-932dab5f66a7" + "b5b3d0ad-acab-4b49-a59a-e206ab1ba255" ], "x-ms-correlation-request-id": [ - "cb38b1af-cf5a-40a2-ba97-932dab5f66a7" + "b5b3d0ad-acab-4b49-a59a-e206ab1ba255" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172900Z:cb38b1af-cf5a-40a2-ba97-932dab5f66a7" + "JIOINDIACENTRAL:20220512T083419Z:b5b3d0ad-acab-4b49-a59a-e206ab1ba255" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:59 GMT" + "Thu, 12 May 2022 08:34:18 GMT" ], "Content-Length": [ "602" @@ -15633,16 +15573,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b92dc03-153b-46ef-a381-6bb039a81d2a" + "238d2c27-e1f5-41a5-88df-0e204ed93778" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15662,22 +15602,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" + "11994" ], "x-ms-request-id": [ - "d15e0bfb-232c-4583-963f-28387db16435" + "e5de0124-0edc-460c-befa-fe07d0882da8" ], "x-ms-correlation-request-id": [ - "d15e0bfb-232c-4583-963f-28387db16435" + "e5de0124-0edc-460c-befa-fe07d0882da8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172900Z:d15e0bfb-232c-4583-963f-28387db16435" + "JIOINDIACENTRAL:20220512T083419Z:e5de0124-0edc-460c-befa-fe07d0882da8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:28:59 GMT" + "Thu, 12 May 2022 08:34:19 GMT" ], "Content-Length": [ "602" @@ -15696,16 +15636,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb812502-ea38-451e-97fc-1a52a3e11504" + "e70d203e-17ac-41c3-a6d8-1303bf3a2649" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15725,22 +15665,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11990" ], "x-ms-request-id": [ - "2b432078-d635-4ca0-ac49-65a91505f003" + "3c409b90-d554-4000-8d6c-23d444695d99" ], "x-ms-correlation-request-id": [ - "2b432078-d635-4ca0-ac49-65a91505f003" + "3c409b90-d554-4000-8d6c-23d444695d99" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172900Z:2b432078-d635-4ca0-ac49-65a91505f003" + "JIOINDIACENTRAL:20220512T083420Z:3c409b90-d554-4000-8d6c-23d444695d99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:00 GMT" + "Thu, 12 May 2022 08:34:19 GMT" ], "Content-Length": [ "602" @@ -15759,16 +15699,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41384bbe-ce77-4317-83f4-589f3f97cd74" + "c101ab94-f813-4220-820c-251afe78188b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15788,22 +15728,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" + "11985" ], "x-ms-request-id": [ - "52589748-f0e1-4a96-843b-df6226f3b812" + "86506347-3707-4cdc-b27d-65f65682e656" ], "x-ms-correlation-request-id": [ - "52589748-f0e1-4a96-843b-df6226f3b812" + "86506347-3707-4cdc-b27d-65f65682e656" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172901Z:52589748-f0e1-4a96-843b-df6226f3b812" + "JIOINDIACENTRAL:20220512T083421Z:86506347-3707-4cdc-b27d-65f65682e656" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:00 GMT" + "Thu, 12 May 2022 08:34:20 GMT" ], "Content-Length": [ "602" @@ -15822,16 +15762,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23b1eb43-17f2-4303-9f49-a8da10891649" + "4376fd02-3c81-43bf-853f-0a523411ca8b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15851,22 +15791,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" + "11993" ], "x-ms-request-id": [ - "cbf88164-6e7e-411e-a3fc-8b0cf12d69b2" + "7280f2b3-5e2a-44de-bc22-98a0177d6e9c" ], "x-ms-correlation-request-id": [ - "cbf88164-6e7e-411e-a3fc-8b0cf12d69b2" + "7280f2b3-5e2a-44de-bc22-98a0177d6e9c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172901Z:cbf88164-6e7e-411e-a3fc-8b0cf12d69b2" + "JIOINDIACENTRAL:20220512T083421Z:7280f2b3-5e2a-44de-bc22-98a0177d6e9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:00 GMT" + "Thu, 12 May 2022 08:34:21 GMT" ], "Content-Length": [ "602" @@ -15885,16 +15825,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "757591c1-ce78-468f-8cb6-d73f0d5a55a2" + "9675c2e1-53ff-4651-9690-6b4cbd61bc05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15914,22 +15854,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" + "11984" ], "x-ms-request-id": [ - "52dda273-c014-4828-ace9-df8372b4230a" + "d438b3cd-98d7-482d-b9f8-86a74fc32681" ], "x-ms-correlation-request-id": [ - "52dda273-c014-4828-ace9-df8372b4230a" + "d438b3cd-98d7-482d-b9f8-86a74fc32681" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172901Z:52dda273-c014-4828-ace9-df8372b4230a" + "JIOINDIACENTRAL:20220512T083422Z:d438b3cd-98d7-482d-b9f8-86a74fc32681" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:00 GMT" + "Thu, 12 May 2022 08:34:21 GMT" ], "Content-Length": [ "602" @@ -15948,16 +15888,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2245041-8ed5-42ae-b2bd-b55edae6300b" + "92085d9f-1c4f-458e-8dfa-62f12fea7d42" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -15977,22 +15917,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" + "11992" ], "x-ms-request-id": [ - "5c116819-a092-4982-96cb-122f85839d66" + "40791e66-4c44-47f2-9c99-98d45d2b393c" ], "x-ms-correlation-request-id": [ - "5c116819-a092-4982-96cb-122f85839d66" + "40791e66-4c44-47f2-9c99-98d45d2b393c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172901Z:5c116819-a092-4982-96cb-122f85839d66" + "JIOINDIACENTRAL:20220512T083423Z:40791e66-4c44-47f2-9c99-98d45d2b393c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:01 GMT" + "Thu, 12 May 2022 08:34:22 GMT" ], "Content-Length": [ "602" @@ -16011,16 +15951,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15b8ea86-cce8-4623-ab4d-c8b9cb2a9d91" + "e9a6729d-3681-4274-b02d-6f7173b724ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16040,22 +15980,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" + "11994" ], "x-ms-request-id": [ - "3240bc7c-f964-4599-a0c4-40fb9a1ca0ef" + "19ac3f05-28f1-4253-a6bc-252c5d8dee54" ], "x-ms-correlation-request-id": [ - "3240bc7c-f964-4599-a0c4-40fb9a1ca0ef" + "19ac3f05-28f1-4253-a6bc-252c5d8dee54" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172902Z:3240bc7c-f964-4599-a0c4-40fb9a1ca0ef" + "JIOINDIACENTRAL:20220512T083424Z:19ac3f05-28f1-4253-a6bc-252c5d8dee54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:01 GMT" + "Thu, 12 May 2022 08:34:24 GMT" ], "Content-Length": [ "602" @@ -16074,16 +16014,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59663224-8641-4bb1-af3c-277f39719842" + "380248aa-a295-4cc6-a69c-da5ca34a559f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16103,22 +16043,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" + "11993" ], "x-ms-request-id": [ - "91d44741-bef3-4ee1-9965-68193f954cea" + "042faab0-0491-4474-97b9-922470298fe1" ], "x-ms-correlation-request-id": [ - "91d44741-bef3-4ee1-9965-68193f954cea" + "042faab0-0491-4474-97b9-922470298fe1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172902Z:91d44741-bef3-4ee1-9965-68193f954cea" + "JIOINDIACENTRAL:20220512T083425Z:042faab0-0491-4474-97b9-922470298fe1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:01 GMT" + "Thu, 12 May 2022 08:34:25 GMT" ], "Content-Length": [ "602" @@ -16137,16 +16077,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f4897b6-b834-4ef3-bd28-7b4dfbd78d33" + "66e58026-d090-4dca-9f43-a8633b346c42" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16166,22 +16106,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" + "11992" ], "x-ms-request-id": [ - "a9e7397a-5da5-46e2-bdbf-b7740f2f23d5" + "5f0d19e2-5594-4ab4-81e1-c8e2e8a1fb6b" ], "x-ms-correlation-request-id": [ - "a9e7397a-5da5-46e2-bdbf-b7740f2f23d5" + "5f0d19e2-5594-4ab4-81e1-c8e2e8a1fb6b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172902Z:a9e7397a-5da5-46e2-bdbf-b7740f2f23d5" + "JIOINDIACENTRAL:20220512T083425Z:5f0d19e2-5594-4ab4-81e1-c8e2e8a1fb6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:01 GMT" + "Thu, 12 May 2022 08:34:25 GMT" ], "Content-Length": [ "602" @@ -16200,16 +16140,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee391c6a-fd4e-420f-b744-ddcda4d78936" + "db504b40-3ce6-4a5d-a84a-b573d22bb34e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16229,22 +16169,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" + "11989" ], "x-ms-request-id": [ - "4dc3c949-1602-4318-9dcc-a1ea7b488e02" + "8c95461a-ef70-4f93-ae33-226457e842ad" ], "x-ms-correlation-request-id": [ - "4dc3c949-1602-4318-9dcc-a1ea7b488e02" + "8c95461a-ef70-4f93-ae33-226457e842ad" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172902Z:4dc3c949-1602-4318-9dcc-a1ea7b488e02" + "JIOINDIACENTRAL:20220512T083427Z:8c95461a-ef70-4f93-ae33-226457e842ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:02 GMT" + "Thu, 12 May 2022 08:34:26 GMT" ], "Content-Length": [ "602" @@ -16263,16 +16203,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f1ca024-ec4c-4a3c-b125-baaf0469747b" + "f70dda0b-fcdf-4f50-aef7-bc7a560a61ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16292,22 +16232,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" + "11983" ], "x-ms-request-id": [ - "e9178c69-c736-4e81-b48e-c3a0545d0274" + "718f29a1-df37-4daf-b5e0-71b47cdda2cd" ], "x-ms-correlation-request-id": [ - "e9178c69-c736-4e81-b48e-c3a0545d0274" + "718f29a1-df37-4daf-b5e0-71b47cdda2cd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172903Z:e9178c69-c736-4e81-b48e-c3a0545d0274" + "JIOINDIACENTRAL:20220512T083427Z:718f29a1-df37-4daf-b5e0-71b47cdda2cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:02 GMT" + "Thu, 12 May 2022 08:34:27 GMT" ], "Content-Length": [ "602" @@ -16326,16 +16266,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b8d98e7-7812-456b-9606-c1a40b73ce1c" + "c5cc26b7-c4a7-42c8-86f9-ace24d0801d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16355,22 +16295,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "11988" ], "x-ms-request-id": [ - "5dd8eba4-5a34-420e-9a32-05db25f2b98a" + "7a78688f-efa5-4ae8-b702-c815830def89" ], "x-ms-correlation-request-id": [ - "5dd8eba4-5a34-420e-9a32-05db25f2b98a" + "7a78688f-efa5-4ae8-b702-c815830def89" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172903Z:5dd8eba4-5a34-420e-9a32-05db25f2b98a" + "JIOINDIACENTRAL:20220512T083428Z:7a78688f-efa5-4ae8-b702-c815830def89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:02 GMT" + "Thu, 12 May 2022 08:34:27 GMT" ], "Content-Length": [ "602" @@ -16389,16 +16329,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2348dac8-5a6f-49cf-82fb-d0c9b8e90d7d" + "6854796c-2722-44c2-8cef-0f6cba11ca7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16418,22 +16358,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" + "11982" ], "x-ms-request-id": [ - "0fb68501-815e-4a6e-9fd4-e5b0ed504426" + "96f691f8-364e-465e-9e45-f00b33e17d03" ], "x-ms-correlation-request-id": [ - "0fb68501-815e-4a6e-9fd4-e5b0ed504426" + "96f691f8-364e-465e-9e45-f00b33e17d03" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172903Z:0fb68501-815e-4a6e-9fd4-e5b0ed504426" + "JIOINDIACENTRAL:20220512T083429Z:96f691f8-364e-465e-9e45-f00b33e17d03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:02 GMT" + "Thu, 12 May 2022 08:34:28 GMT" ], "Content-Length": [ "602" @@ -16452,16 +16392,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27beaa5e-03c4-4064-8cce-6a62374a4108" + "51a4458d-6af9-4972-81af-dbbc867d0af7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16481,22 +16421,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" + "11991" ], "x-ms-request-id": [ - "dbdb6aa7-6b17-4552-887a-4fc3a0e3d99d" + "8f77abb3-aa62-46f3-be46-897f6c573d87" ], "x-ms-correlation-request-id": [ - "dbdb6aa7-6b17-4552-887a-4fc3a0e3d99d" + "8f77abb3-aa62-46f3-be46-897f6c573d87" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172903Z:dbdb6aa7-6b17-4552-887a-4fc3a0e3d99d" + "JIOINDIACENTRAL:20220512T083430Z:8f77abb3-aa62-46f3-be46-897f6c573d87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:03 GMT" + "Thu, 12 May 2022 08:34:29 GMT" ], "Content-Length": [ "602" @@ -16515,16 +16455,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78b28345-cfd8-4f87-8d31-7fe7a7023dc5" + "4512ca12-430e-40fb-8cea-f953278d034b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16544,22 +16484,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" + "11991" ], "x-ms-request-id": [ - "be8f2eea-2cf1-4a29-bcff-c123e3b04c48" + "3d19f0d8-d7a6-4ef2-a5cf-864b9cb44743" ], "x-ms-correlation-request-id": [ - "be8f2eea-2cf1-4a29-bcff-c123e3b04c48" + "3d19f0d8-d7a6-4ef2-a5cf-864b9cb44743" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172904Z:be8f2eea-2cf1-4a29-bcff-c123e3b04c48" + "JIOINDIACENTRAL:20220512T083430Z:3d19f0d8-d7a6-4ef2-a5cf-864b9cb44743" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:03 GMT" + "Thu, 12 May 2022 08:34:29 GMT" ], "Content-Length": [ "602" @@ -16578,16 +16518,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "106391cb-3e95-4cb6-944f-ce6271a75a51" + "aa3e6bc4-7591-4215-a062-23841ceb8cfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16607,22 +16547,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11990" ], "x-ms-request-id": [ - "608fe707-905e-4bab-9ab2-62be9f356fbb" + "f1f65559-82df-41fe-9a17-5fcb4adec40b" ], "x-ms-correlation-request-id": [ - "608fe707-905e-4bab-9ab2-62be9f356fbb" + "f1f65559-82df-41fe-9a17-5fcb4adec40b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172904Z:608fe707-905e-4bab-9ab2-62be9f356fbb" + "JIOINDIACENTRAL:20220512T083431Z:f1f65559-82df-41fe-9a17-5fcb4adec40b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:03 GMT" + "Thu, 12 May 2022 08:34:31 GMT" ], "Content-Length": [ "602" @@ -16641,16 +16581,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "835be49b-7fac-4bc6-891b-bc74eef08913" + "a622add9-893a-4fb2-a568-ec40b3315a76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16670,22 +16610,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11754" + "11981" ], "x-ms-request-id": [ - "0f061822-f3af-46bc-b7d6-b07a1bdd1557" + "93e5e35b-6fe2-43ba-98c4-81cbd6337ec1" ], "x-ms-correlation-request-id": [ - "0f061822-f3af-46bc-b7d6-b07a1bdd1557" + "93e5e35b-6fe2-43ba-98c4-81cbd6337ec1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172904Z:0f061822-f3af-46bc-b7d6-b07a1bdd1557" + "JIOINDIACENTRAL:20220512T083432Z:93e5e35b-6fe2-43ba-98c4-81cbd6337ec1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:03 GMT" + "Thu, 12 May 2022 08:34:32 GMT" ], "Content-Length": [ "602" @@ -16704,16 +16644,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46d67487-4544-4552-a79b-cb2d7a8735b9" + "c5d9c51a-e7e3-46ff-ac01-380a7fe5683b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16733,22 +16673,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11753" + "11987" ], "x-ms-request-id": [ - "999838b8-82ca-444b-ba36-f2e17fd7823f" + "b583066a-e4f2-4b22-b055-0e99aef02f24" ], "x-ms-correlation-request-id": [ - "999838b8-82ca-444b-ba36-f2e17fd7823f" + "b583066a-e4f2-4b22-b055-0e99aef02f24" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172905Z:999838b8-82ca-444b-ba36-f2e17fd7823f" + "JIOINDIACENTRAL:20220512T083432Z:b583066a-e4f2-4b22-b055-0e99aef02f24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:04 GMT" + "Thu, 12 May 2022 08:34:32 GMT" ], "Content-Length": [ "602" @@ -16767,16 +16707,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03ebae46-310a-4801-9a92-b7129fd9c0fa" + "512bcf99-068d-4ffb-a765-a055afa3e79a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16796,22 +16736,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11986" ], "x-ms-request-id": [ - "ed5daab0-396c-4414-8fda-837c31adc6f0" + "e149b1f6-8475-4579-b78c-e367f8c3a4a5" ], "x-ms-correlation-request-id": [ - "ed5daab0-396c-4414-8fda-837c31adc6f0" + "e149b1f6-8475-4579-b78c-e367f8c3a4a5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172905Z:ed5daab0-396c-4414-8fda-837c31adc6f0" + "JIOINDIACENTRAL:20220512T083433Z:e149b1f6-8475-4579-b78c-e367f8c3a4a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:04 GMT" + "Thu, 12 May 2022 08:34:33 GMT" ], "Content-Length": [ "602" @@ -16830,16 +16770,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b002e651-b6f5-402b-97a0-8b71b8598b26" + "31782e39-2fa5-4467-8c81-c196e6ad5b58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16859,22 +16799,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11751" + "11980" ], "x-ms-request-id": [ - "ae0c282f-f05c-407c-b691-f33d89f86d1b" + "e725334f-d136-454f-8876-ce66b5ed49af" ], "x-ms-correlation-request-id": [ - "ae0c282f-f05c-407c-b691-f33d89f86d1b" + "e725334f-d136-454f-8876-ce66b5ed49af" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172905Z:ae0c282f-f05c-407c-b691-f33d89f86d1b" + "JIOINDIACENTRAL:20220512T083434Z:e725334f-d136-454f-8876-ce66b5ed49af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:04 GMT" + "Thu, 12 May 2022 08:34:34 GMT" ], "Content-Length": [ "602" @@ -16893,16 +16833,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aca9ea3a-25e9-420a-9ed6-4a8ea69b5a9a" + "e355235c-a0a3-4cc9-ae15-3ba7ed34fa87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16922,22 +16862,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" + "11989" ], "x-ms-request-id": [ - "f6130d25-a874-4fd2-91b7-f194a8daf05e" + "85da7f4e-2fec-4c98-9d2a-4c51af1618eb" ], "x-ms-correlation-request-id": [ - "f6130d25-a874-4fd2-91b7-f194a8daf05e" + "85da7f4e-2fec-4c98-9d2a-4c51af1618eb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172905Z:f6130d25-a874-4fd2-91b7-f194a8daf05e" + "JIOINDIACENTRAL:20220512T083434Z:85da7f4e-2fec-4c98-9d2a-4c51af1618eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:04 GMT" + "Thu, 12 May 2022 08:34:34 GMT" ], "Content-Length": [ "602" @@ -16956,16 +16896,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "302d9ec8-220d-433b-8a26-6cecc2bfe592" + "4a6050bf-1e6c-41d1-b370-95678a704ac4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -16985,22 +16925,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" + "11979" ], "x-ms-request-id": [ - "61ffd48f-24c2-4a61-bd73-c8f75bf2d10e" + "de2f0433-d0b4-4095-ba4c-e827b4c93f17" ], "x-ms-correlation-request-id": [ - "61ffd48f-24c2-4a61-bd73-c8f75bf2d10e" + "de2f0433-d0b4-4095-ba4c-e827b4c93f17" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172906Z:61ffd48f-24c2-4a61-bd73-c8f75bf2d10e" + "JIOINDIACENTRAL:20220512T083435Z:de2f0433-d0b4-4095-ba4c-e827b4c93f17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:05 GMT" + "Thu, 12 May 2022 08:34:35 GMT" ], "Content-Length": [ "602" @@ -17019,16 +16959,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91c843fb-7901-47d8-b9da-2de87ac67a4b" + "47a44d37-e4d4-4e6f-94d4-6821a0b1a99c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17048,22 +16988,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11748" + "11988" ], "x-ms-request-id": [ - "887c8b20-0c3c-44e0-a0f1-8cae736d1568" + "b7baace8-537a-4b5f-9fbc-ad2286a68932" ], "x-ms-correlation-request-id": [ - "887c8b20-0c3c-44e0-a0f1-8cae736d1568" + "b7baace8-537a-4b5f-9fbc-ad2286a68932" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172906Z:887c8b20-0c3c-44e0-a0f1-8cae736d1568" + "JIOINDIACENTRAL:20220512T083436Z:b7baace8-537a-4b5f-9fbc-ad2286a68932" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:05 GMT" + "Thu, 12 May 2022 08:34:36 GMT" ], "Content-Length": [ "602" @@ -17082,16 +17022,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6eef7f49-54db-4e1b-87d7-29089e860acb" + "f6aff746-c7e9-420e-900b-4e213a4fe5e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17111,22 +17051,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11747" + "11987" ], "x-ms-request-id": [ - "67ad7264-8329-4d6e-8017-094ea37a946a" + "40a227d0-241d-4265-9f39-069f90988ec5" ], "x-ms-correlation-request-id": [ - "67ad7264-8329-4d6e-8017-094ea37a946a" + "40a227d0-241d-4265-9f39-069f90988ec5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172906Z:67ad7264-8329-4d6e-8017-094ea37a946a" + "JIOINDIACENTRAL:20220512T083437Z:40a227d0-241d-4265-9f39-069f90988ec5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:05 GMT" + "Thu, 12 May 2022 08:34:36 GMT" ], "Content-Length": [ "602" @@ -17145,16 +17085,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf580f80-4b3d-467d-a356-b3e515afc005" + "c9858485-f0fb-4894-9021-7172316fce15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17174,22 +17114,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" + "11990" ], "x-ms-request-id": [ - "2fda9aed-4de0-4a0f-940a-67d66d6004ab" + "df006a7f-1250-4b7f-bf70-52a416af66d9" ], "x-ms-correlation-request-id": [ - "2fda9aed-4de0-4a0f-940a-67d66d6004ab" + "df006a7f-1250-4b7f-bf70-52a416af66d9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172906Z:2fda9aed-4de0-4a0f-940a-67d66d6004ab" + "JIOINDIACENTRAL:20220512T083437Z:df006a7f-1250-4b7f-bf70-52a416af66d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:06 GMT" + "Thu, 12 May 2022 08:34:37 GMT" ], "Content-Length": [ "602" @@ -17208,16 +17148,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d4eb815-6c63-40bb-961f-0bdb77900c2c" + "b7c45f49-7d64-4c3a-a009-0a9f41ee7538" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17237,22 +17177,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" + "11985" ], "x-ms-request-id": [ - "688e3261-0c7c-42a0-89a3-9cdf2d9c563e" + "8a05f13b-d88a-4474-a98b-e396872f34be" ], "x-ms-correlation-request-id": [ - "688e3261-0c7c-42a0-89a3-9cdf2d9c563e" + "8a05f13b-d88a-4474-a98b-e396872f34be" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172907Z:688e3261-0c7c-42a0-89a3-9cdf2d9c563e" + "JIOINDIACENTRAL:20220512T083438Z:8a05f13b-d88a-4474-a98b-e396872f34be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:06 GMT" + "Thu, 12 May 2022 08:34:38 GMT" ], "Content-Length": [ "602" @@ -17271,16 +17211,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aa9f8ee-933a-4585-a99f-5c38748fc507" + "9dedde4a-7547-4fe0-9146-18139899a281" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17300,22 +17240,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11744" + "11986" ], "x-ms-request-id": [ - "4f79267e-45ec-4095-9426-f9509c45fda0" + "f768673d-b8fd-4738-a5fa-1007dde71cf7" ], "x-ms-correlation-request-id": [ - "4f79267e-45ec-4095-9426-f9509c45fda0" + "f768673d-b8fd-4738-a5fa-1007dde71cf7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172907Z:4f79267e-45ec-4095-9426-f9509c45fda0" + "JIOINDIACENTRAL:20220512T083439Z:f768673d-b8fd-4738-a5fa-1007dde71cf7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:06 GMT" + "Thu, 12 May 2022 08:34:38 GMT" ], "Content-Length": [ "602" @@ -17334,16 +17274,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bca9065-e582-44a6-ba2e-2b6e54b16cc2" + "dd4a064c-41c1-4a59-9b9d-d4796de8173e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17363,22 +17303,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11743" + "11984" ], "x-ms-request-id": [ - "72958a4d-84de-45e3-bf17-ae487e7068b7" + "55d4b640-f1e3-444e-99fe-c46ff236c0e2" ], "x-ms-correlation-request-id": [ - "72958a4d-84de-45e3-bf17-ae487e7068b7" + "55d4b640-f1e3-444e-99fe-c46ff236c0e2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172907Z:72958a4d-84de-45e3-bf17-ae487e7068b7" + "JIOINDIACENTRAL:20220512T083439Z:55d4b640-f1e3-444e-99fe-c46ff236c0e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:06 GMT" + "Thu, 12 May 2022 08:34:39 GMT" ], "Content-Length": [ "602" @@ -17397,16 +17337,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5ef0f0e-5c56-4105-b116-c458d8ef8222" + "a59db652-949b-445a-853a-3acc95a46197" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17426,22 +17366,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11742" + "11978" ], "x-ms-request-id": [ - "fffc7811-0e9c-4337-a0ee-8e6559d38810" + "1fd1cdaa-06a9-4287-b13e-cdaa7f6d0ffc" ], "x-ms-correlation-request-id": [ - "fffc7811-0e9c-4337-a0ee-8e6559d38810" + "1fd1cdaa-06a9-4287-b13e-cdaa7f6d0ffc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172908Z:fffc7811-0e9c-4337-a0ee-8e6559d38810" + "JIOINDIACENTRAL:20220512T083440Z:1fd1cdaa-06a9-4287-b13e-cdaa7f6d0ffc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:08 GMT" + "Thu, 12 May 2022 08:34:39 GMT" ], "Content-Length": [ "602" @@ -17460,16 +17400,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55722e7e-7d7c-47f7-9bd7-4eef6a1a0953" + "8fdc7246-47a0-4553-821a-d6f6f179e531" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17489,22 +17429,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11741" + "11977" ], "x-ms-request-id": [ - "19bedca2-e6de-4903-9a23-4b7d5921ae47" + "f7327eed-6d51-43ae-8306-d4b620d05c1f" ], "x-ms-correlation-request-id": [ - "19bedca2-e6de-4903-9a23-4b7d5921ae47" + "f7327eed-6d51-43ae-8306-d4b620d05c1f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172908Z:19bedca2-e6de-4903-9a23-4b7d5921ae47" + "JIOINDIACENTRAL:20220512T083441Z:f7327eed-6d51-43ae-8306-d4b620d05c1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:08 GMT" + "Thu, 12 May 2022 08:34:40 GMT" ], "Content-Length": [ "602" @@ -17523,16 +17463,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83125e28-b598-46d2-adca-5c0715a31dad" + "8a926eb0-c283-48c3-835e-471676e6257a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17552,22 +17492,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" + "11976" ], "x-ms-request-id": [ - "d19c6f2a-8212-4c7b-a152-3c5ee5c561d3" + "a6e053a5-0de4-44d9-b38e-7d4f938b2ed8" ], "x-ms-correlation-request-id": [ - "d19c6f2a-8212-4c7b-a152-3c5ee5c561d3" + "a6e053a5-0de4-44d9-b38e-7d4f938b2ed8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172908Z:d19c6f2a-8212-4c7b-a152-3c5ee5c561d3" + "JIOINDIACENTRAL:20220512T083441Z:a6e053a5-0de4-44d9-b38e-7d4f938b2ed8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:08 GMT" + "Thu, 12 May 2022 08:34:41 GMT" ], "Content-Length": [ "602" @@ -17586,16 +17526,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec23f10b-5b04-40fe-8449-9ca830f20169" + "0df8e953-e5b5-411d-9c26-d1ca2c36de68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17615,22 +17555,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11739" + "11985" ], "x-ms-request-id": [ - "ae6ab183-ec5e-4758-8fff-740cbc26c411" + "ebc5687c-83dc-4bac-a4bc-c81b0bcac74d" ], "x-ms-correlation-request-id": [ - "ae6ab183-ec5e-4758-8fff-740cbc26c411" + "ebc5687c-83dc-4bac-a4bc-c81b0bcac74d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172908Z:ae6ab183-ec5e-4758-8fff-740cbc26c411" + "JIOINDIACENTRAL:20220512T083442Z:ebc5687c-83dc-4bac-a4bc-c81b0bcac74d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:08 GMT" + "Thu, 12 May 2022 08:34:42 GMT" ], "Content-Length": [ "602" @@ -17649,16 +17589,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d62ee90-4938-4ec6-8d8b-4ff605f78ef1" + "c4531526-e64e-4357-9bdd-eedde2230281" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17678,22 +17618,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11738" + "11983" ], "x-ms-request-id": [ - "8fad9e8b-9176-45cc-9f09-c98714fc92bf" + "c4bec180-91c1-4afd-8923-719974664c56" ], "x-ms-correlation-request-id": [ - "8fad9e8b-9176-45cc-9f09-c98714fc92bf" + "c4bec180-91c1-4afd-8923-719974664c56" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172909Z:8fad9e8b-9176-45cc-9f09-c98714fc92bf" + "JIOINDIACENTRAL:20220512T083443Z:c4bec180-91c1-4afd-8923-719974664c56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:09 GMT" + "Thu, 12 May 2022 08:34:42 GMT" ], "Content-Length": [ "602" @@ -17712,16 +17652,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38956c1e-6016-45f0-bea3-33e7fb01ae0b" + "755a0e0b-3c14-40be-a0d5-44d9617ab9f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17741,22 +17681,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11737" + "11975" ], "x-ms-request-id": [ - "529f7089-a396-4d59-8aa0-4cbd802bd709" + "fe446fbf-41bc-400b-a8be-cd3595549d92" ], "x-ms-correlation-request-id": [ - "529f7089-a396-4d59-8aa0-4cbd802bd709" + "fe446fbf-41bc-400b-a8be-cd3595549d92" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172909Z:529f7089-a396-4d59-8aa0-4cbd802bd709" + "JIOINDIACENTRAL:20220512T083444Z:fe446fbf-41bc-400b-a8be-cd3595549d92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:09 GMT" + "Thu, 12 May 2022 08:34:43 GMT" ], "Content-Length": [ "602" @@ -17775,16 +17715,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8616cbf-cac0-4b2c-bed5-768dba28cd6c" + "91e1b721-eb0b-42aa-babe-d6cb6e5fac0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17804,22 +17744,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" + "11982" ], "x-ms-request-id": [ - "7ed0f008-344d-4d03-a322-0af5c4408b48" + "12d04916-b497-44cb-a52b-2f977e0dc78b" ], "x-ms-correlation-request-id": [ - "7ed0f008-344d-4d03-a322-0af5c4408b48" + "12d04916-b497-44cb-a52b-2f977e0dc78b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172909Z:7ed0f008-344d-4d03-a322-0af5c4408b48" + "JIOINDIACENTRAL:20220512T083444Z:12d04916-b497-44cb-a52b-2f977e0dc78b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:09 GMT" + "Thu, 12 May 2022 08:34:44 GMT" ], "Content-Length": [ "602" @@ -17838,16 +17778,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21dd21f7-e9c8-4bde-b8fd-528e38b46c2c" + "bff4a923-5c91-4319-93a2-c99f866c34ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17867,22 +17807,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11735" + "11984" ], "x-ms-request-id": [ - "7ef2788d-a218-4292-bc3b-8f41fe82c4e6" + "733a5109-44fa-4903-8861-cf1d26e7938b" ], "x-ms-correlation-request-id": [ - "7ef2788d-a218-4292-bc3b-8f41fe82c4e6" + "733a5109-44fa-4903-8861-cf1d26e7938b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172909Z:7ef2788d-a218-4292-bc3b-8f41fe82c4e6" + "JIOINDIACENTRAL:20220512T083445Z:733a5109-44fa-4903-8861-cf1d26e7938b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:09 GMT" + "Thu, 12 May 2022 08:34:44 GMT" ], "Content-Length": [ "602" @@ -17901,16 +17841,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6b0cc50-922d-44e3-985f-fb45f2bf477d" + "6461de18-dbde-4c63-b267-09f76f842d46" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17930,22 +17870,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11734" + "11974" ], "x-ms-request-id": [ - "96ab2928-16c7-44ba-9aa4-746fad760f6a" + "8e27e250-3f5d-49f4-b4c8-87bcf2402f94" ], "x-ms-correlation-request-id": [ - "96ab2928-16c7-44ba-9aa4-746fad760f6a" + "8e27e250-3f5d-49f4-b4c8-87bcf2402f94" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172910Z:96ab2928-16c7-44ba-9aa4-746fad760f6a" + "JIOINDIACENTRAL:20220512T083446Z:8e27e250-3f5d-49f4-b4c8-87bcf2402f94" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:10 GMT" + "Thu, 12 May 2022 08:34:45 GMT" ], "Content-Length": [ "602" @@ -17964,16 +17904,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5fa439d-778b-499d-a6c7-cfcb6d231cbd" + "2c6957db-87a8-44f4-8b21-4fc10c169f35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -17993,22 +17933,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" + "11981" ], "x-ms-request-id": [ - "9a7fd4b1-4ec4-4c52-96ec-f47ed2693f76" + "53c58723-7fd2-4991-9328-23249a509d67" ], "x-ms-correlation-request-id": [ - "9a7fd4b1-4ec4-4c52-96ec-f47ed2693f76" + "53c58723-7fd2-4991-9328-23249a509d67" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172910Z:9a7fd4b1-4ec4-4c52-96ec-f47ed2693f76" + "JIOINDIACENTRAL:20220512T083446Z:53c58723-7fd2-4991-9328-23249a509d67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:10 GMT" + "Thu, 12 May 2022 08:34:46 GMT" ], "Content-Length": [ "602" @@ -18027,16 +17967,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26e33b6e-cf4f-489d-809d-2311a4de20cb" + "d29586be-82b6-40b0-b9f4-ee6de43e5c85" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18056,22 +17996,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11973" ], "x-ms-request-id": [ - "64a88cd4-54b6-41af-885f-02878475c7cc" + "bfd06661-020a-4553-8d83-a5d05131ca51" ], "x-ms-correlation-request-id": [ - "64a88cd4-54b6-41af-885f-02878475c7cc" + "bfd06661-020a-4553-8d83-a5d05131ca51" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172910Z:64a88cd4-54b6-41af-885f-02878475c7cc" + "JIOINDIACENTRAL:20220512T083447Z:bfd06661-020a-4553-8d83-a5d05131ca51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:10 GMT" + "Thu, 12 May 2022 08:34:46 GMT" ], "Content-Length": [ "602" @@ -18090,16 +18030,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1fb808b-d60f-43b0-8234-cdf8fab752f5" + "a8f2610f-093f-4f54-9ebd-e339345f5c06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18119,22 +18059,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" + "11989" ], "x-ms-request-id": [ - "a991bc65-32c8-483d-8d34-6b86fad72a42" + "18e68231-366d-42f9-834a-acb22ce0a25a" ], "x-ms-correlation-request-id": [ - "a991bc65-32c8-483d-8d34-6b86fad72a42" + "18e68231-366d-42f9-834a-acb22ce0a25a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172911Z:a991bc65-32c8-483d-8d34-6b86fad72a42" + "JIOINDIACENTRAL:20220512T083448Z:18e68231-366d-42f9-834a-acb22ce0a25a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:10 GMT" + "Thu, 12 May 2022 08:34:48 GMT" ], "Content-Length": [ "602" @@ -18153,16 +18093,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21ea170b-804c-43ab-a551-dbcb7d408fd7" + "7246a2a6-9a85-4212-b764-079a0c1fcbcb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18182,22 +18122,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" + "11972" ], "x-ms-request-id": [ - "4ee36c38-65f2-427a-9f9d-e1adab5d5cd3" + "f0eced77-e1d2-4eec-bfae-f0bf3b43427b" ], "x-ms-correlation-request-id": [ - "4ee36c38-65f2-427a-9f9d-e1adab5d5cd3" + "f0eced77-e1d2-4eec-bfae-f0bf3b43427b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172911Z:4ee36c38-65f2-427a-9f9d-e1adab5d5cd3" + "JIOINDIACENTRAL:20220512T083448Z:f0eced77-e1d2-4eec-bfae-f0bf3b43427b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:11 GMT" + "Thu, 12 May 2022 08:34:47 GMT" ], "Content-Length": [ "602" @@ -18216,16 +18156,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a8797ec-bb50-4921-b3c9-4dbee33a375e" + "98b43af5-48cf-4828-9ba6-f1c8e3539989" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18245,22 +18185,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11729" + "11980" ], "x-ms-request-id": [ - "f4801ae6-35a3-4f00-980c-ee9e048b3123" + "b41b1517-72b5-4782-b471-b8febca8342a" ], "x-ms-correlation-request-id": [ - "f4801ae6-35a3-4f00-980c-ee9e048b3123" + "b41b1517-72b5-4782-b471-b8febca8342a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172911Z:f4801ae6-35a3-4f00-980c-ee9e048b3123" + "JIOINDIACENTRAL:20220512T083449Z:b41b1517-72b5-4782-b471-b8febca8342a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:11 GMT" + "Thu, 12 May 2022 08:34:49 GMT" ], "Content-Length": [ "602" @@ -18279,16 +18219,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b89b369c-3a34-42cb-b237-5bd624596ce0" + "b646ea4b-98c8-475d-82da-b4b948289666" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18308,22 +18248,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11728" + "11988" ], "x-ms-request-id": [ - "e7992dac-51f3-4552-8481-324f9e75aef6" + "939f8f84-ef57-40c3-9d3e-c10fc11b5f15" ], "x-ms-correlation-request-id": [ - "e7992dac-51f3-4552-8481-324f9e75aef6" + "939f8f84-ef57-40c3-9d3e-c10fc11b5f15" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172911Z:e7992dac-51f3-4552-8481-324f9e75aef6" + "JIOINDIACENTRAL:20220512T083450Z:939f8f84-ef57-40c3-9d3e-c10fc11b5f15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:11 GMT" + "Thu, 12 May 2022 08:34:50 GMT" ], "Content-Length": [ "602" @@ -18342,16 +18282,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f12e6f00-e5c9-4e95-9110-32e29622cbd2" + "8e4a7c14-4635-4169-ac7e-bef9cdb0c6c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18371,22 +18311,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11727" + "11974" ], "x-ms-request-id": [ - "25c8eef7-156f-4663-8cd3-1218238f68a3" + "40d760b2-1b55-4931-b286-82684624e48c" ], "x-ms-correlation-request-id": [ - "25c8eef7-156f-4663-8cd3-1218238f68a3" + "40d760b2-1b55-4931-b286-82684624e48c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172912Z:25c8eef7-156f-4663-8cd3-1218238f68a3" + "JIOINDIACENTRAL:20220512T083451Z:40d760b2-1b55-4931-b286-82684624e48c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:11 GMT" + "Thu, 12 May 2022 08:34:51 GMT" ], "Content-Length": [ "602" @@ -18405,16 +18345,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4624cf9d-2566-4e57-8f15-969a96dd1c99" + "ed724eae-ac6b-4858-b1d1-b3f52c4ed2ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18434,22 +18374,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11726" + "11967" ], "x-ms-request-id": [ - "7c90900c-9f8b-402c-aac2-83f465af70ca" + "d986acfa-1903-4cc8-b6bc-1d5d4b1ea0d3" ], "x-ms-correlation-request-id": [ - "7c90900c-9f8b-402c-aac2-83f465af70ca" + "d986acfa-1903-4cc8-b6bc-1d5d4b1ea0d3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172912Z:7c90900c-9f8b-402c-aac2-83f465af70ca" + "JIOINDIACENTRAL:20220512T083453Z:d986acfa-1903-4cc8-b6bc-1d5d4b1ea0d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:12 GMT" + "Thu, 12 May 2022 08:34:52 GMT" ], "Content-Length": [ "602" @@ -18468,16 +18408,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e55308f-1a8a-4042-af6c-f4df1b4b72f6" + "8bc48fe2-4b1c-495f-8a00-2f14ed37f2fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18497,22 +18437,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11725" + "11967" ], "x-ms-request-id": [ - "d0314b66-a9fe-4b2f-a1e3-3d00fe0cf208" + "52472381-5a9f-44a4-8e76-75b5937fb2ed" ], "x-ms-correlation-request-id": [ - "d0314b66-a9fe-4b2f-a1e3-3d00fe0cf208" + "52472381-5a9f-44a4-8e76-75b5937fb2ed" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172912Z:d0314b66-a9fe-4b2f-a1e3-3d00fe0cf208" + "JIOINDIACENTRAL:20220512T083454Z:52472381-5a9f-44a4-8e76-75b5937fb2ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:12 GMT" + "Thu, 12 May 2022 08:34:53 GMT" ], "Content-Length": [ "602" @@ -18531,16 +18471,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d009491-c793-4d89-aa93-6b7cbccddad6" + "8216d014-d98a-4d92-908a-cf4cb55ec90e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18560,22 +18500,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11724" + "11966" ], "x-ms-request-id": [ - "c1879068-c2af-4867-91ce-a180c412c47c" + "fa95b4ca-118e-49e0-889d-69a3210ba88e" ], "x-ms-correlation-request-id": [ - "c1879068-c2af-4867-91ce-a180c412c47c" + "fa95b4ca-118e-49e0-889d-69a3210ba88e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172912Z:c1879068-c2af-4867-91ce-a180c412c47c" + "JIOINDIACENTRAL:20220512T083455Z:fa95b4ca-118e-49e0-889d-69a3210ba88e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:12 GMT" + "Thu, 12 May 2022 08:34:54 GMT" ], "Content-Length": [ "602" @@ -18594,16 +18534,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b65ababf-722e-47c5-8118-457d9bbc8cfc" + "7b9cce01-a0a0-477c-99bd-046c840d0932" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18623,22 +18563,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11723" + "11973" ], "x-ms-request-id": [ - "583911d0-d02c-46f9-a1df-1e116dcaedb3" + "f6ab6c0b-4a19-4ec0-ac49-5594cc412db5" ], "x-ms-correlation-request-id": [ - "583911d0-d02c-46f9-a1df-1e116dcaedb3" + "f6ab6c0b-4a19-4ec0-ac49-5594cc412db5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172913Z:583911d0-d02c-46f9-a1df-1e116dcaedb3" + "JIOINDIACENTRAL:20220512T083455Z:f6ab6c0b-4a19-4ec0-ac49-5594cc412db5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:12 GMT" + "Thu, 12 May 2022 08:34:55 GMT" ], "Content-Length": [ "602" @@ -18657,16 +18597,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d81fe49-6905-49e9-9be7-f8c480f96210" + "e48d1791-c1d1-4dfb-8953-f70ad0fa43d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18686,22 +18626,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11722" + "11973" ], "x-ms-request-id": [ - "ba8dfb87-3178-4132-b8c6-f1e1d7c91d6d" + "3b469562-8e94-4b03-ae48-fdb93f512621" ], "x-ms-correlation-request-id": [ - "ba8dfb87-3178-4132-b8c6-f1e1d7c91d6d" + "3b469562-8e94-4b03-ae48-fdb93f512621" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172913Z:ba8dfb87-3178-4132-b8c6-f1e1d7c91d6d" + "JIOINDIACENTRAL:20220512T083457Z:3b469562-8e94-4b03-ae48-fdb93f512621" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:13 GMT" + "Thu, 12 May 2022 08:34:57 GMT" ], "Content-Length": [ "602" @@ -18720,16 +18660,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2aeebab-f79e-4233-afbb-58d087455493" + "a046860f-afa4-49ac-a570-8b5f83f2c148" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18749,22 +18689,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11721" + "11976" ], "x-ms-request-id": [ - "9837bdb1-7389-4c3a-b9dd-66454e0bba5a" + "5a45d301-4c61-466a-891b-a4602b1a3e26" ], "x-ms-correlation-request-id": [ - "9837bdb1-7389-4c3a-b9dd-66454e0bba5a" + "5a45d301-4c61-466a-891b-a4602b1a3e26" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172913Z:9837bdb1-7389-4c3a-b9dd-66454e0bba5a" + "JIOINDIACENTRAL:20220512T083458Z:5a45d301-4c61-466a-891b-a4602b1a3e26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:13 GMT" + "Thu, 12 May 2022 08:34:58 GMT" ], "Content-Length": [ "602" @@ -18783,16 +18723,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1f95f51-937b-423d-95a8-3f1d4ffb4ff2" + "ddddb5f6-503d-49d0-b626-1fd87a731bd2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18812,22 +18752,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11720" + "11972" ], "x-ms-request-id": [ - "0c683092-34d7-4734-af34-1ac3a67456e3" + "0e78b7fe-1717-4bd2-b643-44ff693e7c51" ], "x-ms-correlation-request-id": [ - "0c683092-34d7-4734-af34-1ac3a67456e3" + "0e78b7fe-1717-4bd2-b643-44ff693e7c51" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172914Z:0c683092-34d7-4734-af34-1ac3a67456e3" + "JIOINDIACENTRAL:20220512T083459Z:0e78b7fe-1717-4bd2-b643-44ff693e7c51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:13 GMT" + "Thu, 12 May 2022 08:34:58 GMT" ], "Content-Length": [ "602" @@ -18846,16 +18786,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "513c243f-9cc6-4a1d-a3b6-6582c3ad77c1" + "9d7b5a79-956f-43af-ba55-ec7e34cb5faf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18875,22 +18815,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11719" + "11971" ], "x-ms-request-id": [ - "3c00e26f-9c85-4b32-93f3-e4f3552b955e" + "f696542f-5f7f-4b49-8b83-8e70d12d6b8e" ], "x-ms-correlation-request-id": [ - "3c00e26f-9c85-4b32-93f3-e4f3552b955e" + "f696542f-5f7f-4b49-8b83-8e70d12d6b8e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172914Z:3c00e26f-9c85-4b32-93f3-e4f3552b955e" + "JIOINDIACENTRAL:20220512T083500Z:f696542f-5f7f-4b49-8b83-8e70d12d6b8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:14 GMT" + "Thu, 12 May 2022 08:34:59 GMT" ], "Content-Length": [ "602" @@ -18909,16 +18849,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec52beb6-ae26-4a3e-9ba4-b348b21070d7" + "110ef021-eb31-4dc9-9822-e838ab58590e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -18938,22 +18878,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11718" + "11973" ], "x-ms-request-id": [ - "b62e6eaf-e89a-4cfa-b977-e5eca2878d6b" + "0ef70e52-3d40-400a-9259-9ea7860f2f3b" ], "x-ms-correlation-request-id": [ - "b62e6eaf-e89a-4cfa-b977-e5eca2878d6b" + "0ef70e52-3d40-400a-9259-9ea7860f2f3b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172914Z:b62e6eaf-e89a-4cfa-b977-e5eca2878d6b" + "JIOINDIACENTRAL:20220512T083501Z:0ef70e52-3d40-400a-9259-9ea7860f2f3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:14 GMT" + "Thu, 12 May 2022 08:35:00 GMT" ], "Content-Length": [ "602" @@ -18972,16 +18912,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92218ccc-51c3-406a-b67f-8431a833cd2f" + "aefb3ffa-1e8c-4699-968a-f6d329aec328" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19001,22 +18941,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11717" + "11977" ], "x-ms-request-id": [ - "d9927471-4172-4fc9-ab5a-46221797f534" + "ef738fee-7908-459c-a889-320e691cf3f5" ], "x-ms-correlation-request-id": [ - "d9927471-4172-4fc9-ab5a-46221797f534" + "ef738fee-7908-459c-a889-320e691cf3f5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172914Z:d9927471-4172-4fc9-ab5a-46221797f534" + "JIOINDIACENTRAL:20220512T083502Z:ef738fee-7908-459c-a889-320e691cf3f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:14 GMT" + "Thu, 12 May 2022 08:35:02 GMT" ], "Content-Length": [ "602" @@ -19035,16 +18975,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdca57bc-61e3-416e-990f-42767c20de96" + "05eb8534-4053-4092-9177-fe379880ea1b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19064,22 +19004,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11716" + "11970" ], "x-ms-request-id": [ - "f060df6e-110d-438c-8436-81b7b62b1ffa" + "9c307eef-6bc5-4e10-a8ad-f4be6a179b9b" ], "x-ms-correlation-request-id": [ - "f060df6e-110d-438c-8436-81b7b62b1ffa" + "9c307eef-6bc5-4e10-a8ad-f4be6a179b9b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172915Z:f060df6e-110d-438c-8436-81b7b62b1ffa" + "JIOINDIACENTRAL:20220512T083503Z:9c307eef-6bc5-4e10-a8ad-f4be6a179b9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:14 GMT" + "Thu, 12 May 2022 08:35:03 GMT" ], "Content-Length": [ "602" @@ -19098,16 +19038,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ebf1ab0-3082-469d-8985-12876ba8aef0" + "0a36d9e4-b94f-4dab-9b15-e8ee8e6b7a18" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19127,22 +19067,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11715" + "11966" ], "x-ms-request-id": [ - "278b19ca-e05b-4341-99ba-5f09510318fb" + "785dcbdf-2e50-430f-ba1d-5476d3ea4002" ], "x-ms-correlation-request-id": [ - "278b19ca-e05b-4341-99ba-5f09510318fb" + "785dcbdf-2e50-430f-ba1d-5476d3ea4002" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172915Z:278b19ca-e05b-4341-99ba-5f09510318fb" + "JIOINDIACENTRAL:20220512T083504Z:785dcbdf-2e50-430f-ba1d-5476d3ea4002" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:15 GMT" + "Thu, 12 May 2022 08:35:03 GMT" ], "Content-Length": [ "602" @@ -19161,16 +19101,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43f98189-a15f-4cba-b4d6-b554a43947f7" + "ee91850f-3353-4e61-a47e-8ec074fcd5a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19190,22 +19130,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11714" + "11969" ], "x-ms-request-id": [ - "ff3d56bb-ed9e-4e07-b8e5-7da53e2a648f" + "d4f15134-2cc1-4242-97eb-5d6edd17f23c" ], "x-ms-correlation-request-id": [ - "ff3d56bb-ed9e-4e07-b8e5-7da53e2a648f" + "d4f15134-2cc1-4242-97eb-5d6edd17f23c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172915Z:ff3d56bb-ed9e-4e07-b8e5-7da53e2a648f" + "JIOINDIACENTRAL:20220512T083505Z:d4f15134-2cc1-4242-97eb-5d6edd17f23c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:15 GMT" + "Thu, 12 May 2022 08:35:04 GMT" ], "Content-Length": [ "602" @@ -19224,16 +19164,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f27fb9b-30c0-4bfd-a5d6-c9f993595eb1" + "b8ff5fbc-f1eb-4c1d-b991-035a1dcded30" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19253,22 +19193,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11713" + "11975" ], "x-ms-request-id": [ - "41353c00-fa16-4ab6-b663-284cd373067d" + "0141ffb6-2aed-49c7-9265-0594e12fa87d" ], "x-ms-correlation-request-id": [ - "41353c00-fa16-4ab6-b663-284cd373067d" + "0141ffb6-2aed-49c7-9265-0594e12fa87d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172916Z:41353c00-fa16-4ab6-b663-284cd373067d" + "JIOINDIACENTRAL:20220512T083505Z:0141ffb6-2aed-49c7-9265-0594e12fa87d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:15 GMT" + "Thu, 12 May 2022 08:35:04 GMT" ], "Content-Length": [ "602" @@ -19287,16 +19227,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e9ed10e-f8d8-4118-a4b3-d2de92173ec3" + "7860203b-2292-41e9-ad09-89326875ec66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19316,22 +19256,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" + "11974" ], "x-ms-request-id": [ - "f501274e-d696-49d3-b8ad-8aef979496ad" + "4bea58ac-87b6-4c4b-9ba3-56db832830b5" ], "x-ms-correlation-request-id": [ - "f501274e-d696-49d3-b8ad-8aef979496ad" + "4bea58ac-87b6-4c4b-9ba3-56db832830b5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172916Z:f501274e-d696-49d3-b8ad-8aef979496ad" + "JIOINDIACENTRAL:20220512T083506Z:4bea58ac-87b6-4c4b-9ba3-56db832830b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:15 GMT" + "Thu, 12 May 2022 08:35:06 GMT" ], "Content-Length": [ "602" @@ -19350,16 +19290,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ffe7725-0e29-465f-bcc6-ced2876be494" + "45208946-0d9b-4a6b-a94d-08bad7cf34c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19379,22 +19319,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11711" + "11976" ], "x-ms-request-id": [ - "77454696-3aa6-4c98-87eb-8cbde155f3f9" + "58d8a3d5-41b6-4d39-8d4c-c098a75057ee" ], "x-ms-correlation-request-id": [ - "77454696-3aa6-4c98-87eb-8cbde155f3f9" + "58d8a3d5-41b6-4d39-8d4c-c098a75057ee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172916Z:77454696-3aa6-4c98-87eb-8cbde155f3f9" + "JIOINDIACENTRAL:20220512T083507Z:58d8a3d5-41b6-4d39-8d4c-c098a75057ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:16 GMT" + "Thu, 12 May 2022 08:35:06 GMT" ], "Content-Length": [ "602" @@ -19413,16 +19353,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27df9817-09ec-4105-bd86-018f404dc68f" + "2a0aca48-776e-47f7-b55c-996729e0f390" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19442,22 +19382,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11710" + "11965" ], "x-ms-request-id": [ - "14fbe99f-817f-4169-88a1-471ffe5c808a" + "fceaa297-5a95-4324-8eb3-bdc807cec5d3" ], "x-ms-correlation-request-id": [ - "14fbe99f-817f-4169-88a1-471ffe5c808a" + "fceaa297-5a95-4324-8eb3-bdc807cec5d3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172916Z:14fbe99f-817f-4169-88a1-471ffe5c808a" + "JIOINDIACENTRAL:20220512T083507Z:fceaa297-5a95-4324-8eb3-bdc807cec5d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:16 GMT" + "Thu, 12 May 2022 08:35:07 GMT" ], "Content-Length": [ "602" @@ -19476,16 +19416,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a4fe11a-8c57-499f-b131-6d42783f0ecb" + "4fe33c73-bc97-4480-a550-3b3f0caf3fdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19505,22 +19445,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11709" + "11972" ], "x-ms-request-id": [ - "92edfd8b-bd20-43ee-a73d-acf6cb0f3407" + "e74648fc-89d1-4f8c-971a-5de104babdef" ], "x-ms-correlation-request-id": [ - "92edfd8b-bd20-43ee-a73d-acf6cb0f3407" + "e74648fc-89d1-4f8c-971a-5de104babdef" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172917Z:92edfd8b-bd20-43ee-a73d-acf6cb0f3407" + "JIOINDIACENTRAL:20220512T083508Z:e74648fc-89d1-4f8c-971a-5de104babdef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:16 GMT" + "Thu, 12 May 2022 08:35:07 GMT" ], "Content-Length": [ "602" @@ -19539,16 +19479,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f00944e6-6e22-486d-8ebf-38dd7fb7fe2b" + "f9dc29c4-2613-49e0-9a38-97f9cd0eced7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19568,22 +19508,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" + "11964" ], "x-ms-request-id": [ - "0139bead-ccac-468c-9898-fabb7cdc9571" + "235b39f6-7921-4d25-89e0-76cb92e54efd" ], "x-ms-correlation-request-id": [ - "0139bead-ccac-468c-9898-fabb7cdc9571" + "235b39f6-7921-4d25-89e0-76cb92e54efd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172917Z:0139bead-ccac-468c-9898-fabb7cdc9571" + "JIOINDIACENTRAL:20220512T083509Z:235b39f6-7921-4d25-89e0-76cb92e54efd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:16 GMT" + "Thu, 12 May 2022 08:35:08 GMT" ], "Content-Length": [ "602" @@ -19602,16 +19542,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d29557a-58d5-4cbe-8982-de30a9448f75" + "31476ebd-ef2d-4e6e-94fe-8a78184e10e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19631,22 +19571,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11707" + "11965" ], "x-ms-request-id": [ - "d54d8adb-5354-4ff5-b933-8d013ced8979" + "2dbc70c6-aeb3-449b-b0dc-1266d4073a92" ], "x-ms-correlation-request-id": [ - "d54d8adb-5354-4ff5-b933-8d013ced8979" + "2dbc70c6-aeb3-449b-b0dc-1266d4073a92" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172917Z:d54d8adb-5354-4ff5-b933-8d013ced8979" + "JIOINDIACENTRAL:20220512T083509Z:2dbc70c6-aeb3-449b-b0dc-1266d4073a92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:17 GMT" + "Thu, 12 May 2022 08:35:09 GMT" ], "Content-Length": [ "602" @@ -19665,16 +19605,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0ced93f-34c3-4dd0-b84a-c314065d2341" + "9ae8c828-8b44-4557-8cbe-1b0966579117" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19694,22 +19634,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11706" + "11963" ], "x-ms-request-id": [ - "78bdf63b-6d53-475b-938e-47010c5aa4e1" + "bf22cd41-2839-4606-b440-77073168b406" ], "x-ms-correlation-request-id": [ - "78bdf63b-6d53-475b-938e-47010c5aa4e1" + "bf22cd41-2839-4606-b440-77073168b406" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172917Z:78bdf63b-6d53-475b-938e-47010c5aa4e1" + "JIOINDIACENTRAL:20220512T083510Z:bf22cd41-2839-4606-b440-77073168b406" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:17 GMT" + "Thu, 12 May 2022 08:35:09 GMT" ], "Content-Length": [ "602" @@ -19728,16 +19668,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f29afabe-a2e5-4f46-b8f7-8ce66aadc884" + "ec899db7-86ce-446f-ab70-f37c5aaa8fa3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19757,22 +19697,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11705" + "11964" ], "x-ms-request-id": [ - "79b18cb8-1a06-46c1-bddd-5ec7d32f9c18" + "b43b68bb-b30c-42d3-8170-08fbf2d91e67" ], "x-ms-correlation-request-id": [ - "79b18cb8-1a06-46c1-bddd-5ec7d32f9c18" + "b43b68bb-b30c-42d3-8170-08fbf2d91e67" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172918Z:79b18cb8-1a06-46c1-bddd-5ec7d32f9c18" + "JIOINDIACENTRAL:20220512T083511Z:b43b68bb-b30c-42d3-8170-08fbf2d91e67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:17 GMT" + "Thu, 12 May 2022 08:35:10 GMT" ], "Content-Length": [ "602" @@ -19791,16 +19731,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f00b29a-5785-4dab-a5ee-8a0fab556b62" + "afdce5ce-9473-44ae-adc1-e2cddd73a904" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19820,22 +19760,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11704" + "11968" ], "x-ms-request-id": [ - "eaa5d190-b9be-40c4-93aa-2297498c9263" + "8a206814-2677-45ad-9629-be696357e812" ], "x-ms-correlation-request-id": [ - "eaa5d190-b9be-40c4-93aa-2297498c9263" + "8a206814-2677-45ad-9629-be696357e812" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172918Z:eaa5d190-b9be-40c4-93aa-2297498c9263" + "JIOINDIACENTRAL:20220512T083512Z:8a206814-2677-45ad-9629-be696357e812" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:17 GMT" + "Thu, 12 May 2022 08:35:11 GMT" ], "Content-Length": [ "602" @@ -19854,16 +19794,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fae0850-3dd5-4e45-95fe-e55528d89385" + "b4a90bc8-0c3d-4b55-88b7-cf69f962b40f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19883,22 +19823,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11703" + "11960" ], "x-ms-request-id": [ - "abb0917e-9dac-4dfc-94d5-831153b77de1" + "9014fda6-5c63-4376-8704-1803ed5354e0" ], "x-ms-correlation-request-id": [ - "abb0917e-9dac-4dfc-94d5-831153b77de1" + "9014fda6-5c63-4376-8704-1803ed5354e0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172918Z:abb0917e-9dac-4dfc-94d5-831153b77de1" + "JIOINDIACENTRAL:20220512T083513Z:9014fda6-5c63-4376-8704-1803ed5354e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:18 GMT" + "Thu, 12 May 2022 08:35:12 GMT" ], "Content-Length": [ "602" @@ -19917,16 +19857,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9274e5c7-0d4a-4c65-b603-10493510bb3c" + "217eb149-9a89-431a-8ee1-9b2e57099e4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -19946,22 +19886,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11702" + "11962" ], "x-ms-request-id": [ - "8af0f272-41c1-4f95-809c-c05d54a89dec" + "4ea19c13-1567-4607-a1b2-54bacef889d0" ], "x-ms-correlation-request-id": [ - "8af0f272-41c1-4f95-809c-c05d54a89dec" + "4ea19c13-1567-4607-a1b2-54bacef889d0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172918Z:8af0f272-41c1-4f95-809c-c05d54a89dec" + "JIOINDIACENTRAL:20220512T083514Z:4ea19c13-1567-4607-a1b2-54bacef889d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:18 GMT" + "Thu, 12 May 2022 08:35:13 GMT" ], "Content-Length": [ "602" @@ -19980,16 +19920,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f6edba7-103f-4053-acce-423266e34465" + "5314ea73-b95a-4385-ad46-517fa7196dec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20009,22 +19949,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11701" + "11961" ], "x-ms-request-id": [ - "90f0c98a-737f-4ff7-919e-d7199eab4cb9" + "a7f43ca2-0f9c-4417-87c8-ba5359cd820d" ], "x-ms-correlation-request-id": [ - "90f0c98a-737f-4ff7-919e-d7199eab4cb9" + "a7f43ca2-0f9c-4417-87c8-ba5359cd820d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172919Z:90f0c98a-737f-4ff7-919e-d7199eab4cb9" + "JIOINDIACENTRAL:20220512T083514Z:a7f43ca2-0f9c-4417-87c8-ba5359cd820d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:18 GMT" + "Thu, 12 May 2022 08:35:14 GMT" ], "Content-Length": [ "602" @@ -20043,16 +19983,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59ac79a3-0b83-4972-9d5c-c1ea009182c1" + "a5fde8ca-c2de-49d2-a532-c1df1789b98c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20072,22 +20012,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11700" + "11963" ], "x-ms-request-id": [ - "caf6e416-e4bf-41f2-a719-a975834aa167" + "d04b5c1d-7317-4960-8d40-bf16155a838b" ], "x-ms-correlation-request-id": [ - "caf6e416-e4bf-41f2-a719-a975834aa167" + "d04b5c1d-7317-4960-8d40-bf16155a838b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172919Z:caf6e416-e4bf-41f2-a719-a975834aa167" + "JIOINDIACENTRAL:20220512T083515Z:d04b5c1d-7317-4960-8d40-bf16155a838b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:18 GMT" + "Thu, 12 May 2022 08:35:14 GMT" ], "Content-Length": [ "602" @@ -20106,16 +20046,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86ca4e8d-4b0b-4261-bf61-227de6b83c53" + "4694043b-1b7a-4766-8452-43d82449bdef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20135,22 +20075,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11699" + "11971" ], "x-ms-request-id": [ - "2f95e41a-47bc-4b4c-bb49-99b25d089996" + "df8a3bbe-5ab0-4da7-8d4c-37b7c386ed14" ], "x-ms-correlation-request-id": [ - "2f95e41a-47bc-4b4c-bb49-99b25d089996" + "df8a3bbe-5ab0-4da7-8d4c-37b7c386ed14" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172919Z:2f95e41a-47bc-4b4c-bb49-99b25d089996" + "JIOINDIACENTRAL:20220512T083516Z:df8a3bbe-5ab0-4da7-8d4c-37b7c386ed14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:19 GMT" + "Thu, 12 May 2022 08:35:16 GMT" ], "Content-Length": [ "602" @@ -20169,16 +20109,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6181ad13-91d8-4a6a-80b5-0aab9bc7d595" + "a52d3ba0-1493-49dd-b562-a55b36b399cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20198,22 +20138,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11698" + "11960" ], "x-ms-request-id": [ - "01b65225-840c-4b85-9257-d0a8e5844aef" + "4ce63803-d383-483d-a9f9-38ad79d8f103" ], "x-ms-correlation-request-id": [ - "01b65225-840c-4b85-9257-d0a8e5844aef" + "4ce63803-d383-483d-a9f9-38ad79d8f103" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172920Z:01b65225-840c-4b85-9257-d0a8e5844aef" + "JIOINDIACENTRAL:20220512T083516Z:4ce63803-d383-483d-a9f9-38ad79d8f103" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:19 GMT" + "Thu, 12 May 2022 08:35:16 GMT" ], "Content-Length": [ "602" @@ -20232,16 +20172,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c3f3104-30e8-4f6a-b810-835a4e7f2dd2" + "31386f14-e281-42d6-8cd3-bfb7750b6bbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20261,22 +20201,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11697" + "11959" ], "x-ms-request-id": [ - "67473891-8479-447b-bf22-2bdca3328f11" + "e1db5f92-5799-4470-a078-72184d757ef2" ], "x-ms-correlation-request-id": [ - "67473891-8479-447b-bf22-2bdca3328f11" + "e1db5f92-5799-4470-a078-72184d757ef2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172920Z:67473891-8479-447b-bf22-2bdca3328f11" + "JIOINDIACENTRAL:20220512T083517Z:e1db5f92-5799-4470-a078-72184d757ef2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:19 GMT" + "Thu, 12 May 2022 08:35:17 GMT" ], "Content-Length": [ "602" @@ -20295,16 +20235,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e9534d5-c0d0-4d5a-803c-19999b2d5475" + "c234220c-61fc-4bdb-b6c7-750c1ba37c20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20324,22 +20264,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11696" + "11967" ], "x-ms-request-id": [ - "64fcc9f3-259c-462e-83de-68f0aa7aac55" + "db43df74-87a3-4a5a-b8b2-add3ea8a21a3" ], "x-ms-correlation-request-id": [ - "64fcc9f3-259c-462e-83de-68f0aa7aac55" + "db43df74-87a3-4a5a-b8b2-add3ea8a21a3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172920Z:64fcc9f3-259c-462e-83de-68f0aa7aac55" + "JIOINDIACENTRAL:20220512T083518Z:db43df74-87a3-4a5a-b8b2-add3ea8a21a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:20 GMT" + "Thu, 12 May 2022 08:35:18 GMT" ], "Content-Length": [ "602" @@ -20358,16 +20298,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69a9ee40-f65d-4a34-8411-9b6b81bd1d9e" + "ece49bfb-eeea-4404-aa7b-2edc90b840ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20387,22 +20327,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11695" + "11973" ], "x-ms-request-id": [ - "8a37c08a-f351-44bc-9b24-d5f8d0eccd07" + "eb2380e6-b792-43ff-908f-ebf185be9018" ], "x-ms-correlation-request-id": [ - "8a37c08a-f351-44bc-9b24-d5f8d0eccd07" + "eb2380e6-b792-43ff-908f-ebf185be9018" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172920Z:8a37c08a-f351-44bc-9b24-d5f8d0eccd07" + "JIOINDIACENTRAL:20220512T083518Z:eb2380e6-b792-43ff-908f-ebf185be9018" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:20 GMT" + "Thu, 12 May 2022 08:35:18 GMT" ], "Content-Length": [ "602" @@ -20421,16 +20361,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c0d6129-d761-48aa-9902-589b5dbe1c27" + "b3501dfc-3bdb-42ce-83c6-63b0a3923488" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20450,22 +20390,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11694" + "11972" ], "x-ms-request-id": [ - "f6a82474-a62b-4e07-b7a3-1ec3c82fbcd6" + "fbf1ab6e-1d48-488a-ae2b-24d12bc5098a" ], "x-ms-correlation-request-id": [ - "f6a82474-a62b-4e07-b7a3-1ec3c82fbcd6" + "fbf1ab6e-1d48-488a-ae2b-24d12bc5098a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172921Z:f6a82474-a62b-4e07-b7a3-1ec3c82fbcd6" + "JIOINDIACENTRAL:20220512T083519Z:fbf1ab6e-1d48-488a-ae2b-24d12bc5098a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:20 GMT" + "Thu, 12 May 2022 08:35:19 GMT" ], "Content-Length": [ "602" @@ -20484,16 +20424,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2435507e-061f-4761-9e39-5102e52dbf26" + "ba2c3cf2-415b-4985-a160-da4cede5b5af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20513,22 +20453,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11693" + "11959" ], "x-ms-request-id": [ - "1fa9435a-9703-4c4d-9b98-c33b7319104f" + "e5b45ace-eede-4a61-aaed-fa68b5f57635" ], "x-ms-correlation-request-id": [ - "1fa9435a-9703-4c4d-9b98-c33b7319104f" + "e5b45ace-eede-4a61-aaed-fa68b5f57635" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172921Z:1fa9435a-9703-4c4d-9b98-c33b7319104f" + "JIOINDIACENTRAL:20220512T083520Z:e5b45ace-eede-4a61-aaed-fa68b5f57635" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:20 GMT" + "Thu, 12 May 2022 08:35:19 GMT" ], "Content-Length": [ "602" @@ -20547,16 +20487,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7537164d-5991-48e5-a7ee-6e5a286fade8" + "c76c7a27-8b8e-48c9-86d3-80f3f7342efc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20576,22 +20516,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11692" + "11975" ], "x-ms-request-id": [ - "6e8b642d-012f-453b-b7fd-472b66061b47" + "affaa25a-da19-43f1-9ec7-601e33222d28" ], "x-ms-correlation-request-id": [ - "6e8b642d-012f-453b-b7fd-472b66061b47" + "affaa25a-da19-43f1-9ec7-601e33222d28" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172921Z:6e8b642d-012f-453b-b7fd-472b66061b47" + "JIOINDIACENTRAL:20220512T083521Z:affaa25a-da19-43f1-9ec7-601e33222d28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:21 GMT" + "Thu, 12 May 2022 08:35:20 GMT" ], "Content-Length": [ "602" @@ -20610,16 +20550,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a79e2b8-56d2-4223-92f3-2904af3fcb96" + "cb41cce5-77a1-4a77-977f-bb1bde092062" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20639,22 +20579,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11691" + "11962" ], "x-ms-request-id": [ - "17f32736-f474-494e-aa93-e4c5b0c4c702" + "6fb683a9-ecbc-4d6c-bb91-2614501de087" ], "x-ms-correlation-request-id": [ - "17f32736-f474-494e-aa93-e4c5b0c4c702" + "6fb683a9-ecbc-4d6c-bb91-2614501de087" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172922Z:17f32736-f474-494e-aa93-e4c5b0c4c702" + "JIOINDIACENTRAL:20220512T083521Z:6fb683a9-ecbc-4d6c-bb91-2614501de087" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:21 GMT" + "Thu, 12 May 2022 08:35:21 GMT" ], "Content-Length": [ "602" @@ -20673,16 +20613,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8731315e-1833-4aed-b0be-658f8219bdee" + "34ab5aa0-42de-4876-9c05-4db0cae01784" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20702,22 +20642,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11690" + "11961" ], "x-ms-request-id": [ - "cc8b0b98-c5ea-44aa-a609-dab03f410811" + "ddd18181-3287-4bb3-942c-004f7057430d" ], "x-ms-correlation-request-id": [ - "cc8b0b98-c5ea-44aa-a609-dab03f410811" + "ddd18181-3287-4bb3-942c-004f7057430d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172922Z:cc8b0b98-c5ea-44aa-a609-dab03f410811" + "JIOINDIACENTRAL:20220512T083522Z:ddd18181-3287-4bb3-942c-004f7057430d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:21 GMT" + "Thu, 12 May 2022 08:35:22 GMT" ], "Content-Length": [ "602" @@ -20736,16 +20676,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f076105-4213-4d3e-8f3a-be776a822a5b" + "ac08f88f-f837-4edc-ae80-562fbbac5809" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20765,22 +20705,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11689" + "11974" ], "x-ms-request-id": [ - "1d4f51e2-2bdb-4e58-90ef-1e25df815bbf" + "32e1af33-ed10-46aa-b7f1-332e64eca540" ], "x-ms-correlation-request-id": [ - "1d4f51e2-2bdb-4e58-90ef-1e25df815bbf" + "32e1af33-ed10-46aa-b7f1-332e64eca540" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172922Z:1d4f51e2-2bdb-4e58-90ef-1e25df815bbf" + "JIOINDIACENTRAL:20220512T083523Z:32e1af33-ed10-46aa-b7f1-332e64eca540" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:22 GMT" + "Thu, 12 May 2022 08:35:22 GMT" ], "Content-Length": [ "602" @@ -20799,16 +20739,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70ac966c-2f21-48a4-a7b1-388dd6bd89d9" + "c1197dcd-ba91-4849-bdce-90f489f952de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20828,22 +20768,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11688" + "11960" ], "x-ms-request-id": [ - "afb7afa3-cfa4-4e78-aab2-1d4e15203467" + "2f80153e-17c5-4c0a-b25b-000e65aeff8d" ], "x-ms-correlation-request-id": [ - "afb7afa3-cfa4-4e78-aab2-1d4e15203467" + "2f80153e-17c5-4c0a-b25b-000e65aeff8d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172922Z:afb7afa3-cfa4-4e78-aab2-1d4e15203467" + "JIOINDIACENTRAL:20220512T083523Z:2f80153e-17c5-4c0a-b25b-000e65aeff8d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:22 GMT" + "Thu, 12 May 2022 08:35:23 GMT" ], "Content-Length": [ "602" @@ -20862,16 +20802,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb6530f7-b3be-43fd-99e8-6f5b8121574a" + "2909014f-388f-4360-9283-92d22d5d4288" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20891,22 +20831,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11687" + "11959" ], "x-ms-request-id": [ - "aac8124b-4226-4b65-a4ad-8c063ea9a65d" + "27cf5baf-9929-41cc-8d23-0fe201600f40" ], "x-ms-correlation-request-id": [ - "aac8124b-4226-4b65-a4ad-8c063ea9a65d" + "27cf5baf-9929-41cc-8d23-0fe201600f40" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172923Z:aac8124b-4226-4b65-a4ad-8c063ea9a65d" + "JIOINDIACENTRAL:20220512T083524Z:27cf5baf-9929-41cc-8d23-0fe201600f40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:22 GMT" + "Thu, 12 May 2022 08:35:24 GMT" ], "Content-Length": [ "602" @@ -20925,16 +20865,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80696c21-f523-4f78-bf06-b7765a5fdcda" + "73faa6df-21f6-4f52-8a16-874fc313b3f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -20954,22 +20894,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11686" + "11966" ], "x-ms-request-id": [ - "a7aabc54-c103-43a1-a8ba-bf62808fe18f" + "af8b3159-946a-4563-b9ab-229e08a7e465" ], "x-ms-correlation-request-id": [ - "a7aabc54-c103-43a1-a8ba-bf62808fe18f" + "af8b3159-946a-4563-b9ab-229e08a7e465" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172923Z:a7aabc54-c103-43a1-a8ba-bf62808fe18f" + "JIOINDIACENTRAL:20220512T083525Z:af8b3159-946a-4563-b9ab-229e08a7e465" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:22 GMT" + "Thu, 12 May 2022 08:35:24 GMT" ], "Content-Length": [ "602" @@ -20988,16 +20928,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40bc2284-7d84-4528-aff3-e38ba1f30566" + "66c7189f-4842-4bf2-8521-6f8b528c426c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21017,22 +20957,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11685" + "11965" ], "x-ms-request-id": [ - "185f6aaf-4b3b-4f4e-b823-59779f618632" + "67cad207-e4cd-4b98-a17d-25a5c7859041" ], "x-ms-correlation-request-id": [ - "185f6aaf-4b3b-4f4e-b823-59779f618632" + "67cad207-e4cd-4b98-a17d-25a5c7859041" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172923Z:185f6aaf-4b3b-4f4e-b823-59779f618632" + "JIOINDIACENTRAL:20220512T083525Z:67cad207-e4cd-4b98-a17d-25a5c7859041" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:23 GMT" + "Thu, 12 May 2022 08:35:25 GMT" ], "Content-Length": [ "602" @@ -21051,16 +20991,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0785a04f-2b5c-470a-a5ad-74c8ff978d2c" + "36490623-abc0-4c36-96fc-8fc7662fab5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21080,22 +21020,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11684" + "11958" ], "x-ms-request-id": [ - "02158d7e-85b1-4bd1-9415-9dbad64f1cca" + "adb66fdf-e2fc-4b43-b56e-3acfd4bb67af" ], "x-ms-correlation-request-id": [ - "02158d7e-85b1-4bd1-9415-9dbad64f1cca" + "adb66fdf-e2fc-4b43-b56e-3acfd4bb67af" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172923Z:02158d7e-85b1-4bd1-9415-9dbad64f1cca" + "JIOINDIACENTRAL:20220512T083526Z:adb66fdf-e2fc-4b43-b56e-3acfd4bb67af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:23 GMT" + "Thu, 12 May 2022 08:35:26 GMT" ], "Content-Length": [ "602" @@ -21114,16 +21054,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d97cc17-5592-415c-97ff-c063b7ae4c5d" + "8e318780-1b43-41c1-bce3-9bdf911c5243" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21143,22 +21083,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11683" + "11964" ], "x-ms-request-id": [ - "10525625-ef63-4764-a1ed-5606bba54722" + "6c35095a-db7a-4169-a12b-3fd090c9e5ba" ], "x-ms-correlation-request-id": [ - "10525625-ef63-4764-a1ed-5606bba54722" + "6c35095a-db7a-4169-a12b-3fd090c9e5ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172924Z:10525625-ef63-4764-a1ed-5606bba54722" + "JIOINDIACENTRAL:20220512T083527Z:6c35095a-db7a-4169-a12b-3fd090c9e5ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:23 GMT" + "Thu, 12 May 2022 08:35:26 GMT" ], "Content-Length": [ "602" @@ -21177,16 +21117,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c06f059a-9935-4f5d-94f8-d127e1385175" + "5060e51a-ee27-4fca-ab75-ded19a648614" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21206,22 +21146,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11682" + "11958" ], "x-ms-request-id": [ - "c4e3c064-c6ee-453b-bcb8-edc35ca31313" + "cc1a9008-2e6c-49bc-b827-c960992d7331" ], "x-ms-correlation-request-id": [ - "c4e3c064-c6ee-453b-bcb8-edc35ca31313" + "cc1a9008-2e6c-49bc-b827-c960992d7331" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172924Z:c4e3c064-c6ee-453b-bcb8-edc35ca31313" + "JIOINDIACENTRAL:20220512T083528Z:cc1a9008-2e6c-49bc-b827-c960992d7331" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:23 GMT" + "Thu, 12 May 2022 08:35:27 GMT" ], "Content-Length": [ "602" @@ -21240,16 +21180,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd1db2b0-99bc-496e-92f1-871e62046554" + "00435a97-1c2f-4725-b296-38980c83e7df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21269,22 +21209,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11681" + "11957" ], "x-ms-request-id": [ - "03b323d4-e7f8-4e2d-a385-07598a62d4ee" + "e5d3c116-271a-4b32-8d14-9c73f49ad6ba" ], "x-ms-correlation-request-id": [ - "03b323d4-e7f8-4e2d-a385-07598a62d4ee" + "e5d3c116-271a-4b32-8d14-9c73f49ad6ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172924Z:03b323d4-e7f8-4e2d-a385-07598a62d4ee" + "JIOINDIACENTRAL:20220512T083528Z:e5d3c116-271a-4b32-8d14-9c73f49ad6ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:24 GMT" + "Thu, 12 May 2022 08:35:28 GMT" ], "Content-Length": [ "602" @@ -21303,16 +21243,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a37a783b-654a-4939-91e0-cbc4d70a3f46" + "f11ae368-6111-49c7-94f2-2fd04a59894f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21332,22 +21272,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11680" + "11972" ], "x-ms-request-id": [ - "9ff46e39-48f6-4e9d-8ada-0342301b67d3" + "1313c295-03f0-4f68-b097-7d55dcd21fe4" ], "x-ms-correlation-request-id": [ - "9ff46e39-48f6-4e9d-8ada-0342301b67d3" + "1313c295-03f0-4f68-b097-7d55dcd21fe4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172925Z:9ff46e39-48f6-4e9d-8ada-0342301b67d3" + "JIOINDIACENTRAL:20220512T083529Z:1313c295-03f0-4f68-b097-7d55dcd21fe4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:24 GMT" + "Thu, 12 May 2022 08:35:28 GMT" ], "Content-Length": [ "602" @@ -21366,16 +21306,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32d9f895-2298-4b0b-8817-66e9ba42c075" + "d2c2ef46-87d0-4fd8-a5e0-951349e1d9d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21395,22 +21335,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11679" + "11973" ], "x-ms-request-id": [ - "459fecf8-8acc-4c41-88aa-95fef2bb8a2c" + "54dc0fd1-3e7d-41a9-8661-9c96228b70fc" ], "x-ms-correlation-request-id": [ - "459fecf8-8acc-4c41-88aa-95fef2bb8a2c" + "54dc0fd1-3e7d-41a9-8661-9c96228b70fc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172925Z:459fecf8-8acc-4c41-88aa-95fef2bb8a2c" + "JIOINDIACENTRAL:20220512T083530Z:54dc0fd1-3e7d-41a9-8661-9c96228b70fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:24 GMT" + "Thu, 12 May 2022 08:35:29 GMT" ], "Content-Length": [ "602" @@ -21429,16 +21369,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e80eb1d-3e1c-451b-85c5-0949b5e54b84" + "5dbd6e08-b4d6-439d-937a-998613547475" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21458,22 +21398,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11678" + "11958" ], "x-ms-request-id": [ - "6680874a-3a3a-4bcc-9093-f13bd57dc0a8" + "3df5cb0c-2b21-4ae0-a558-fc23d8f86727" ], "x-ms-correlation-request-id": [ - "6680874a-3a3a-4bcc-9093-f13bd57dc0a8" + "3df5cb0c-2b21-4ae0-a558-fc23d8f86727" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172925Z:6680874a-3a3a-4bcc-9093-f13bd57dc0a8" + "JIOINDIACENTRAL:20220512T083530Z:3df5cb0c-2b21-4ae0-a558-fc23d8f86727" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:24 GMT" + "Thu, 12 May 2022 08:35:30 GMT" ], "Content-Length": [ "602" @@ -21492,16 +21432,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ff92110-9567-46bc-bcae-85c94c4d5e02" + "79c5d798-b01c-4701-a15f-87e2f07d2bf6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21521,22 +21461,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11677" + "11957" ], "x-ms-request-id": [ - "396c609f-62a3-4ffb-92d9-e26219660d5b" + "c8e7a2ae-c069-4e57-96c6-b2070c99662f" ], "x-ms-correlation-request-id": [ - "396c609f-62a3-4ffb-92d9-e26219660d5b" + "c8e7a2ae-c069-4e57-96c6-b2070c99662f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172925Z:396c609f-62a3-4ffb-92d9-e26219660d5b" + "JIOINDIACENTRAL:20220512T083531Z:c8e7a2ae-c069-4e57-96c6-b2070c99662f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:25 GMT" + "Thu, 12 May 2022 08:35:31 GMT" ], "Content-Length": [ "602" @@ -21555,16 +21495,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d889f97e-dc71-4f23-afdf-1338f3c8fac0" + "61cc125c-33fc-4a4f-8a62-027399f7d9fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21584,22 +21524,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11676" + "11971" ], "x-ms-request-id": [ - "7b8c4b21-98bd-4411-9d46-bafabebb2a59" + "98cd04b5-9cdf-4ed1-bc7a-567fa8941583" ], "x-ms-correlation-request-id": [ - "7b8c4b21-98bd-4411-9d46-bafabebb2a59" + "98cd04b5-9cdf-4ed1-bc7a-567fa8941583" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172926Z:7b8c4b21-98bd-4411-9d46-bafabebb2a59" + "JIOINDIACENTRAL:20220512T083532Z:98cd04b5-9cdf-4ed1-bc7a-567fa8941583" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:25 GMT" + "Thu, 12 May 2022 08:35:31 GMT" ], "Content-Length": [ "602" @@ -21618,16 +21558,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec7c2702-3618-405f-91f4-e2c60d7ae850" + "417016e6-b160-4ace-9dc1-22fb6d0a3700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21647,22 +21587,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11675" + "11956" ], "x-ms-request-id": [ - "1efff009-5a7b-4222-90a8-616c55b86ec9" + "07fbb99c-6265-46d0-8fc0-9caf119a7f96" ], "x-ms-correlation-request-id": [ - "1efff009-5a7b-4222-90a8-616c55b86ec9" + "07fbb99c-6265-46d0-8fc0-9caf119a7f96" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172926Z:1efff009-5a7b-4222-90a8-616c55b86ec9" + "JIOINDIACENTRAL:20220512T083533Z:07fbb99c-6265-46d0-8fc0-9caf119a7f96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:25 GMT" + "Thu, 12 May 2022 08:35:32 GMT" ], "Content-Length": [ "602" @@ -21681,16 +21621,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b806e6fa-f9d0-4433-ac6e-9428d631838a" + "fe3b6f6d-39aa-4bd2-8fd1-06d744f052e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21710,22 +21650,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11674" + "11963" ], "x-ms-request-id": [ - "371f7f18-ca54-4f59-95fe-eb5d07a38b11" + "3f84ffeb-e2d7-4101-856e-46153bd8bb17" ], "x-ms-correlation-request-id": [ - "371f7f18-ca54-4f59-95fe-eb5d07a38b11" + "3f84ffeb-e2d7-4101-856e-46153bd8bb17" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172926Z:371f7f18-ca54-4f59-95fe-eb5d07a38b11" + "JIOINDIACENTRAL:20220512T083534Z:3f84ffeb-e2d7-4101-856e-46153bd8bb17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:26 GMT" + "Thu, 12 May 2022 08:35:33 GMT" ], "Content-Length": [ "602" @@ -21744,16 +21684,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b87d0eb2-4e2b-4f02-928f-ce313180b99e" + "f908f471-64da-474c-aad6-e0a13b8f729d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21773,22 +21713,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11673" + "11972" ], "x-ms-request-id": [ - "dd350ebc-66f4-46f5-88f0-ee82f7e712b8" + "67bcba02-d6f3-4721-a2d4-ed6ad80206c7" ], "x-ms-correlation-request-id": [ - "dd350ebc-66f4-46f5-88f0-ee82f7e712b8" + "67bcba02-d6f3-4721-a2d4-ed6ad80206c7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172926Z:dd350ebc-66f4-46f5-88f0-ee82f7e712b8" + "JIOINDIACENTRAL:20220512T083535Z:67bcba02-d6f3-4721-a2d4-ed6ad80206c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:26 GMT" + "Thu, 12 May 2022 08:35:34 GMT" ], "Content-Length": [ "602" @@ -21807,16 +21747,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e19a807e-eff5-4d2c-b568-a6be6677c62b" + "bb7d8b5f-2f95-4dea-bf8c-001d9fc5c0f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21836,22 +21776,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11672" + "11971" ], "x-ms-request-id": [ - "1be58b38-9c11-42f7-85d3-dc6553c5ac1b" + "532e7136-9216-4f64-a249-742f6df74beb" ], "x-ms-correlation-request-id": [ - "1be58b38-9c11-42f7-85d3-dc6553c5ac1b" + "532e7136-9216-4f64-a249-742f6df74beb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172927Z:1be58b38-9c11-42f7-85d3-dc6553c5ac1b" + "JIOINDIACENTRAL:20220512T083536Z:532e7136-9216-4f64-a249-742f6df74beb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:26 GMT" + "Thu, 12 May 2022 08:35:35 GMT" ], "Content-Length": [ "602" @@ -21870,16 +21810,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "711b7ff5-4efb-4153-9c5e-d46585ffc8a5" + "eae32947-57f8-43ae-b41e-4fdce4270228" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21899,22 +21839,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11671" + "11955" ], "x-ms-request-id": [ - "906e994d-5f5f-4d42-8b00-dbab59bba640" + "a861f636-5555-495d-b82e-166f5fabfe29" ], "x-ms-correlation-request-id": [ - "906e994d-5f5f-4d42-8b00-dbab59bba640" + "a861f636-5555-495d-b82e-166f5fabfe29" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172927Z:906e994d-5f5f-4d42-8b00-dbab59bba640" + "JIOINDIACENTRAL:20220512T083537Z:a861f636-5555-495d-b82e-166f5fabfe29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:26 GMT" + "Thu, 12 May 2022 08:35:36 GMT" ], "Content-Length": [ "602" @@ -21933,16 +21873,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df26401f-b068-4025-abfe-27bc989510e6" + "bb0fb2d3-5a97-45fd-a4d7-77f88d95fdcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -21962,22 +21902,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11670" + "11970" ], "x-ms-request-id": [ - "3735cd7e-1471-48b0-98bf-e5415d93fc0e" + "ec6fd5a3-d957-42ad-895f-b2cf4c0b22c4" ], "x-ms-correlation-request-id": [ - "3735cd7e-1471-48b0-98bf-e5415d93fc0e" + "ec6fd5a3-d957-42ad-895f-b2cf4c0b22c4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172927Z:3735cd7e-1471-48b0-98bf-e5415d93fc0e" + "JIOINDIACENTRAL:20220512T083537Z:ec6fd5a3-d957-42ad-895f-b2cf4c0b22c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:27 GMT" + "Thu, 12 May 2022 08:35:37 GMT" ], "Content-Length": [ "602" @@ -21996,16 +21936,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83ac87d9-20dd-402c-b336-e736dc16fbf7" + "3e647760-23e8-4ad7-a9bc-20b4b525c7c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22025,22 +21965,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11669" + "11954" ], "x-ms-request-id": [ - "4eb3ff8e-97e7-427a-b9c9-1bf02ae3e62f" + "632b5ec7-7af5-42ca-bc9e-46bb3edef9ee" ], "x-ms-correlation-request-id": [ - "4eb3ff8e-97e7-427a-b9c9-1bf02ae3e62f" + "632b5ec7-7af5-42ca-bc9e-46bb3edef9ee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172927Z:4eb3ff8e-97e7-427a-b9c9-1bf02ae3e62f" + "JIOINDIACENTRAL:20220512T083538Z:632b5ec7-7af5-42ca-bc9e-46bb3edef9ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:27 GMT" + "Thu, 12 May 2022 08:35:37 GMT" ], "Content-Length": [ "602" @@ -22059,16 +21999,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7224c43-6fe7-4382-9997-732fef7b4238" + "70d87031-e883-432b-a47c-f6d0bf0dc40f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22088,22 +22028,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11668" + "11969" ], "x-ms-request-id": [ - "b7fb339a-1387-4873-923d-9da5cd37892a" + "741bf252-a695-4419-bcd3-b648772c0ac1" ], "x-ms-correlation-request-id": [ - "b7fb339a-1387-4873-923d-9da5cd37892a" + "741bf252-a695-4419-bcd3-b648772c0ac1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172928Z:b7fb339a-1387-4873-923d-9da5cd37892a" + "JIOINDIACENTRAL:20220512T083539Z:741bf252-a695-4419-bcd3-b648772c0ac1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:27 GMT" + "Thu, 12 May 2022 08:35:39 GMT" ], "Content-Length": [ "602" @@ -22122,16 +22062,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e8f590f-1d8f-44f5-b947-ca1b0f81a72f" + "436d126f-68e4-4154-a8e1-b91653d79382" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22151,22 +22091,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11667" + "11971" ], "x-ms-request-id": [ - "0652ba7b-8ef0-4893-8898-5352474f1d46" + "42b5701a-9413-4717-a6c5-f586215de9b4" ], "x-ms-correlation-request-id": [ - "0652ba7b-8ef0-4893-8898-5352474f1d46" + "42b5701a-9413-4717-a6c5-f586215de9b4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172928Z:0652ba7b-8ef0-4893-8898-5352474f1d46" + "JIOINDIACENTRAL:20220512T083540Z:42b5701a-9413-4717-a6c5-f586215de9b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:27 GMT" + "Thu, 12 May 2022 08:35:40 GMT" ], "Content-Length": [ "602" @@ -22185,16 +22125,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "261df477-2aab-4695-8a09-3029a8c7bb56" + "1d3cfdf7-cdd4-4c46-b8c3-f7930a202fcc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22214,22 +22154,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11666" + "11970" ], "x-ms-request-id": [ - "694bc673-516e-4cbf-818a-2350d17cb1b3" + "0d04d9f0-d2cd-4ba4-bc02-cf636476a0c0" ], "x-ms-correlation-request-id": [ - "694bc673-516e-4cbf-818a-2350d17cb1b3" + "0d04d9f0-d2cd-4ba4-bc02-cf636476a0c0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172928Z:694bc673-516e-4cbf-818a-2350d17cb1b3" + "JIOINDIACENTRAL:20220512T083540Z:0d04d9f0-d2cd-4ba4-bc02-cf636476a0c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:28 GMT" + "Thu, 12 May 2022 08:35:40 GMT" ], "Content-Length": [ "602" @@ -22248,16 +22188,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b178650f-ed04-49f1-8f80-bc2f9ed3de96" + "ce1fa952-0193-4a71-8eb5-77b7cf16c201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22277,22 +22217,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11665" + "11968" ], "x-ms-request-id": [ - "edcbc952-f6d8-4e7e-8391-cbeb214ca3c2" + "8120a258-9a02-4922-a905-a0de25c6aca9" ], "x-ms-correlation-request-id": [ - "edcbc952-f6d8-4e7e-8391-cbeb214ca3c2" + "8120a258-9a02-4922-a905-a0de25c6aca9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172929Z:edcbc952-f6d8-4e7e-8391-cbeb214ca3c2" + "JIOINDIACENTRAL:20220512T083541Z:8120a258-9a02-4922-a905-a0de25c6aca9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:28 GMT" + "Thu, 12 May 2022 08:35:41 GMT" ], "Content-Length": [ "602" @@ -22311,16 +22251,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d972f1c-e476-482a-9a04-ed4bca74b524" + "a368cb13-222e-469d-8494-7b20eda88278" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22340,22 +22280,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11664" + "11969" ], "x-ms-request-id": [ - "bea450a7-75d6-4b7c-b662-2af5b03fccf2" + "8c966fb8-8f1f-4d96-8b57-0279a74413ed" ], "x-ms-correlation-request-id": [ - "bea450a7-75d6-4b7c-b662-2af5b03fccf2" + "8c966fb8-8f1f-4d96-8b57-0279a74413ed" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172929Z:bea450a7-75d6-4b7c-b662-2af5b03fccf2" + "JIOINDIACENTRAL:20220512T083542Z:8c966fb8-8f1f-4d96-8b57-0279a74413ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:28 GMT" + "Thu, 12 May 2022 08:35:41 GMT" ], "Content-Length": [ "602" @@ -22374,16 +22314,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9a6ec82-8bc0-4ebf-a2cc-e22719a49395" + "60e06387-9abd-45dc-b8c3-9a30800e8f9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22403,22 +22343,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11663" + "11970" ], "x-ms-request-id": [ - "792efede-1f6a-4f37-90c9-34386245211f" + "a3c0c7ea-e217-494b-913c-78f7b686b8f9" ], "x-ms-correlation-request-id": [ - "792efede-1f6a-4f37-90c9-34386245211f" + "a3c0c7ea-e217-494b-913c-78f7b686b8f9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172929Z:792efede-1f6a-4f37-90c9-34386245211f" + "JIOINDIACENTRAL:20220512T083542Z:a3c0c7ea-e217-494b-913c-78f7b686b8f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:28 GMT" + "Thu, 12 May 2022 08:35:42 GMT" ], "Content-Length": [ "602" @@ -22437,16 +22377,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "765998e5-45d1-4fdc-933b-c5c67909fa3d" + "3f31b354-6410-420b-989b-4e969d793fc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22466,22 +22406,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11662" + "11968" ], "x-ms-request-id": [ - "fc070836-4663-48c5-92eb-c8e2cc99acff" + "3bc46e98-f24f-44aa-931b-b93322163d2b" ], "x-ms-correlation-request-id": [ - "fc070836-4663-48c5-92eb-c8e2cc99acff" + "3bc46e98-f24f-44aa-931b-b93322163d2b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172929Z:fc070836-4663-48c5-92eb-c8e2cc99acff" + "JIOINDIACENTRAL:20220512T083543Z:3bc46e98-f24f-44aa-931b-b93322163d2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:29 GMT" + "Thu, 12 May 2022 08:35:43 GMT" ], "Content-Length": [ "602" @@ -22500,16 +22440,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f3a285a-dc01-4233-986b-8bbc68c00c83" + "bea1a35f-c48d-486e-907d-169934e86c30" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22529,22 +22469,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11661" + "11957" ], "x-ms-request-id": [ - "38b0a928-9ead-4809-a6c8-cd2ad807c2fa" + "ddc1f345-9cd3-4a31-975b-843349d1023f" ], "x-ms-correlation-request-id": [ - "38b0a928-9ead-4809-a6c8-cd2ad807c2fa" + "ddc1f345-9cd3-4a31-975b-843349d1023f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172930Z:38b0a928-9ead-4809-a6c8-cd2ad807c2fa" + "JIOINDIACENTRAL:20220512T083544Z:ddc1f345-9cd3-4a31-975b-843349d1023f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:29 GMT" + "Thu, 12 May 2022 08:35:43 GMT" ], "Content-Length": [ "602" @@ -22563,16 +22503,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ddfb9fc-14fa-409e-9972-1ab5da445fad" + "451cce21-51ba-4d53-9b40-1e8231b6e4e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22592,22 +22532,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11660" + "11969" ], "x-ms-request-id": [ - "95694fe5-967e-4b88-a029-745ca37b1563" + "e81d8a20-e312-40a8-9b00-5fda743d3508" ], "x-ms-correlation-request-id": [ - "95694fe5-967e-4b88-a029-745ca37b1563" + "e81d8a20-e312-40a8-9b00-5fda743d3508" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172930Z:95694fe5-967e-4b88-a029-745ca37b1563" + "JIOINDIACENTRAL:20220512T083544Z:e81d8a20-e312-40a8-9b00-5fda743d3508" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:29 GMT" + "Thu, 12 May 2022 08:35:44 GMT" ], "Content-Length": [ "602" @@ -22626,16 +22566,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "116a170b-b406-4a9e-8f3f-1be15e326865" + "b6807d9e-fe55-4bc1-8ef4-da2230c9d091" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22655,22 +22595,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11659" + "11967" ], "x-ms-request-id": [ - "385bd564-9bc0-4e91-bb85-3890bf74d2d7" + "995185d5-4581-45dd-a037-82f817d5a9b3" ], "x-ms-correlation-request-id": [ - "385bd564-9bc0-4e91-bb85-3890bf74d2d7" + "995185d5-4581-45dd-a037-82f817d5a9b3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172930Z:385bd564-9bc0-4e91-bb85-3890bf74d2d7" + "JIOINDIACENTRAL:20220512T083546Z:995185d5-4581-45dd-a037-82f817d5a9b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:29 GMT" + "Thu, 12 May 2022 08:35:45 GMT" ], "Content-Length": [ "602" @@ -22689,16 +22629,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "214c8f7a-2d18-447f-968b-820badb0c89f" + "f115831d-9ef6-4434-be95-23a74440daf1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22718,22 +22658,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11658" + "11967" ], "x-ms-request-id": [ - "0cb0af5a-6265-41b3-8406-69da26b03b04" + "19ab3dd2-7ab6-4f15-9859-08bfd9554255" ], "x-ms-correlation-request-id": [ - "0cb0af5a-6265-41b3-8406-69da26b03b04" + "19ab3dd2-7ab6-4f15-9859-08bfd9554255" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172930Z:0cb0af5a-6265-41b3-8406-69da26b03b04" + "JIOINDIACENTRAL:20220512T083547Z:19ab3dd2-7ab6-4f15-9859-08bfd9554255" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:30 GMT" + "Thu, 12 May 2022 08:35:47 GMT" ], "Content-Length": [ "602" @@ -22752,16 +22692,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95dc46c2-3559-451f-914a-d2d573d84d3c" + "35892b26-defc-4ac0-8341-97eed6d43077" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22781,22 +22721,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11657" + "11956" ], "x-ms-request-id": [ - "74959f8c-bccb-4797-b24a-7550c7a84177" + "c2c31b99-f9fa-48e8-a003-862482054e42" ], "x-ms-correlation-request-id": [ - "74959f8c-bccb-4797-b24a-7550c7a84177" + "c2c31b99-f9fa-48e8-a003-862482054e42" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172931Z:74959f8c-bccb-4797-b24a-7550c7a84177" + "JIOINDIACENTRAL:20220512T083547Z:c2c31b99-f9fa-48e8-a003-862482054e42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:30 GMT" + "Thu, 12 May 2022 08:35:47 GMT" ], "Content-Length": [ "602" @@ -22815,16 +22755,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "932edf5c-9bee-4598-a5da-b81938dc1a79" + "927da7f8-43fc-41a8-89b3-b7cff9a41dd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22844,22 +22784,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11656" + "11966" ], "x-ms-request-id": [ - "52178270-e10e-4047-98e6-e63afa80ac48" + "bd288e32-2b47-4ada-9340-43cf3867bada" ], "x-ms-correlation-request-id": [ - "52178270-e10e-4047-98e6-e63afa80ac48" + "bd288e32-2b47-4ada-9340-43cf3867bada" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172931Z:52178270-e10e-4047-98e6-e63afa80ac48" + "JIOINDIACENTRAL:20220512T083548Z:bd288e32-2b47-4ada-9340-43cf3867bada" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:30 GMT" + "Thu, 12 May 2022 08:35:48 GMT" ], "Content-Length": [ "602" @@ -22878,16 +22818,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f8204b7-7a4a-4830-9ef0-c3bd7c891334" + "8249a7b9-464a-4d50-a8e9-303ea1b191dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22907,22 +22847,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11655" + "11955" ], "x-ms-request-id": [ - "af883d27-c908-48a7-b175-23a6f450cd86" + "8698dd42-0ae6-4a2f-9b55-e1c15a79c1bc" ], "x-ms-correlation-request-id": [ - "af883d27-c908-48a7-b175-23a6f450cd86" + "8698dd42-0ae6-4a2f-9b55-e1c15a79c1bc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172931Z:af883d27-c908-48a7-b175-23a6f450cd86" + "JIOINDIACENTRAL:20220512T083549Z:8698dd42-0ae6-4a2f-9b55-e1c15a79c1bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:31 GMT" + "Thu, 12 May 2022 08:35:49 GMT" ], "Content-Length": [ "602" @@ -22941,16 +22881,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b1f8b89-19f1-45b8-820e-e347ece050ac" + "88925736-8186-4866-8ceb-cd9dceac0e10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -22970,22 +22910,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11654" + "11962" ], "x-ms-request-id": [ - "a6a14d01-2223-49f4-b852-08143cc4a4ef" + "bdcc463a-511f-4b71-92d4-3d0a5e9ecbdb" ], "x-ms-correlation-request-id": [ - "a6a14d01-2223-49f4-b852-08143cc4a4ef" + "bdcc463a-511f-4b71-92d4-3d0a5e9ecbdb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172932Z:a6a14d01-2223-49f4-b852-08143cc4a4ef" + "JIOINDIACENTRAL:20220512T083550Z:bdcc463a-511f-4b71-92d4-3d0a5e9ecbdb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:31 GMT" + "Thu, 12 May 2022 08:35:49 GMT" ], "Content-Length": [ "602" @@ -23004,16 +22944,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aae82fd3-4dff-4aed-bc7d-51e1c344a86a" + "38385279-65a5-4777-b84a-9c6589a9bbc6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23033,22 +22973,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11653" + "11961" ], "x-ms-request-id": [ - "6019967b-192e-41e5-8fbe-93b998e829f4" + "6eaf0df1-1156-4c03-a7f0-03925ce3dcc8" ], "x-ms-correlation-request-id": [ - "6019967b-192e-41e5-8fbe-93b998e829f4" + "6eaf0df1-1156-4c03-a7f0-03925ce3dcc8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172932Z:6019967b-192e-41e5-8fbe-93b998e829f4" + "JIOINDIACENTRAL:20220512T083550Z:6eaf0df1-1156-4c03-a7f0-03925ce3dcc8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:31 GMT" + "Thu, 12 May 2022 08:35:49 GMT" ], "Content-Length": [ "602" @@ -23067,16 +23007,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "517ee6f2-8919-4bab-a8a3-8deaa9f3fee0" + "67e936d8-1fe8-4a92-9629-fdd1ba3604db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23096,22 +23036,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11652" + "11965" ], "x-ms-request-id": [ - "bdc099fa-57b1-44cc-891c-db31a9b8f421" + "bcab8ade-2e79-481b-a740-beadc8ec7cbb" ], "x-ms-correlation-request-id": [ - "bdc099fa-57b1-44cc-891c-db31a9b8f421" + "bcab8ade-2e79-481b-a740-beadc8ec7cbb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172932Z:bdc099fa-57b1-44cc-891c-db31a9b8f421" + "JIOINDIACENTRAL:20220512T083551Z:bcab8ade-2e79-481b-a740-beadc8ec7cbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:31 GMT" + "Thu, 12 May 2022 08:35:50 GMT" ], "Content-Length": [ "602" @@ -23130,16 +23070,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ca70c68-f2c3-4636-8762-400956cc8b87" + "017962b4-bbdf-4215-887b-a65f223c9253" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23159,22 +23099,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11651" + "11954" ], "x-ms-request-id": [ - "a5c69108-e348-4791-9bc7-48e753abfd7c" + "06728a25-cf80-4e75-9468-7abc7e9d07f2" ], "x-ms-correlation-request-id": [ - "a5c69108-e348-4791-9bc7-48e753abfd7c" + "06728a25-cf80-4e75-9468-7abc7e9d07f2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172932Z:a5c69108-e348-4791-9bc7-48e753abfd7c" + "JIOINDIACENTRAL:20220512T083552Z:06728a25-cf80-4e75-9468-7abc7e9d07f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:32 GMT" + "Thu, 12 May 2022 08:35:52 GMT" ], "Content-Length": [ "602" @@ -23193,16 +23133,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c263e2e-c485-4f6a-86c5-483cca8e7e12" + "402a0822-2162-41e8-8d0b-77968f5352fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23222,22 +23162,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11650" + "11968" ], "x-ms-request-id": [ - "542dd71a-c9c2-488d-95e9-5962ae047194" + "4962db46-d93a-4b9e-acf7-f35f356b36a5" ], "x-ms-correlation-request-id": [ - "542dd71a-c9c2-488d-95e9-5962ae047194" + "4962db46-d93a-4b9e-acf7-f35f356b36a5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172933Z:542dd71a-c9c2-488d-95e9-5962ae047194" + "JIOINDIACENTRAL:20220512T083553Z:4962db46-d93a-4b9e-acf7-f35f356b36a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:32 GMT" + "Thu, 12 May 2022 08:35:52 GMT" ], "Content-Length": [ "602" @@ -23256,16 +23196,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0c73146-efad-4997-8f68-69ead9d6371a" + "93f3165f-16f3-4ae5-ae02-22073dbe262b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23285,22 +23225,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11649" + "11966" ], "x-ms-request-id": [ - "7bf5bc4a-fcec-4688-948e-7ec0ca81f454" + "422d9e1f-2fa3-4d44-b065-2b13e750c6da" ], "x-ms-correlation-request-id": [ - "7bf5bc4a-fcec-4688-948e-7ec0ca81f454" + "422d9e1f-2fa3-4d44-b065-2b13e750c6da" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172933Z:7bf5bc4a-fcec-4688-948e-7ec0ca81f454" + "JIOINDIACENTRAL:20220512T083553Z:422d9e1f-2fa3-4d44-b065-2b13e750c6da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:32 GMT" + "Thu, 12 May 2022 08:35:53 GMT" ], "Content-Length": [ "602" @@ -23319,16 +23259,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e372e2a-653b-4502-a84c-22539121ae53" + "79b30d13-bbd3-4cb0-965c-c56ba7ac1e7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23348,22 +23288,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11648" + "11970" ], "x-ms-request-id": [ - "04df0e76-7f38-4cdd-8e07-8533268360c9" + "05691e53-2a52-41ce-8a9d-4fdb8072b42c" ], "x-ms-correlation-request-id": [ - "04df0e76-7f38-4cdd-8e07-8533268360c9" + "05691e53-2a52-41ce-8a9d-4fdb8072b42c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172933Z:04df0e76-7f38-4cdd-8e07-8533268360c9" + "JIOINDIACENTRAL:20220512T083555Z:05691e53-2a52-41ce-8a9d-4fdb8072b42c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:32 GMT" + "Thu, 12 May 2022 08:35:54 GMT" ], "Content-Length": [ "602" @@ -23382,16 +23322,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb5e33b-d05f-455a-a4aa-1e5db99508be" + "b83cee93-125d-48f7-9616-60911452cada" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23411,22 +23351,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11647" + "11964" ], "x-ms-request-id": [ - "3a213d96-db66-40e3-aa97-88c5cd994e58" + "eefc5324-6d5c-411e-9f2e-760e1fc6e03f" ], "x-ms-correlation-request-id": [ - "3a213d96-db66-40e3-aa97-88c5cd994e58" + "eefc5324-6d5c-411e-9f2e-760e1fc6e03f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172933Z:3a213d96-db66-40e3-aa97-88c5cd994e58" + "JIOINDIACENTRAL:20220512T083555Z:eefc5324-6d5c-411e-9f2e-760e1fc6e03f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:33 GMT" + "Thu, 12 May 2022 08:35:55 GMT" ], "Content-Length": [ "602" @@ -23445,16 +23385,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c55fc3cf-cc23-49d3-8378-e87826f7180e" + "c184015c-4d59-4599-ab41-c00265f65c3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23474,22 +23414,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11646" + "11953" ], "x-ms-request-id": [ - "3ffc05ca-aad4-4da6-bcaf-ffe29c11b153" + "aa82a25f-3a5a-4a0c-ab9e-376c5f67e19c" ], "x-ms-correlation-request-id": [ - "3ffc05ca-aad4-4da6-bcaf-ffe29c11b153" + "aa82a25f-3a5a-4a0c-ab9e-376c5f67e19c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172934Z:3ffc05ca-aad4-4da6-bcaf-ffe29c11b153" + "JIOINDIACENTRAL:20220512T083556Z:aa82a25f-3a5a-4a0c-ab9e-376c5f67e19c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:33 GMT" + "Thu, 12 May 2022 08:35:56 GMT" ], "Content-Length": [ "602" @@ -23508,16 +23448,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9c9a9f5-746d-48ac-90b8-780f4d5d71f7" + "4effcd1b-7a35-4635-8aae-fd668a924490" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23537,22 +23477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11645" + "11953" ], "x-ms-request-id": [ - "954e2402-5ef7-4be4-bec8-93f03c58b335" + "ffa43ea7-0eb5-484e-a529-488c9fd9bd63" ], "x-ms-correlation-request-id": [ - "954e2402-5ef7-4be4-bec8-93f03c58b335" + "ffa43ea7-0eb5-484e-a529-488c9fd9bd63" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172934Z:954e2402-5ef7-4be4-bec8-93f03c58b335" + "JIOINDIACENTRAL:20220512T083557Z:ffa43ea7-0eb5-484e-a529-488c9fd9bd63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:33 GMT" + "Thu, 12 May 2022 08:35:57 GMT" ], "Content-Length": [ "602" @@ -23571,16 +23511,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "295015fe-5ad6-4288-bff1-14018e2010af" + "ecdbda9c-77fe-4f32-a12c-a4b26d50f583" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23600,22 +23540,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11644" + "11956" ], "x-ms-request-id": [ - "d5f63d6c-abac-4016-9249-1af5230a3080" + "7f02aa82-5340-42fa-b462-dea11b1e2828" ], "x-ms-correlation-request-id": [ - "d5f63d6c-abac-4016-9249-1af5230a3080" + "7f02aa82-5340-42fa-b462-dea11b1e2828" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172934Z:d5f63d6c-abac-4016-9249-1af5230a3080" + "JIOINDIACENTRAL:20220512T083559Z:7f02aa82-5340-42fa-b462-dea11b1e2828" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:33 GMT" + "Thu, 12 May 2022 08:35:58 GMT" ], "Content-Length": [ "602" @@ -23634,16 +23574,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bee8e9f1-d21e-471f-923c-cb41b3114ca9" + "e17dc5ee-fef4-44a7-8ced-dee82e3b5146" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23663,22 +23603,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11643" + "11963" ], "x-ms-request-id": [ - "8feb3658-3317-4ff4-a4eb-f60522121b68" + "722c7972-bf0c-4d3e-9b83-8833cec1fefa" ], "x-ms-correlation-request-id": [ - "8feb3658-3317-4ff4-a4eb-f60522121b68" + "722c7972-bf0c-4d3e-9b83-8833cec1fefa" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172934Z:8feb3658-3317-4ff4-a4eb-f60522121b68" + "JIOINDIACENTRAL:20220512T083559Z:722c7972-bf0c-4d3e-9b83-8833cec1fefa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:34 GMT" + "Thu, 12 May 2022 08:35:59 GMT" ], "Content-Length": [ "602" @@ -23697,16 +23637,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4504c83d-ed43-4e38-8f8c-13c752db52d6" + "863f91e7-05a4-4b68-b05a-8eb15290958f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23726,22 +23666,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11642" + "11962" ], "x-ms-request-id": [ - "4a787edd-1389-43d2-8d5a-8d956ce636fa" + "d43e3d90-8673-4be0-8091-9e070068ff33" ], "x-ms-correlation-request-id": [ - "4a787edd-1389-43d2-8d5a-8d956ce636fa" + "d43e3d90-8673-4be0-8091-9e070068ff33" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172935Z:4a787edd-1389-43d2-8d5a-8d956ce636fa" + "JIOINDIACENTRAL:20220512T083600Z:d43e3d90-8673-4be0-8091-9e070068ff33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:34 GMT" + "Thu, 12 May 2022 08:36:00 GMT" ], "Content-Length": [ "602" @@ -23760,16 +23700,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff498a41-99c8-404b-ab03-45120bf3a8aa" + "3d2f6d2f-05dc-47c3-ad71-cf2157cf669d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23789,22 +23729,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11641" + "11965" ], "x-ms-request-id": [ - "5de5c6e7-51a2-4026-b2e2-09be550524a7" + "b23085c8-f5fa-4c30-902f-6df722771526" ], "x-ms-correlation-request-id": [ - "5de5c6e7-51a2-4026-b2e2-09be550524a7" + "b23085c8-f5fa-4c30-902f-6df722771526" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172935Z:5de5c6e7-51a2-4026-b2e2-09be550524a7" + "JIOINDIACENTRAL:20220512T083601Z:b23085c8-f5fa-4c30-902f-6df722771526" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:34 GMT" + "Thu, 12 May 2022 08:36:00 GMT" ], "Content-Length": [ "602" @@ -23823,16 +23763,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cb3eaad-f312-441b-b399-ba10bfe74d01" + "fddcbdcb-5850-4df9-9b6b-ed4c83bb091d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23852,22 +23792,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11640" + "11969" ], "x-ms-request-id": [ - "20662edb-385f-4a08-91a6-59017a47aec5" + "57d1295b-2365-4c09-9161-54153116e6d7" ], "x-ms-correlation-request-id": [ - "20662edb-385f-4a08-91a6-59017a47aec5" + "57d1295b-2365-4c09-9161-54153116e6d7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172935Z:20662edb-385f-4a08-91a6-59017a47aec5" + "JIOINDIACENTRAL:20220512T083602Z:57d1295b-2365-4c09-9161-54153116e6d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:34 GMT" + "Thu, 12 May 2022 08:36:01 GMT" ], "Content-Length": [ "602" @@ -23886,16 +23826,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7727d87e-b8ae-40da-bb1a-f09519df7859" + "6d6f9a86-a7aa-4e56-ae1e-380aca4e787b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23915,22 +23855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11639" + "11961" ], "x-ms-request-id": [ - "582b71a3-c776-46bf-914c-40882f3f6f5d" + "ecad6f14-edc1-4722-b32e-f3812360d86b" ], "x-ms-correlation-request-id": [ - "582b71a3-c776-46bf-914c-40882f3f6f5d" + "ecad6f14-edc1-4722-b32e-f3812360d86b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172936Z:582b71a3-c776-46bf-914c-40882f3f6f5d" + "JIOINDIACENTRAL:20220512T083602Z:ecad6f14-edc1-4722-b32e-f3812360d86b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:35 GMT" + "Thu, 12 May 2022 08:36:02 GMT" ], "Content-Length": [ "602" @@ -23949,16 +23889,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df6ca1ca-be4f-47a8-b110-22a8515f8a0e" + "708c7c45-5d20-45c2-a906-75363f3d2235" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -23978,22 +23918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11638" + "11952" ], "x-ms-request-id": [ - "fc741435-5b90-496d-8b4e-8268113a4c73" + "65616a3e-60ab-4c94-941b-938ddb0a921f" ], "x-ms-correlation-request-id": [ - "fc741435-5b90-496d-8b4e-8268113a4c73" + "65616a3e-60ab-4c94-941b-938ddb0a921f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172936Z:fc741435-5b90-496d-8b4e-8268113a4c73" + "JIOINDIACENTRAL:20220512T083603Z:65616a3e-60ab-4c94-941b-938ddb0a921f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:35 GMT" + "Thu, 12 May 2022 08:36:02 GMT" ], "Content-Length": [ "602" @@ -24012,16 +23952,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af474afb-34bd-4ef8-bcab-270a94928d09" + "1ff60c07-007a-4481-8c66-9824d630e2a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24041,22 +23981,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11637" + "11967" ], "x-ms-request-id": [ - "7f99ee90-ce96-4cf3-8cb3-6dabcfea1810" + "a7788340-7e1e-49d5-b4eb-1c38d580710c" ], "x-ms-correlation-request-id": [ - "7f99ee90-ce96-4cf3-8cb3-6dabcfea1810" + "a7788340-7e1e-49d5-b4eb-1c38d580710c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172936Z:7f99ee90-ce96-4cf3-8cb3-6dabcfea1810" + "JIOINDIACENTRAL:20220512T083604Z:a7788340-7e1e-49d5-b4eb-1c38d580710c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:35 GMT" + "Thu, 12 May 2022 08:36:03 GMT" ], "Content-Length": [ "602" @@ -24075,16 +24015,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70d31ffc-8b99-4e4c-9b7b-8714f1158a1d" + "bad18020-8956-4c0c-bf66-ea414e712f4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24104,22 +24044,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11636" + "11960" ], "x-ms-request-id": [ - "27c11ce7-95a9-46cb-acb3-573c9382b4a9" + "6a4ea5c1-be8e-49c7-bb75-7df1c1a1a4d3" ], "x-ms-correlation-request-id": [ - "27c11ce7-95a9-46cb-acb3-573c9382b4a9" + "6a4ea5c1-be8e-49c7-bb75-7df1c1a1a4d3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172936Z:27c11ce7-95a9-46cb-acb3-573c9382b4a9" + "JIOINDIACENTRAL:20220512T083604Z:6a4ea5c1-be8e-49c7-bb75-7df1c1a1a4d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:36 GMT" + "Thu, 12 May 2022 08:36:04 GMT" ], "Content-Length": [ "602" @@ -24138,16 +24078,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0558e05-696f-42dc-9351-0f29b2ee2766" + "b4b76daf-d27f-4744-88f1-a14094c10cf2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24167,22 +24107,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11635" + "11966" ], "x-ms-request-id": [ - "f802254d-0bb4-47ae-81e4-fa449010a81f" + "cf543f73-d76b-4db9-beb9-3222a928d20d" ], "x-ms-correlation-request-id": [ - "f802254d-0bb4-47ae-81e4-fa449010a81f" + "cf543f73-d76b-4db9-beb9-3222a928d20d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172937Z:f802254d-0bb4-47ae-81e4-fa449010a81f" + "JIOINDIACENTRAL:20220512T083605Z:cf543f73-d76b-4db9-beb9-3222a928d20d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:36 GMT" + "Thu, 12 May 2022 08:36:04 GMT" ], "Content-Length": [ "602" @@ -24201,16 +24141,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8da0d638-140d-4d92-909d-8e060b2d69b7" + "d641fcf9-4aab-466f-a7bb-093a4445c5cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24230,22 +24170,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11634" + "11955" ], "x-ms-request-id": [ - "ff6e1845-efb6-44fd-a41e-5589640058d0" + "28468d36-b8f8-4ad7-95c7-43a541df8512" ], "x-ms-correlation-request-id": [ - "ff6e1845-efb6-44fd-a41e-5589640058d0" + "28468d36-b8f8-4ad7-95c7-43a541df8512" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172937Z:ff6e1845-efb6-44fd-a41e-5589640058d0" + "JIOINDIACENTRAL:20220512T083606Z:28468d36-b8f8-4ad7-95c7-43a541df8512" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:36 GMT" + "Thu, 12 May 2022 08:36:06 GMT" ], "Content-Length": [ "602" @@ -24264,16 +24204,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3d83f2b-9a23-492c-a899-3b4b374812ff" + "c24c6783-0e3a-4df9-b5fd-78be79621ff6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24293,22 +24233,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11633" + "11965" ], "x-ms-request-id": [ - "67fff412-0ced-45fc-89ee-19039398ebfa" + "307a604a-f9fe-4d66-90e5-fc3f522a811e" ], "x-ms-correlation-request-id": [ - "67fff412-0ced-45fc-89ee-19039398ebfa" + "307a604a-f9fe-4d66-90e5-fc3f522a811e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172937Z:67fff412-0ced-45fc-89ee-19039398ebfa" + "JIOINDIACENTRAL:20220512T083606Z:307a604a-f9fe-4d66-90e5-fc3f522a811e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:36 GMT" + "Thu, 12 May 2022 08:36:06 GMT" ], "Content-Length": [ "602" @@ -24327,16 +24267,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10517c82-a034-4b16-9d6a-f217f0b7bd19" + "e3731500-4a49-483b-b477-4d8c8a62fa7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24356,22 +24296,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11632" + "11968" ], "x-ms-request-id": [ - "43a60df0-1a70-411c-a0e9-0eec51da39f4" + "4d051d09-2a6f-469d-ae48-10c4b23f28fe" ], "x-ms-correlation-request-id": [ - "43a60df0-1a70-411c-a0e9-0eec51da39f4" + "4d051d09-2a6f-469d-ae48-10c4b23f28fe" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172937Z:43a60df0-1a70-411c-a0e9-0eec51da39f4" + "JIOINDIACENTRAL:20220512T083607Z:4d051d09-2a6f-469d-ae48-10c4b23f28fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:37 GMT" + "Thu, 12 May 2022 08:36:07 GMT" ], "Content-Length": [ "602" @@ -24390,16 +24330,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4b26193-5166-464b-a0e3-67d2518977f8" + "e96cf35b-bf6f-41f7-b20b-01ff5e1f3207" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24419,22 +24359,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11631" + "11959" ], "x-ms-request-id": [ - "07c6c0ea-bb55-442c-a68d-934aa712fef3" + "5037e865-cc4d-482f-8e46-1a331c2c4acf" ], "x-ms-correlation-request-id": [ - "07c6c0ea-bb55-442c-a68d-934aa712fef3" + "5037e865-cc4d-482f-8e46-1a331c2c4acf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172938Z:07c6c0ea-bb55-442c-a68d-934aa712fef3" + "JIOINDIACENTRAL:20220512T083608Z:5037e865-cc4d-482f-8e46-1a331c2c4acf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:37 GMT" + "Thu, 12 May 2022 08:36:07 GMT" ], "Content-Length": [ "602" @@ -24453,16 +24393,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bc6911c-b58c-4f28-9b00-053bc1476316" + "7c4707fe-a5aa-45f2-adea-b6a6f061bd36" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24482,22 +24422,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11630" + "11964" ], "x-ms-request-id": [ - "46de8e23-1d60-4a40-8c4a-89ce209884d6" + "f3ba681b-a86b-467f-907d-251892c3f231" ], "x-ms-correlation-request-id": [ - "46de8e23-1d60-4a40-8c4a-89ce209884d6" + "f3ba681b-a86b-467f-907d-251892c3f231" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172938Z:46de8e23-1d60-4a40-8c4a-89ce209884d6" + "JIOINDIACENTRAL:20220512T083609Z:f3ba681b-a86b-467f-907d-251892c3f231" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:37 GMT" + "Thu, 12 May 2022 08:36:08 GMT" ], "Content-Length": [ "602" @@ -24516,16 +24456,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac5e1eed-3989-400e-b411-5893f9357955" + "64c092d7-3f57-4d6a-b15a-48ab349894b6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24545,22 +24485,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11629" + "11951" ], "x-ms-request-id": [ - "7806f4af-8b47-4df9-a8c2-857efcc377d1" + "5a659b8d-c9af-4b55-95dc-51c43bb6a471" ], "x-ms-correlation-request-id": [ - "7806f4af-8b47-4df9-a8c2-857efcc377d1" + "5a659b8d-c9af-4b55-95dc-51c43bb6a471" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172938Z:7806f4af-8b47-4df9-a8c2-857efcc377d1" + "JIOINDIACENTRAL:20220512T083609Z:5a659b8d-c9af-4b55-95dc-51c43bb6a471" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:37 GMT" + "Thu, 12 May 2022 08:36:08 GMT" ], "Content-Length": [ "602" @@ -24579,16 +24519,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7bbbec2-1864-433d-b2b5-ecb9355f1984" + "5694cbf4-6a62-44dd-9262-30bccfd442dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24608,22 +24548,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11628" + "11960" ], "x-ms-request-id": [ - "80eeebf8-63bf-4a60-a5b7-3e348e571f8c" + "9c547c5b-8b2f-4a01-8d98-ff7bfa14af79" ], "x-ms-correlation-request-id": [ - "80eeebf8-63bf-4a60-a5b7-3e348e571f8c" + "9c547c5b-8b2f-4a01-8d98-ff7bfa14af79" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172938Z:80eeebf8-63bf-4a60-a5b7-3e348e571f8c" + "JIOINDIACENTRAL:20220512T083610Z:9c547c5b-8b2f-4a01-8d98-ff7bfa14af79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:38 GMT" + "Thu, 12 May 2022 08:36:09 GMT" ], "Content-Length": [ "602" @@ -24642,16 +24582,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8de01c9-149a-45c9-aebd-ef7379a6c043" + "3c49888d-464d-43cb-94b0-05dabf85d3fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24671,22 +24611,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11627" + "11950" ], "x-ms-request-id": [ - "4f336e63-8ee6-4931-8a69-4ab2c3f0b3f5" + "75f19585-6735-486b-aa07-da0b4fba336e" ], "x-ms-correlation-request-id": [ - "4f336e63-8ee6-4931-8a69-4ab2c3f0b3f5" + "75f19585-6735-486b-aa07-da0b4fba336e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172939Z:4f336e63-8ee6-4931-8a69-4ab2c3f0b3f5" + "JIOINDIACENTRAL:20220512T083611Z:75f19585-6735-486b-aa07-da0b4fba336e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:38 GMT" + "Thu, 12 May 2022 08:36:11 GMT" ], "Content-Length": [ "602" @@ -24705,16 +24645,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7caa6275-63be-4046-94a6-f93ee8398fe7" + "b5d7a499-b4a5-4ff5-ab54-1e61ab77a93a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24734,22 +24674,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11626" + "11964" ], "x-ms-request-id": [ - "d255df86-006d-480d-bec6-87fb58c2d7d2" + "e36508c5-c4b0-4003-a9a1-4a4de9a47efb" ], "x-ms-correlation-request-id": [ - "d255df86-006d-480d-bec6-87fb58c2d7d2" + "e36508c5-c4b0-4003-a9a1-4a4de9a47efb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172939Z:d255df86-006d-480d-bec6-87fb58c2d7d2" + "JIOINDIACENTRAL:20220512T083611Z:e36508c5-c4b0-4003-a9a1-4a4de9a47efb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:38 GMT" + "Thu, 12 May 2022 08:36:11 GMT" ], "Content-Length": [ "602" @@ -24768,16 +24708,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11870687-ea33-4ba5-a1c0-9a4a0a3baa7c" + "538d09e0-fdd1-4027-873e-1d8704090ca5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24797,22 +24737,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11625" + "11949" ], "x-ms-request-id": [ - "f5169c6a-6a70-44f8-b916-0139f432c48d" + "dd09587e-e26c-4967-b0b0-bcb5c5a5ec38" ], "x-ms-correlation-request-id": [ - "f5169c6a-6a70-44f8-b916-0139f432c48d" + "dd09587e-e26c-4967-b0b0-bcb5c5a5ec38" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172939Z:f5169c6a-6a70-44f8-b916-0139f432c48d" + "JIOINDIACENTRAL:20220512T083612Z:dd09587e-e26c-4967-b0b0-bcb5c5a5ec38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:38 GMT" + "Thu, 12 May 2022 08:36:12 GMT" ], "Content-Length": [ "602" @@ -24831,16 +24771,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3c603bd-59f8-4913-a61c-bd0fd7442285" + "85b2c76a-d535-4119-bc3d-73ec97bf2893" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24860,22 +24800,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11624" + "11954" ], "x-ms-request-id": [ - "2499de0b-3476-4584-93ea-b6b617030c1f" + "2c77fe62-0e18-47aa-88fb-711fc51545f0" ], "x-ms-correlation-request-id": [ - "2499de0b-3476-4584-93ea-b6b617030c1f" + "2c77fe62-0e18-47aa-88fb-711fc51545f0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172940Z:2499de0b-3476-4584-93ea-b6b617030c1f" + "JIOINDIACENTRAL:20220512T083613Z:2c77fe62-0e18-47aa-88fb-711fc51545f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:39 GMT" + "Thu, 12 May 2022 08:36:12 GMT" ], "Content-Length": [ "602" @@ -24894,16 +24834,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee6119b5-a9d9-4677-b6e9-ebb26757a8e9" + "7bf9c500-e0e0-4ae7-8128-422d22677241" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24923,22 +24863,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11623" + "11959" ], "x-ms-request-id": [ - "671bdddf-93df-4cd3-a2e5-2207eb7bc0d2" + "3bb5cf4f-076d-45ec-85eb-1a151aae0dee" ], "x-ms-correlation-request-id": [ - "671bdddf-93df-4cd3-a2e5-2207eb7bc0d2" + "3bb5cf4f-076d-45ec-85eb-1a151aae0dee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172940Z:671bdddf-93df-4cd3-a2e5-2207eb7bc0d2" + "JIOINDIACENTRAL:20220512T083614Z:3bb5cf4f-076d-45ec-85eb-1a151aae0dee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:39 GMT" + "Thu, 12 May 2022 08:36:13 GMT" ], "Content-Length": [ "602" @@ -24957,16 +24897,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4c51f8c-006c-4ed9-8557-a071b1571e3e" + "f0ffd0ce-abc8-4c29-ab61-036ef0111472" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -24986,22 +24926,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11622" + "11963" ], "x-ms-request-id": [ - "15458ba2-1669-4cf1-96e4-0d486a9204b9" + "ab18c0e3-865a-4054-a5a2-eb42ef623aa3" ], "x-ms-correlation-request-id": [ - "15458ba2-1669-4cf1-96e4-0d486a9204b9" + "ab18c0e3-865a-4054-a5a2-eb42ef623aa3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172940Z:15458ba2-1669-4cf1-96e4-0d486a9204b9" + "JIOINDIACENTRAL:20220512T083614Z:ab18c0e3-865a-4054-a5a2-eb42ef623aa3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:39 GMT" + "Thu, 12 May 2022 08:36:14 GMT" ], "Content-Length": [ "602" @@ -25020,16 +24960,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd756eee-d76f-41a3-9142-9648355a036b" + "4ee5357b-0edb-4606-b42d-7cfc880c1a3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25049,22 +24989,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11621" + "11958" ], "x-ms-request-id": [ - "77e16b7c-954f-4525-8a51-83a152956d25" + "d7f912a7-fe45-487c-b00f-22c39f59f493" ], "x-ms-correlation-request-id": [ - "77e16b7c-954f-4525-8a51-83a152956d25" + "d7f912a7-fe45-487c-b00f-22c39f59f493" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172940Z:77e16b7c-954f-4525-8a51-83a152956d25" + "JIOINDIACENTRAL:20220512T083615Z:d7f912a7-fe45-487c-b00f-22c39f59f493" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:39 GMT" + "Thu, 12 May 2022 08:36:15 GMT" ], "Content-Length": [ "602" @@ -25083,16 +25023,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e1342f3-a95a-41e0-99a0-b73a8787cd66" + "75c7170d-0bf9-4577-b59f-a704f20f2576" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25112,22 +25052,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11620" + "11948" ], "x-ms-request-id": [ - "53713238-4b14-4097-a756-aee2df617212" + "3b883535-56b4-4aea-b4d7-f7e87f8ad3a3" ], "x-ms-correlation-request-id": [ - "53713238-4b14-4097-a756-aee2df617212" + "3b883535-56b4-4aea-b4d7-f7e87f8ad3a3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172941Z:53713238-4b14-4097-a756-aee2df617212" + "JIOINDIACENTRAL:20220512T083616Z:3b883535-56b4-4aea-b4d7-f7e87f8ad3a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:41 GMT" + "Thu, 12 May 2022 08:36:15 GMT" ], "Content-Length": [ "602" @@ -25146,16 +25086,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "748c5045-4ca2-437b-be44-e91780653fac" + "bee2eedc-c42f-4dd7-8db9-33bc1965369e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25175,22 +25115,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11619" + "11958" ], "x-ms-request-id": [ - "10f0da41-e08e-445a-bc24-c3cc16b9ece1" + "bf5a3b7e-cdb0-4146-8e36-73cbb2421883" ], "x-ms-correlation-request-id": [ - "10f0da41-e08e-445a-bc24-c3cc16b9ece1" + "bf5a3b7e-cdb0-4146-8e36-73cbb2421883" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172941Z:10f0da41-e08e-445a-bc24-c3cc16b9ece1" + "JIOINDIACENTRAL:20220512T083616Z:bf5a3b7e-cdb0-4146-8e36-73cbb2421883" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:41 GMT" + "Thu, 12 May 2022 08:36:16 GMT" ], "Content-Length": [ "602" @@ -25209,16 +25149,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a004eb92-3c6a-45ff-b649-2c1192bbd118" + "d5452595-8094-4f2f-a5df-167891611d92" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25238,22 +25178,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11618" + "11957" ], "x-ms-request-id": [ - "01e5315c-9a8d-42ae-b353-5abf0ece531d" + "0afd4ccd-c4db-45ec-abab-c01e4f9e947b" ], "x-ms-correlation-request-id": [ - "01e5315c-9a8d-42ae-b353-5abf0ece531d" + "0afd4ccd-c4db-45ec-abab-c01e4f9e947b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172941Z:01e5315c-9a8d-42ae-b353-5abf0ece531d" + "JIOINDIACENTRAL:20220512T083617Z:0afd4ccd-c4db-45ec-abab-c01e4f9e947b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:41 GMT" + "Thu, 12 May 2022 08:36:17 GMT" ], "Content-Length": [ "602" @@ -25272,16 +25212,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ff625eb-852f-47cc-9a5e-5c4776a415c9" + "0fe13e2c-9598-4bf2-af2e-bbffbc680523" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25301,22 +25241,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11617" + "11956" ], "x-ms-request-id": [ - "5bff86d8-1631-47bf-9578-fc1e9aca8621" + "baabd2c5-9326-402d-b61d-9a9513cd413c" ], "x-ms-correlation-request-id": [ - "5bff86d8-1631-47bf-9578-fc1e9aca8621" + "baabd2c5-9326-402d-b61d-9a9513cd413c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172941Z:5bff86d8-1631-47bf-9578-fc1e9aca8621" + "JIOINDIACENTRAL:20220512T083618Z:baabd2c5-9326-402d-b61d-9a9513cd413c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:41 GMT" + "Thu, 12 May 2022 08:36:17 GMT" ], "Content-Length": [ "602" @@ -25335,16 +25275,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc83ae55-38f0-486a-a1e3-0723317ad2d9" + "b533989b-cc45-4ee3-8ace-21e1c85e5d80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25364,22 +25304,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11616" + "11952" ], "x-ms-request-id": [ - "25fed924-7057-4638-be0f-6982b1d845da" + "fa24bbeb-954f-43dd-b6a1-4aab362f5d4d" ], "x-ms-correlation-request-id": [ - "25fed924-7057-4638-be0f-6982b1d845da" + "fa24bbeb-954f-43dd-b6a1-4aab362f5d4d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172942Z:25fed924-7057-4638-be0f-6982b1d845da" + "JIOINDIACENTRAL:20220512T083618Z:fa24bbeb-954f-43dd-b6a1-4aab362f5d4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:42 GMT" + "Thu, 12 May 2022 08:36:18 GMT" ], "Content-Length": [ "602" @@ -25398,16 +25338,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9ecc29a-adeb-4318-8a53-4c81f6db65b8" + "33dc97a3-c826-47cb-a0e3-1dbfe892cd9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25427,22 +25367,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11615" + "11967" ], "x-ms-request-id": [ - "1699b56a-b2f0-4b16-b81d-0a8aed3a36b3" + "08f8341b-9029-4b78-a959-8b5adcea08ac" ], "x-ms-correlation-request-id": [ - "1699b56a-b2f0-4b16-b81d-0a8aed3a36b3" + "08f8341b-9029-4b78-a959-8b5adcea08ac" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172942Z:1699b56a-b2f0-4b16-b81d-0a8aed3a36b3" + "JIOINDIACENTRAL:20220512T083619Z:08f8341b-9029-4b78-a959-8b5adcea08ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:42 GMT" + "Thu, 12 May 2022 08:36:18 GMT" ], "Content-Length": [ "602" @@ -25461,16 +25401,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7539156-57a7-4fff-8623-bfe35abf203f" + "708f2dad-de76-414c-803c-6c68aac2a782" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25490,22 +25430,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11614" + "11963" ], "x-ms-request-id": [ - "1bd9bfdd-dbbf-4929-963d-3a3e53ade067" + "00ddd905-da8e-46eb-b3ae-3e2f314abb85" ], "x-ms-correlation-request-id": [ - "1bd9bfdd-dbbf-4929-963d-3a3e53ade067" + "00ddd905-da8e-46eb-b3ae-3e2f314abb85" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172942Z:1bd9bfdd-dbbf-4929-963d-3a3e53ade067" + "JIOINDIACENTRAL:20220512T083620Z:00ddd905-da8e-46eb-b3ae-3e2f314abb85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:42 GMT" + "Thu, 12 May 2022 08:36:19 GMT" ], "Content-Length": [ "602" @@ -25524,16 +25464,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d918f84-9443-4e4c-9be6-a3048f942149" + "51012a05-41f5-4f93-938c-dd08d42709e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25553,22 +25493,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11613" + "11951" ], "x-ms-request-id": [ - "3eadda2d-2f80-4fbe-83f1-fbefec73fee4" + "1d21d569-ddb2-42a4-bcc7-ad693a4d1c14" ], "x-ms-correlation-request-id": [ - "3eadda2d-2f80-4fbe-83f1-fbefec73fee4" + "1d21d569-ddb2-42a4-bcc7-ad693a4d1c14" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172943Z:3eadda2d-2f80-4fbe-83f1-fbefec73fee4" + "JIOINDIACENTRAL:20220512T083621Z:1d21d569-ddb2-42a4-bcc7-ad693a4d1c14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:43 GMT" + "Thu, 12 May 2022 08:36:20 GMT" ], "Content-Length": [ "602" @@ -25587,16 +25527,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "785aa37c-dcbf-46b1-b433-bc671d32576c" + "b058db94-271b-4c1a-97a5-0b25236ee81d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25616,22 +25556,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11612" + "11950" ], "x-ms-request-id": [ - "69335b28-612e-4175-aff6-46dd0c85a619" + "3e59bd06-b6bd-4ed1-b727-957c09045703" ], "x-ms-correlation-request-id": [ - "69335b28-612e-4175-aff6-46dd0c85a619" + "3e59bd06-b6bd-4ed1-b727-957c09045703" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172943Z:69335b28-612e-4175-aff6-46dd0c85a619" + "JIOINDIACENTRAL:20220512T083621Z:3e59bd06-b6bd-4ed1-b727-957c09045703" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:43 GMT" + "Thu, 12 May 2022 08:36:21 GMT" ], "Content-Length": [ "602" @@ -25650,16 +25590,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee5e354a-7761-40e0-a513-5bad6b756d47" + "4a6f23c7-166c-4039-a823-7bcf038dc68a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25679,22 +25619,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11611" + "11962" ], "x-ms-request-id": [ - "17c02ff8-b753-43b0-bf07-78038337074c" + "6342f06c-4bed-4bc0-bd68-5e4575d163c4" ], "x-ms-correlation-request-id": [ - "17c02ff8-b753-43b0-bf07-78038337074c" + "6342f06c-4bed-4bc0-bd68-5e4575d163c4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172943Z:17c02ff8-b753-43b0-bf07-78038337074c" + "JIOINDIACENTRAL:20220512T083622Z:6342f06c-4bed-4bc0-bd68-5e4575d163c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:43 GMT" + "Thu, 12 May 2022 08:36:21 GMT" ], "Content-Length": [ "602" @@ -25713,16 +25653,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e51a4a1f-e15e-47bd-9b19-4855c16453ee" + "cf591975-80e7-4643-ab40-41fdd3993073" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25742,22 +25682,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11610" + "11953" ], "x-ms-request-id": [ - "971f2168-8fd1-42bc-af8e-9c054c32819e" + "f5a20162-1ecd-4a41-b022-8876fe60327d" ], "x-ms-correlation-request-id": [ - "971f2168-8fd1-42bc-af8e-9c054c32819e" + "f5a20162-1ecd-4a41-b022-8876fe60327d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172943Z:971f2168-8fd1-42bc-af8e-9c054c32819e" + "JIOINDIACENTRAL:20220512T083623Z:f5a20162-1ecd-4a41-b022-8876fe60327d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:43 GMT" + "Thu, 12 May 2022 08:36:23 GMT" ], "Content-Length": [ "602" @@ -25776,16 +25716,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3446e09c-69e6-4af2-95c3-0a6da3ebc286" + "3d5be72b-5657-49ed-9660-853288470ac1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25805,22 +25745,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11609" + "11961" ], "x-ms-request-id": [ - "934fec61-0a36-4d7e-b434-767448faaa53" + "8b74d99f-6f82-4366-afa2-6482554610a6" ], "x-ms-correlation-request-id": [ - "934fec61-0a36-4d7e-b434-767448faaa53" + "8b74d99f-6f82-4366-afa2-6482554610a6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172944Z:934fec61-0a36-4d7e-b434-767448faaa53" + "JIOINDIACENTRAL:20220512T083623Z:8b74d99f-6f82-4366-afa2-6482554610a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:44 GMT" + "Thu, 12 May 2022 08:36:23 GMT" ], "Content-Length": [ "602" @@ -25839,16 +25779,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "399821d0-8077-494f-a806-dcfce0b8dfc8" + "c46192f9-f177-4dab-910b-4641e567f91f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25868,22 +25808,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11608" + "11962" ], "x-ms-request-id": [ - "066316a2-6ac7-4e67-8f76-a22324897ac6" + "1a56a694-3678-491c-80a5-eeef19f3efec" ], "x-ms-correlation-request-id": [ - "066316a2-6ac7-4e67-8f76-a22324897ac6" + "1a56a694-3678-491c-80a5-eeef19f3efec" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172944Z:066316a2-6ac7-4e67-8f76-a22324897ac6" + "JIOINDIACENTRAL:20220512T083624Z:1a56a694-3678-491c-80a5-eeef19f3efec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:44 GMT" + "Thu, 12 May 2022 08:36:24 GMT" ], "Content-Length": [ "602" @@ -25902,16 +25842,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "415cc77f-8868-4fb3-9820-ea87387a3b72" + "444910c9-3304-47fc-9ecb-e5ad9f44a5f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25931,22 +25871,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11607" + "11957" ], "x-ms-request-id": [ - "242d3bf2-b174-4b33-b6ee-34f88aa95dfb" + "bb0a563c-3293-466e-a989-4e27bd4ec198" ], "x-ms-correlation-request-id": [ - "242d3bf2-b174-4b33-b6ee-34f88aa95dfb" + "bb0a563c-3293-466e-a989-4e27bd4ec198" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172944Z:242d3bf2-b174-4b33-b6ee-34f88aa95dfb" + "JIOINDIACENTRAL:20220512T083625Z:bb0a563c-3293-466e-a989-4e27bd4ec198" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:44 GMT" + "Thu, 12 May 2022 08:36:24 GMT" ], "Content-Length": [ "602" @@ -25965,16 +25905,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26afd70b-08bd-4777-bf29-d1431cfe6c59" + "9f29fe9c-8752-43b2-b432-8e9cfd44a2e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -25994,22 +25934,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11606" + "11966" ], "x-ms-request-id": [ - "596a544a-4109-43b3-a38c-b0421e5217ac" + "af327a32-b577-4221-a530-f497f430e5fc" ], "x-ms-correlation-request-id": [ - "596a544a-4109-43b3-a38c-b0421e5217ac" + "af327a32-b577-4221-a530-f497f430e5fc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172944Z:596a544a-4109-43b3-a38c-b0421e5217ac" + "JIOINDIACENTRAL:20220512T083626Z:af327a32-b577-4221-a530-f497f430e5fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:44 GMT" + "Thu, 12 May 2022 08:36:26 GMT" ], "Content-Length": [ "602" @@ -26028,16 +25968,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47cfc1c9-995f-400a-89ca-4215bab7c684" + "ac4d34e2-acd6-458e-aa42-79493da2e7fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26057,22 +25997,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11605" + "11965" ], "x-ms-request-id": [ - "1b3eae90-b9c3-4e0c-aa3e-1e4ca0faefba" + "f10f0d21-0717-4dfa-97e8-d275dd7ddecd" ], "x-ms-correlation-request-id": [ - "1b3eae90-b9c3-4e0c-aa3e-1e4ca0faefba" + "f10f0d21-0717-4dfa-97e8-d275dd7ddecd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172945Z:1b3eae90-b9c3-4e0c-aa3e-1e4ca0faefba" + "JIOINDIACENTRAL:20220512T083627Z:f10f0d21-0717-4dfa-97e8-d275dd7ddecd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:45 GMT" + "Thu, 12 May 2022 08:36:26 GMT" ], "Content-Length": [ "602" @@ -26091,16 +26031,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "967eb913-b8a4-44dd-a0de-4d54b47361b9" + "22fe951f-46de-48d8-9312-fe25de030012" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26120,22 +26060,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11604" + "11949" ], "x-ms-request-id": [ - "8c3b4be1-bfce-4dd7-872d-a8074636866a" + "52b9a61a-b9eb-4488-a525-cb21d9e0d92e" ], "x-ms-correlation-request-id": [ - "8c3b4be1-bfce-4dd7-872d-a8074636866a" + "52b9a61a-b9eb-4488-a525-cb21d9e0d92e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172945Z:8c3b4be1-bfce-4dd7-872d-a8074636866a" + "JIOINDIACENTRAL:20220512T083627Z:52b9a61a-b9eb-4488-a525-cb21d9e0d92e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:45 GMT" + "Thu, 12 May 2022 08:36:27 GMT" ], "Content-Length": [ "602" @@ -26154,16 +26094,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b514c4f-019b-42f1-b9ac-33b25b3982ae" + "4a540497-068e-4f2f-85b5-67297cb1f0bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26183,22 +26123,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11603" + "11955" ], "x-ms-request-id": [ - "c6e76bf7-16f3-4cfa-a303-9e3e799afcad" + "b12b32a3-2f9e-40bf-9714-3f1a4377f599" ], "x-ms-correlation-request-id": [ - "c6e76bf7-16f3-4cfa-a303-9e3e799afcad" + "b12b32a3-2f9e-40bf-9714-3f1a4377f599" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172945Z:c6e76bf7-16f3-4cfa-a303-9e3e799afcad" + "JIOINDIACENTRAL:20220512T083628Z:b12b32a3-2f9e-40bf-9714-3f1a4377f599" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:45 GMT" + "Thu, 12 May 2022 08:36:27 GMT" ], "Content-Length": [ "602" @@ -26217,16 +26157,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42380846-092a-41bf-9e70-60fb0c1fc965" + "97d3c0b6-5b67-4782-945f-24a6612e7bda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26246,22 +26186,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11602" + "11956" ], "x-ms-request-id": [ - "4e5972e2-d6be-432f-b75a-f4581c5247e0" + "73f21590-72d0-4e1c-8f70-118ba3347f4f" ], "x-ms-correlation-request-id": [ - "4e5972e2-d6be-432f-b75a-f4581c5247e0" + "73f21590-72d0-4e1c-8f70-118ba3347f4f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172946Z:4e5972e2-d6be-432f-b75a-f4581c5247e0" + "JIOINDIACENTRAL:20220512T083629Z:73f21590-72d0-4e1c-8f70-118ba3347f4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:45 GMT" + "Thu, 12 May 2022 08:36:28 GMT" ], "Content-Length": [ "602" @@ -26280,16 +26220,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac61c05d-e538-4e92-9ab0-a11d5bb5e93c" + "97c3fbef-2bcc-4d68-bd4e-73f9c81ef13e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26309,22 +26249,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11601" + "11947" ], "x-ms-request-id": [ - "a4d6a6ef-6a87-432e-abbd-53878109fd63" + "a022d277-af9b-4d45-90f2-9a561e3e3047" ], "x-ms-correlation-request-id": [ - "a4d6a6ef-6a87-432e-abbd-53878109fd63" + "a022d277-af9b-4d45-90f2-9a561e3e3047" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172946Z:a4d6a6ef-6a87-432e-abbd-53878109fd63" + "JIOINDIACENTRAL:20220512T083630Z:a022d277-af9b-4d45-90f2-9a561e3e3047" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:46 GMT" + "Thu, 12 May 2022 08:36:29 GMT" ], "Content-Length": [ "602" @@ -26343,16 +26283,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95d27d58-2252-4bbf-ab50-0a6e861d1dcb" + "05bd1332-dad2-4f99-8941-e09aba895e96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26372,22 +26312,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11600" + "11996" ], "x-ms-request-id": [ - "75094d5c-9fa1-4bb3-8ce7-4b8b8e667446" + "10758bb3-67ce-42c9-9005-1316adc67eea" ], "x-ms-correlation-request-id": [ - "75094d5c-9fa1-4bb3-8ce7-4b8b8e667446" + "10758bb3-67ce-42c9-9005-1316adc67eea" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172946Z:75094d5c-9fa1-4bb3-8ce7-4b8b8e667446" + "CENTRALINDIA:20220512T083631Z:10758bb3-67ce-42c9-9005-1316adc67eea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:46 GMT" + "Thu, 12 May 2022 08:36:31 GMT" ], "Content-Length": [ "602" @@ -26406,16 +26346,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d40a8c6a-6896-4ef7-bd17-14f23b559a56" + "7ce93a0e-633a-460a-a2ee-45a71368066f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26435,22 +26375,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11599" + "11999" ], "x-ms-request-id": [ - "b1bbb3fd-dd7e-40e6-a58c-b888e7eef576" + "4ed95319-c347-4c2f-a4a6-3867328ddb38" ], "x-ms-correlation-request-id": [ - "b1bbb3fd-dd7e-40e6-a58c-b888e7eef576" + "4ed95319-c347-4c2f-a4a6-3867328ddb38" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172946Z:b1bbb3fd-dd7e-40e6-a58c-b888e7eef576" + "CENTRALINDIA:20220512T083633Z:4ed95319-c347-4c2f-a4a6-3867328ddb38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:46 GMT" + "Thu, 12 May 2022 08:36:33 GMT" ], "Content-Length": [ "602" @@ -26469,16 +26409,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5f2fbb1-f293-4611-903d-0db0d32193dd" + "6249e981-04f9-46db-8f65-6f1dca184b74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26498,22 +26438,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11598" + "11999" ], "x-ms-request-id": [ - "22510ffa-2cad-458d-9e68-de0750e80a77" + "fe7db29c-6fba-460a-beb6-6b1bccfee7d1" ], "x-ms-correlation-request-id": [ - "22510ffa-2cad-458d-9e68-de0750e80a77" + "fe7db29c-6fba-460a-beb6-6b1bccfee7d1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172947Z:22510ffa-2cad-458d-9e68-de0750e80a77" + "CENTRALINDIA:20220512T083634Z:fe7db29c-6fba-460a-beb6-6b1bccfee7d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:46 GMT" + "Thu, 12 May 2022 08:36:33 GMT" ], "Content-Length": [ "602" @@ -26532,16 +26472,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dabc9a6-6fc7-49f3-bd07-995e19387ba0" + "4ffe5ddb-a934-4948-ad0a-879390aef047" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26561,22 +26501,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11597" + "11998" ], "x-ms-request-id": [ - "8d0da8ff-1ce4-4dc7-b793-c1ae410daebb" + "7bf70177-27b4-4718-9a6a-be3a00449ed7" ], "x-ms-correlation-request-id": [ - "8d0da8ff-1ce4-4dc7-b793-c1ae410daebb" + "7bf70177-27b4-4718-9a6a-be3a00449ed7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172947Z:8d0da8ff-1ce4-4dc7-b793-c1ae410daebb" + "CENTRALINDIA:20220512T083635Z:7bf70177-27b4-4718-9a6a-be3a00449ed7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:47 GMT" + "Thu, 12 May 2022 08:36:35 GMT" ], "Content-Length": [ "602" @@ -26595,16 +26535,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97f2cc61-63a6-4cb2-9c1a-0bfa4a160a85" + "0d8a1947-dd51-4d36-9d76-52e58cc77f75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26624,22 +26564,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11596" + "11999" ], "x-ms-request-id": [ - "89f27e13-1a39-4297-98c3-2075ee87620c" + "25eabac1-6deb-4a9d-80eb-dafdd9574843" ], "x-ms-correlation-request-id": [ - "89f27e13-1a39-4297-98c3-2075ee87620c" + "25eabac1-6deb-4a9d-80eb-dafdd9574843" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172947Z:89f27e13-1a39-4297-98c3-2075ee87620c" + "CENTRALINDIA:20220512T083637Z:25eabac1-6deb-4a9d-80eb-dafdd9574843" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:47 GMT" + "Thu, 12 May 2022 08:36:37 GMT" ], "Content-Length": [ "602" @@ -26658,16 +26598,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f70dff1b-65e0-4743-81ae-189543f1451c" + "3cab37a4-d17e-48e3-a2f8-096a95f49088" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26687,22 +26627,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11595" + "11999" ], "x-ms-request-id": [ - "01d3dcbc-8b36-4ba7-b384-59893d660a11" + "f147acdb-686c-40b2-8a80-a3741e6e3d6a" ], "x-ms-correlation-request-id": [ - "01d3dcbc-8b36-4ba7-b384-59893d660a11" + "f147acdb-686c-40b2-8a80-a3741e6e3d6a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172947Z:01d3dcbc-8b36-4ba7-b384-59893d660a11" + "CENTRALINDIA:20220512T083638Z:f147acdb-686c-40b2-8a80-a3741e6e3d6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:47 GMT" + "Thu, 12 May 2022 08:36:38 GMT" ], "Content-Length": [ "602" @@ -26721,16 +26661,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6af38c4-76e5-4e08-85cc-f578a9574a6a" + "6dc83b4b-d04d-4ae2-b8f1-0733c56e2761" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26750,22 +26690,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11594" + "11999" ], "x-ms-request-id": [ - "5fec321e-cf4d-4827-bfd7-b67d4f6f2a3a" + "eac13511-9419-451c-89bf-312e98551fe4" ], "x-ms-correlation-request-id": [ - "5fec321e-cf4d-4827-bfd7-b67d4f6f2a3a" + "eac13511-9419-451c-89bf-312e98551fe4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172948Z:5fec321e-cf4d-4827-bfd7-b67d4f6f2a3a" + "CENTRALINDIA:20220512T083640Z:eac13511-9419-451c-89bf-312e98551fe4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:47 GMT" + "Thu, 12 May 2022 08:36:39 GMT" ], "Content-Length": [ "602" @@ -26784,16 +26724,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a56c9ff4-c943-463c-a003-12c16db5c1dc" + "e6343d11-2f74-45eb-918f-2b1cb938adb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26813,22 +26753,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11593" + "11961" ], "x-ms-request-id": [ - "b4b79353-a2f6-4971-80c5-a8793bb7eb8f" + "dd12ca85-6358-41c9-adaa-77e359457840" ], "x-ms-correlation-request-id": [ - "b4b79353-a2f6-4971-80c5-a8793bb7eb8f" + "dd12ca85-6358-41c9-adaa-77e359457840" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172948Z:b4b79353-a2f6-4971-80c5-a8793bb7eb8f" + "JIOINDIACENTRAL:20220512T083640Z:dd12ca85-6358-41c9-adaa-77e359457840" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:48 GMT" + "Thu, 12 May 2022 08:36:40 GMT" ], "Content-Length": [ "602" @@ -26847,16 +26787,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "676986b4-5432-4290-84cb-0b18822d498b" + "4f8bb0cc-fc80-410d-a6a0-a49cf3a8ce2a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26876,22 +26816,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11592" + "11952" ], "x-ms-request-id": [ - "847c8b4b-9ce4-4b45-bb5c-dac36f8bc419" + "c7f78289-6e77-4c80-ba4e-2ddc664285f2" ], "x-ms-correlation-request-id": [ - "847c8b4b-9ce4-4b45-bb5c-dac36f8bc419" + "c7f78289-6e77-4c80-ba4e-2ddc664285f2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172948Z:847c8b4b-9ce4-4b45-bb5c-dac36f8bc419" + "JIOINDIACENTRAL:20220512T083641Z:c7f78289-6e77-4c80-ba4e-2ddc664285f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:48 GMT" + "Thu, 12 May 2022 08:36:40 GMT" ], "Content-Length": [ "602" @@ -26910,16 +26850,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a95615f-752b-4682-a437-93a56a94ccbe" + "e2e34141-c37c-45c5-bacd-fb7b65d4c323" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -26939,22 +26879,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11591" + "11960" ], "x-ms-request-id": [ - "0e94ce3c-9c57-4287-ac0a-157b48aa56db" + "67adc1ad-33ba-48be-8c55-732240cc3a27" ], "x-ms-correlation-request-id": [ - "0e94ce3c-9c57-4287-ac0a-157b48aa56db" + "67adc1ad-33ba-48be-8c55-732240cc3a27" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172948Z:0e94ce3c-9c57-4287-ac0a-157b48aa56db" + "JIOINDIACENTRAL:20220512T083642Z:67adc1ad-33ba-48be-8c55-732240cc3a27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:48 GMT" + "Thu, 12 May 2022 08:36:42 GMT" ], "Content-Length": [ "602" @@ -26973,16 +26913,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436257eb-99a2-44c3-898a-a4ee89f5c6e4" + "484e3bca-c56a-477b-872e-83e955cf0427" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27002,22 +26942,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11590" + "11951" ], "x-ms-request-id": [ - "23b36551-d6bb-409e-ad57-939334862edc" + "c46ac598-abc1-4b1a-8b7f-c4f0aac2963f" ], "x-ms-correlation-request-id": [ - "23b36551-d6bb-409e-ad57-939334862edc" + "c46ac598-abc1-4b1a-8b7f-c4f0aac2963f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172949Z:23b36551-d6bb-409e-ad57-939334862edc" + "JIOINDIACENTRAL:20220512T083643Z:c46ac598-abc1-4b1a-8b7f-c4f0aac2963f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:49 GMT" + "Thu, 12 May 2022 08:36:42 GMT" ], "Content-Length": [ "602" @@ -27036,16 +26976,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62b5a8d9-df9c-42fc-8189-28124fb68aa6" + "b3c68268-16e4-48d5-b219-087252e67a56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27065,22 +27005,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11589" + "11960" ], "x-ms-request-id": [ - "81e1addc-4c6b-40e2-8752-0bad12ec500c" + "37197fe3-ef25-4e5e-8b0c-b0b26302104c" ], "x-ms-correlation-request-id": [ - "81e1addc-4c6b-40e2-8752-0bad12ec500c" + "37197fe3-ef25-4e5e-8b0c-b0b26302104c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172949Z:81e1addc-4c6b-40e2-8752-0bad12ec500c" + "JIOINDIACENTRAL:20220512T083644Z:37197fe3-ef25-4e5e-8b0c-b0b26302104c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:49 GMT" + "Thu, 12 May 2022 08:36:43 GMT" ], "Content-Length": [ "602" @@ -27099,16 +27039,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "641ebf92-d54c-4754-b50b-ef88f6734980" + "40372fb0-4a7f-424c-9add-bb4c02f3133e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27128,22 +27068,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11588" + "11955" ], "x-ms-request-id": [ - "818235ea-506d-40fc-a816-7ff2b583dfff" + "e1082806-6486-4e15-87db-ac960026a6db" ], "x-ms-correlation-request-id": [ - "818235ea-506d-40fc-a816-7ff2b583dfff" + "e1082806-6486-4e15-87db-ac960026a6db" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172949Z:818235ea-506d-40fc-a816-7ff2b583dfff" + "JIOINDIACENTRAL:20220512T083645Z:e1082806-6486-4e15-87db-ac960026a6db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:49 GMT" + "Thu, 12 May 2022 08:36:44 GMT" ], "Content-Length": [ "602" @@ -27162,16 +27102,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc359239-cfea-4ed5-b65e-7590f71b43a4" + "1a7e30a1-7546-48b4-97a4-71e9a2b0f159" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27191,22 +27131,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11587" + "11954" ], "x-ms-request-id": [ - "b8b8663e-9235-475b-acee-44508dd588ae" + "0839db04-d6b8-4ca0-bbe3-f291ec7616eb" ], "x-ms-correlation-request-id": [ - "b8b8663e-9235-475b-acee-44508dd588ae" + "0839db04-d6b8-4ca0-bbe3-f291ec7616eb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172950Z:b8b8663e-9235-475b-acee-44508dd588ae" + "JIOINDIACENTRAL:20220512T083646Z:0839db04-d6b8-4ca0-bbe3-f291ec7616eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:49 GMT" + "Thu, 12 May 2022 08:36:45 GMT" ], "Content-Length": [ "602" @@ -27225,16 +27165,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b09702b8-44ea-4fc1-b38c-32cce8eb91a6" + "79f9dc25-1527-4f82-998b-e5252f348c7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27254,22 +27194,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11586" + "11950" ], "x-ms-request-id": [ - "da3a4e60-f2ed-4160-af85-77890bed82fe" + "cb4ee701-5346-449e-b492-4696de0e8f2f" ], "x-ms-correlation-request-id": [ - "da3a4e60-f2ed-4160-af85-77890bed82fe" + "cb4ee701-5346-449e-b492-4696de0e8f2f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172950Z:da3a4e60-f2ed-4160-af85-77890bed82fe" + "JIOINDIACENTRAL:20220512T083646Z:cb4ee701-5346-449e-b492-4696de0e8f2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:50 GMT" + "Thu, 12 May 2022 08:36:45 GMT" ], "Content-Length": [ "602" @@ -27288,16 +27228,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b357385b-3523-42b4-8eff-97daa7c364fb" + "2ccb7b1d-4acd-4518-af43-a6bc98823e4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27317,22 +27257,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11585" + "11949" ], "x-ms-request-id": [ - "b0206cea-8738-48be-bf82-e505edc1823a" + "b7847cc8-17bd-4fa6-aed4-c4143bf88c60" ], "x-ms-correlation-request-id": [ - "b0206cea-8738-48be-bf82-e505edc1823a" + "b7847cc8-17bd-4fa6-aed4-c4143bf88c60" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172950Z:b0206cea-8738-48be-bf82-e505edc1823a" + "JIOINDIACENTRAL:20220512T083647Z:b7847cc8-17bd-4fa6-aed4-c4143bf88c60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:50 GMT" + "Thu, 12 May 2022 08:36:46 GMT" ], "Content-Length": [ "602" @@ -27351,16 +27291,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3f8d849-3858-4114-9f0b-193632df1eea" + "e7e40122-a58e-437c-86d2-97a70b644712" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27380,22 +27320,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11584" + "11948" ], "x-ms-request-id": [ - "cc159dfd-ebaa-4846-bf1b-00981c67945a" + "b7c9ac45-c42c-4f41-9795-14934a4b21f4" ], "x-ms-correlation-request-id": [ - "cc159dfd-ebaa-4846-bf1b-00981c67945a" + "b7c9ac45-c42c-4f41-9795-14934a4b21f4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172950Z:cc159dfd-ebaa-4846-bf1b-00981c67945a" + "JIOINDIACENTRAL:20220512T083648Z:b7c9ac45-c42c-4f41-9795-14934a4b21f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:50 GMT" + "Thu, 12 May 2022 08:36:47 GMT" ], "Content-Length": [ "602" @@ -27414,16 +27354,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "017b93bc-e737-4602-8656-93b33321fd35" + "31658788-aa15-4e2c-87f2-18a422d33d6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27443,22 +27383,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11583" + "11946" ], "x-ms-request-id": [ - "1e60b4d5-efd9-4d09-8739-a3fd83751de6" + "df0725ca-8a91-43b0-89fe-0195eff1e853" ], "x-ms-correlation-request-id": [ - "1e60b4d5-efd9-4d09-8739-a3fd83751de6" + "df0725ca-8a91-43b0-89fe-0195eff1e853" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172951Z:1e60b4d5-efd9-4d09-8739-a3fd83751de6" + "JIOINDIACENTRAL:20220512T083648Z:df0725ca-8a91-43b0-89fe-0195eff1e853" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:50 GMT" + "Thu, 12 May 2022 08:36:48 GMT" ], "Content-Length": [ "602" @@ -27477,16 +27417,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "431752dd-f04d-48bf-b18c-97e411e0070a" + "06da3115-0dcb-42cb-ae96-729f753cfa21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27506,22 +27446,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11582" + "11964" ], "x-ms-request-id": [ - "d9629f07-b3d8-4acc-a4df-e7b4660ab34c" + "e2fc0bdf-1cd9-405a-bc12-c61c181ffd15" ], "x-ms-correlation-request-id": [ - "d9629f07-b3d8-4acc-a4df-e7b4660ab34c" + "e2fc0bdf-1cd9-405a-bc12-c61c181ffd15" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172951Z:d9629f07-b3d8-4acc-a4df-e7b4660ab34c" + "JIOINDIACENTRAL:20220512T083650Z:e2fc0bdf-1cd9-405a-bc12-c61c181ffd15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:51 GMT" + "Thu, 12 May 2022 08:36:49 GMT" ], "Content-Length": [ "602" @@ -27540,16 +27480,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "670d6c00-3d57-4618-8869-64d2f28c7c54" + "5ec15f05-c619-4589-84b6-e8e99decf5f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27569,22 +27509,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11581" + "11954" ], "x-ms-request-id": [ - "832c081f-afbe-42d6-bf5d-16ab5da322a2" + "c51771b6-6d6c-43e9-8f18-ee821f515b95" ], "x-ms-correlation-request-id": [ - "832c081f-afbe-42d6-bf5d-16ab5da322a2" + "c51771b6-6d6c-43e9-8f18-ee821f515b95" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172951Z:832c081f-afbe-42d6-bf5d-16ab5da322a2" + "JIOINDIACENTRAL:20220512T083651Z:c51771b6-6d6c-43e9-8f18-ee821f515b95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:51 GMT" + "Thu, 12 May 2022 08:36:51 GMT" ], "Content-Length": [ "602" @@ -27603,16 +27543,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7215633-23cf-4fb2-bebf-6defdb4ea6e3" + "666959be-f451-45c2-a2f3-5da0d3e71c5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27632,22 +27572,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11580" + "11963" ], "x-ms-request-id": [ - "2dbbb423-13ed-4337-aac1-e9f18c679536" + "c70dc796-6691-41bd-9b09-fc44165eb44e" ], "x-ms-correlation-request-id": [ - "2dbbb423-13ed-4337-aac1-e9f18c679536" + "c70dc796-6691-41bd-9b09-fc44165eb44e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172951Z:2dbbb423-13ed-4337-aac1-e9f18c679536" + "JIOINDIACENTRAL:20220512T083652Z:c70dc796-6691-41bd-9b09-fc44165eb44e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:51 GMT" + "Thu, 12 May 2022 08:36:51 GMT" ], "Content-Length": [ "602" @@ -27666,16 +27606,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fac70a57-dec4-4fd7-8056-7639f6ba0380" + "209a1e4d-7124-4eb2-895f-6f79e4819831" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27695,22 +27635,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11579" + "11953" ], "x-ms-request-id": [ - "4e2416c9-c419-4360-bce0-e838bb06526e" + "241bbcdd-4873-4f04-80b6-d6fb271da3dc" ], "x-ms-correlation-request-id": [ - "4e2416c9-c419-4360-bce0-e838bb06526e" + "241bbcdd-4873-4f04-80b6-d6fb271da3dc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172952Z:4e2416c9-c419-4360-bce0-e838bb06526e" + "JIOINDIACENTRAL:20220512T083653Z:241bbcdd-4873-4f04-80b6-d6fb271da3dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:51 GMT" + "Thu, 12 May 2022 08:36:52 GMT" ], "Content-Length": [ "602" @@ -27729,16 +27669,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2256d753-5eeb-4359-bf58-77b6be0d7812" + "8e6cd61c-aa49-4ff2-b624-9d3cdcfc7dda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27758,22 +27698,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11578" + "11962" ], "x-ms-request-id": [ - "d6214984-6e40-4fce-9e1a-ac52e2adcff6" + "53179e28-aa76-43aa-8e22-9c67264c5a7a" ], "x-ms-correlation-request-id": [ - "d6214984-6e40-4fce-9e1a-ac52e2adcff6" + "53179e28-aa76-43aa-8e22-9c67264c5a7a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172952Z:d6214984-6e40-4fce-9e1a-ac52e2adcff6" + "JIOINDIACENTRAL:20220512T083654Z:53179e28-aa76-43aa-8e22-9c67264c5a7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:52 GMT" + "Thu, 12 May 2022 08:36:53 GMT" ], "Content-Length": [ "602" @@ -27792,16 +27732,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62892da5-ebe1-472c-bbb7-2fc86c9b919a" + "d769a02a-a253-42e3-8e62-ee612b97ac4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27821,22 +27761,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11577" + "11953" ], "x-ms-request-id": [ - "fb2ebe0a-2859-4cd4-abf9-8e1b7c682d20" + "d4e33619-fcee-4eae-ac32-7c41aac7857b" ], "x-ms-correlation-request-id": [ - "fb2ebe0a-2859-4cd4-abf9-8e1b7c682d20" + "d4e33619-fcee-4eae-ac32-7c41aac7857b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172952Z:fb2ebe0a-2859-4cd4-abf9-8e1b7c682d20" + "JIOINDIACENTRAL:20220512T083654Z:d4e33619-fcee-4eae-ac32-7c41aac7857b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:52 GMT" + "Thu, 12 May 2022 08:36:54 GMT" ], "Content-Length": [ "602" @@ -27855,16 +27795,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "655fe587-0356-4707-8f2e-5284216f75e9" + "d6ec4290-d3e9-416e-8d90-ad7742c365df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27884,22 +27824,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11576" + "11945" ], "x-ms-request-id": [ - "bd5f5da8-1344-41bf-9b58-3ee2379ac0a6" + "07614b94-8755-47ab-8014-4747cc37da7b" ], "x-ms-correlation-request-id": [ - "bd5f5da8-1344-41bf-9b58-3ee2379ac0a6" + "07614b94-8755-47ab-8014-4747cc37da7b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172952Z:bd5f5da8-1344-41bf-9b58-3ee2379ac0a6" + "JIOINDIACENTRAL:20220512T083655Z:07614b94-8755-47ab-8014-4747cc37da7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:52 GMT" + "Thu, 12 May 2022 08:36:55 GMT" ], "Content-Length": [ "602" @@ -27918,16 +27858,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3e5503e-89e0-4eaa-a225-efc85d4f2b05" + "c30bad1f-eb3d-4c1a-9468-9fe5b20a9a06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -27947,22 +27887,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11575" + "11961" ], "x-ms-request-id": [ - "26332c17-6a95-4699-ac24-34840e844e8d" + "ccbfc501-1c1c-4888-8ac2-c11a56aa3b62" ], "x-ms-correlation-request-id": [ - "26332c17-6a95-4699-ac24-34840e844e8d" + "ccbfc501-1c1c-4888-8ac2-c11a56aa3b62" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172953Z:26332c17-6a95-4699-ac24-34840e844e8d" + "JIOINDIACENTRAL:20220512T083656Z:ccbfc501-1c1c-4888-8ac2-c11a56aa3b62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:52 GMT" + "Thu, 12 May 2022 08:36:55 GMT" ], "Content-Length": [ "602" @@ -27981,16 +27921,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a2d1c6c-83e7-4df6-9e1c-8b40099fd81e" + "2d9716f2-37f8-455a-af47-b1c6b5c8a9c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28010,22 +27950,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11574" + "11952" ], "x-ms-request-id": [ - "b07c39ed-a813-4d8a-89f8-3bd365558d03" + "4c7808fb-4bff-4e94-9c1c-7491083a04b6" ], "x-ms-correlation-request-id": [ - "b07c39ed-a813-4d8a-89f8-3bd365558d03" + "4c7808fb-4bff-4e94-9c1c-7491083a04b6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172953Z:b07c39ed-a813-4d8a-89f8-3bd365558d03" + "JIOINDIACENTRAL:20220512T083656Z:4c7808fb-4bff-4e94-9c1c-7491083a04b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:53 GMT" + "Thu, 12 May 2022 08:36:56 GMT" ], "Content-Length": [ "602" @@ -28044,16 +27984,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc92ab37-8620-480f-b9b4-bd0e5f9073a8" + "1698f628-889a-43f3-b5b2-da420969865c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28073,22 +28013,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11573" + "11947" ], "x-ms-request-id": [ - "3fe77502-6143-46bf-b1b3-bb5f4af0021b" + "fa10b853-7995-467f-9ac2-4773ce876cba" ], "x-ms-correlation-request-id": [ - "3fe77502-6143-46bf-b1b3-bb5f4af0021b" + "fa10b853-7995-467f-9ac2-4773ce876cba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172953Z:3fe77502-6143-46bf-b1b3-bb5f4af0021b" + "JIOINDIACENTRAL:20220512T083657Z:fa10b853-7995-467f-9ac2-4773ce876cba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:53 GMT" + "Thu, 12 May 2022 08:36:57 GMT" ], "Content-Length": [ "602" @@ -28107,16 +28047,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f62bddc-452f-40cb-a9db-638072dcb878" + "d865f8a0-50f1-4887-9fb4-7e4463fcfaaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28136,22 +28076,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11572" + "11946" ], "x-ms-request-id": [ - "50b050b9-c6b9-480a-ae22-7e3e05aa0e17" + "cee22617-35e8-4ca8-814b-dd24964bac4b" ], "x-ms-correlation-request-id": [ - "50b050b9-c6b9-480a-ae22-7e3e05aa0e17" + "cee22617-35e8-4ca8-814b-dd24964bac4b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172954Z:50b050b9-c6b9-480a-ae22-7e3e05aa0e17" + "JIOINDIACENTRAL:20220512T083658Z:cee22617-35e8-4ca8-814b-dd24964bac4b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:53 GMT" + "Thu, 12 May 2022 08:36:58 GMT" ], "Content-Length": [ "602" @@ -28170,16 +28110,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ee3a152-12d9-4cf2-a1b1-0477463c82e7" + "f303fe66-cbb3-4d5a-b4db-47bceb76c648" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28199,22 +28139,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11571" + "11952" ], "x-ms-request-id": [ - "d69a1bb1-f3e6-4d75-9768-71d171ea7e7d" + "c517038f-aa0c-4a1f-8724-0d2be73de056" ], "x-ms-correlation-request-id": [ - "d69a1bb1-f3e6-4d75-9768-71d171ea7e7d" + "c517038f-aa0c-4a1f-8724-0d2be73de056" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172954Z:d69a1bb1-f3e6-4d75-9768-71d171ea7e7d" + "JIOINDIACENTRAL:20220512T083659Z:c517038f-aa0c-4a1f-8724-0d2be73de056" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:53 GMT" + "Thu, 12 May 2022 08:36:58 GMT" ], "Content-Length": [ "602" @@ -28233,16 +28173,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "039aed8d-ee68-483c-b0f6-04f46600707b" + "d420c2b2-f240-4611-97c7-029d60def785" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28262,22 +28202,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11570" + "11951" ], "x-ms-request-id": [ - "de84b156-5dc7-4bd3-9c8d-9454e7b942ac" + "12fccc8a-cc59-499e-b22e-24b61990de7d" ], "x-ms-correlation-request-id": [ - "de84b156-5dc7-4bd3-9c8d-9454e7b942ac" + "12fccc8a-cc59-499e-b22e-24b61990de7d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172954Z:de84b156-5dc7-4bd3-9c8d-9454e7b942ac" + "JIOINDIACENTRAL:20220512T083659Z:12fccc8a-cc59-499e-b22e-24b61990de7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:54 GMT" + "Thu, 12 May 2022 08:36:58 GMT" ], "Content-Length": [ "602" @@ -28296,16 +28236,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba3869d3-8858-4a26-8b73-bf4f4577f399" + "813b4631-fad4-45a5-ab86-0e430e81c231" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28325,22 +28265,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11569" + "11959" ], "x-ms-request-id": [ - "1ed94c4e-f868-42b0-8d2b-68dc3f0f7a88" + "d73ac239-c939-4d39-adc0-2c537fa8e72f" ], "x-ms-correlation-request-id": [ - "1ed94c4e-f868-42b0-8d2b-68dc3f0f7a88" + "d73ac239-c939-4d39-adc0-2c537fa8e72f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172954Z:1ed94c4e-f868-42b0-8d2b-68dc3f0f7a88" + "JIOINDIACENTRAL:20220512T083700Z:d73ac239-c939-4d39-adc0-2c537fa8e72f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:54 GMT" + "Thu, 12 May 2022 08:36:59 GMT" ], "Content-Length": [ "602" @@ -28359,16 +28299,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f711996b-d7e2-4e86-a163-938a24c3e969" + "1c2e20a7-8cc2-44b5-a690-2a096e79c947" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28388,22 +28328,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11568" + "11950" ], "x-ms-request-id": [ - "1d9387e5-bbc9-4ef7-a09d-3a6fa5bd0c8e" + "ac6cf977-0d00-453f-b0ce-c213f6edf3e5" ], "x-ms-correlation-request-id": [ - "1d9387e5-bbc9-4ef7-a09d-3a6fa5bd0c8e" + "ac6cf977-0d00-453f-b0ce-c213f6edf3e5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172955Z:1d9387e5-bbc9-4ef7-a09d-3a6fa5bd0c8e" + "JIOINDIACENTRAL:20220512T083701Z:ac6cf977-0d00-453f-b0ce-c213f6edf3e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:54 GMT" + "Thu, 12 May 2022 08:37:01 GMT" ], "Content-Length": [ "602" @@ -28422,16 +28362,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e407b1f4-eadc-4fac-9fa3-97009f12750a" + "93804e06-5c23-4e50-b227-9ad29378e69a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28451,22 +28391,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11567" + "11949" ], "x-ms-request-id": [ - "adb8486a-cfdf-47e8-855a-68909b5596f6" + "13d5fab1-78d2-4621-9cb5-704137c8e58b" ], "x-ms-correlation-request-id": [ - "adb8486a-cfdf-47e8-855a-68909b5596f6" + "13d5fab1-78d2-4621-9cb5-704137c8e58b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172955Z:adb8486a-cfdf-47e8-855a-68909b5596f6" + "JIOINDIACENTRAL:20220512T083701Z:13d5fab1-78d2-4621-9cb5-704137c8e58b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:55 GMT" + "Thu, 12 May 2022 08:37:01 GMT" ], "Content-Length": [ "602" @@ -28485,16 +28425,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9519d219-c93e-4eb0-afd7-aa5994d0c3b3" + "2cd1958d-c8a8-43b8-8ba3-12c7f9517dbc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28514,22 +28454,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11566" + "11959" ], "x-ms-request-id": [ - "9890dbc8-e028-4678-b427-3bbe8d8ade7f" + "8323a1a4-dc97-4af9-8c3d-aa2c79bf73b2" ], "x-ms-correlation-request-id": [ - "9890dbc8-e028-4678-b427-3bbe8d8ade7f" + "8323a1a4-dc97-4af9-8c3d-aa2c79bf73b2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172955Z:9890dbc8-e028-4678-b427-3bbe8d8ade7f" + "JIOINDIACENTRAL:20220512T083702Z:8323a1a4-dc97-4af9-8c3d-aa2c79bf73b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:55 GMT" + "Thu, 12 May 2022 08:37:02 GMT" ], "Content-Length": [ "602" @@ -28548,16 +28488,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8df8e5ad-c8b9-4c85-99b6-9dc35aa50086" + "81289d31-c6ff-46d0-8719-48e089a0a41c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28577,22 +28517,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11565" + "11948" ], "x-ms-request-id": [ - "36179efa-f18c-4bfc-8c34-8aeb03cea8c2" + "f5f536bf-63e1-48ab-81e0-9ef8e56e1bef" ], "x-ms-correlation-request-id": [ - "36179efa-f18c-4bfc-8c34-8aeb03cea8c2" + "f5f536bf-63e1-48ab-81e0-9ef8e56e1bef" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172955Z:36179efa-f18c-4bfc-8c34-8aeb03cea8c2" + "JIOINDIACENTRAL:20220512T083703Z:f5f536bf-63e1-48ab-81e0-9ef8e56e1bef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:55 GMT" + "Thu, 12 May 2022 08:37:03 GMT" ], "Content-Length": [ "602" @@ -28611,16 +28551,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd982038-b4c1-4cc3-bc88-6d35a4c44e06" + "102fa2e3-a786-4b99-8127-ce0de1cee947" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28640,22 +28580,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11564" + "11945" ], "x-ms-request-id": [ - "0c7c4d85-038f-446f-a157-52e42ce16a86" + "69c05b8f-5508-445c-8a89-b7c328c87528" ], "x-ms-correlation-request-id": [ - "0c7c4d85-038f-446f-a157-52e42ce16a86" + "69c05b8f-5508-445c-8a89-b7c328c87528" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172956Z:0c7c4d85-038f-446f-a157-52e42ce16a86" + "JIOINDIACENTRAL:20220512T083704Z:69c05b8f-5508-445c-8a89-b7c328c87528" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:55 GMT" + "Thu, 12 May 2022 08:37:03 GMT" ], "Content-Length": [ "602" @@ -28674,16 +28614,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ead6a61b-ea7e-4a4b-9c4a-1f7e847ec51e" + "e411e049-32a1-46ea-8dff-40af86b259a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28703,22 +28643,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11563" + "11948" ], "x-ms-request-id": [ - "51bc4307-bc76-4d45-8557-904768a62ec5" + "0a5d6ce8-af88-46d3-ba0b-48c8e3847c1f" ], "x-ms-correlation-request-id": [ - "51bc4307-bc76-4d45-8557-904768a62ec5" + "0a5d6ce8-af88-46d3-ba0b-48c8e3847c1f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172956Z:51bc4307-bc76-4d45-8557-904768a62ec5" + "JIOINDIACENTRAL:20220512T083705Z:0a5d6ce8-af88-46d3-ba0b-48c8e3847c1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:56 GMT" + "Thu, 12 May 2022 08:37:05 GMT" ], "Content-Length": [ "602" @@ -28737,16 +28677,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a80d5c-7f1b-4391-b94a-14548285a153" + "fb80559d-9232-4cc5-a121-afc3dea628a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28766,22 +28706,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11562" + "11951" ], "x-ms-request-id": [ - "b12774fd-8753-4900-a456-356dd8238a66" + "b558f2f2-c288-4db3-8648-4f1d5814f198" ], "x-ms-correlation-request-id": [ - "b12774fd-8753-4900-a456-356dd8238a66" + "b558f2f2-c288-4db3-8648-4f1d5814f198" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172956Z:b12774fd-8753-4900-a456-356dd8238a66" + "JIOINDIACENTRAL:20220512T083706Z:b558f2f2-c288-4db3-8648-4f1d5814f198" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:56 GMT" + "Thu, 12 May 2022 08:37:05 GMT" ], "Content-Length": [ "602" @@ -28800,16 +28740,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "614fb5a5-51ce-49db-94bf-27654fe890fa" + "aae5f36b-b30d-43f4-8197-5c028738d1d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28829,22 +28769,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11561" + "11944" ], "x-ms-request-id": [ - "c1d79016-1682-4288-8d22-af23b9a5f474" + "ab8cb5d0-d15b-48f8-8a62-b9793bd937d3" ], "x-ms-correlation-request-id": [ - "c1d79016-1682-4288-8d22-af23b9a5f474" + "ab8cb5d0-d15b-48f8-8a62-b9793bd937d3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172956Z:c1d79016-1682-4288-8d22-af23b9a5f474" + "JIOINDIACENTRAL:20220512T083706Z:ab8cb5d0-d15b-48f8-8a62-b9793bd937d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:56 GMT" + "Thu, 12 May 2022 08:37:06 GMT" ], "Content-Length": [ "602" @@ -28863,16 +28803,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3815e8ca-b056-4102-8afa-158b051ce892" + "087f3973-ce6a-4b40-b3af-7ba582c8fe82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28892,22 +28832,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11560" + "11960" ], "x-ms-request-id": [ - "628e9f8c-83c0-4106-9e16-838dc860868a" + "86dcd53b-5668-4526-987b-49909289f27d" ], "x-ms-correlation-request-id": [ - "628e9f8c-83c0-4106-9e16-838dc860868a" + "86dcd53b-5668-4526-987b-49909289f27d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172957Z:628e9f8c-83c0-4106-9e16-838dc860868a" + "JIOINDIACENTRAL:20220512T083707Z:86dcd53b-5668-4526-987b-49909289f27d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:56 GMT" + "Thu, 12 May 2022 08:37:07 GMT" ], "Content-Length": [ "602" @@ -28926,16 +28866,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14ca2c19-2372-4a5d-ab7d-7d19fbc3d339" + "a4ae8e26-824f-4be8-9816-ab86e7ff5da9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -28955,22 +28895,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11559" + "11958" ], "x-ms-request-id": [ - "c5f54167-e70d-406a-83f4-02ffe0459710" + "7e8f8070-2f7a-4013-ab33-46f58507d39e" ], "x-ms-correlation-request-id": [ - "c5f54167-e70d-406a-83f4-02ffe0459710" + "7e8f8070-2f7a-4013-ab33-46f58507d39e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172957Z:c5f54167-e70d-406a-83f4-02ffe0459710" + "JIOINDIACENTRAL:20220512T083708Z:7e8f8070-2f7a-4013-ab33-46f58507d39e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:57 GMT" + "Thu, 12 May 2022 08:37:08 GMT" ], "Content-Length": [ "602" @@ -28989,16 +28929,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33f3ba5d-f0e8-410e-8d99-a47965b06c01" + "de1dbd16-8b8e-42fb-b2c2-6524efd0825a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29018,22 +28958,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11558" + "11958" ], "x-ms-request-id": [ - "17f6732f-8b18-4da5-9c3d-38a11d83c5e5" + "8de2d1e7-8dca-461a-aacf-c9b2c1a4ae9b" ], "x-ms-correlation-request-id": [ - "17f6732f-8b18-4da5-9c3d-38a11d83c5e5" + "8de2d1e7-8dca-461a-aacf-c9b2c1a4ae9b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172957Z:17f6732f-8b18-4da5-9c3d-38a11d83c5e5" + "JIOINDIACENTRAL:20220512T083708Z:8de2d1e7-8dca-461a-aacf-c9b2c1a4ae9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:57 GMT" + "Thu, 12 May 2022 08:37:08 GMT" ], "Content-Length": [ "602" @@ -29052,16 +28992,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e611be84-7494-42c9-a399-dd76a4e658c1" + "da01e18d-d72e-4eb7-a66b-ce88c79a9db5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29081,22 +29021,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11557" + "11944" ], "x-ms-request-id": [ - "bc2ef8de-8a68-49b6-84bd-997d6c4baf0c" + "3a869655-944c-4823-9e5e-560b9c7a2f9c" ], "x-ms-correlation-request-id": [ - "bc2ef8de-8a68-49b6-84bd-997d6c4baf0c" + "3a869655-944c-4823-9e5e-560b9c7a2f9c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172958Z:bc2ef8de-8a68-49b6-84bd-997d6c4baf0c" + "JIOINDIACENTRAL:20220512T083709Z:3a869655-944c-4823-9e5e-560b9c7a2f9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:57 GMT" + "Thu, 12 May 2022 08:37:09 GMT" ], "Content-Length": [ "602" @@ -29115,16 +29055,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a55e4e42-f782-407a-b0bf-3c0a42607775" + "241c1974-d0c3-42c0-8c33-c803a419ed01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29144,22 +29084,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11556" + "11959" ], "x-ms-request-id": [ - "6601c314-657b-49b4-9ae5-08e149c959ca" + "c8a0f840-e14b-4ca5-932f-a59077de5858" ], "x-ms-correlation-request-id": [ - "6601c314-657b-49b4-9ae5-08e149c959ca" + "c8a0f840-e14b-4ca5-932f-a59077de5858" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172958Z:6601c314-657b-49b4-9ae5-08e149c959ca" + "JIOINDIACENTRAL:20220512T083710Z:c8a0f840-e14b-4ca5-932f-a59077de5858" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:57 GMT" + "Thu, 12 May 2022 08:37:10 GMT" ], "Content-Length": [ "602" @@ -29178,16 +29118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d057cfd-114e-46a4-b1ff-8ea6a6fd9c5a" + "b0bf03d0-ad99-4dba-8c4e-b9f709c94acd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29207,22 +29147,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11555" + "11943" ], "x-ms-request-id": [ - "cd5e9dec-9390-4c5a-82fd-d3b347159fa3" + "01101798-a804-4db4-9311-edbd40d93e33" ], "x-ms-correlation-request-id": [ - "cd5e9dec-9390-4c5a-82fd-d3b347159fa3" + "01101798-a804-4db4-9311-edbd40d93e33" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172958Z:cd5e9dec-9390-4c5a-82fd-d3b347159fa3" + "JIOINDIACENTRAL:20220512T083711Z:01101798-a804-4db4-9311-edbd40d93e33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:58 GMT" + "Thu, 12 May 2022 08:37:10 GMT" ], "Content-Length": [ "602" @@ -29241,16 +29181,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c28eb8fc-1d6c-4f9a-936a-1ae36a214ba8" + "132cc45e-0318-41c5-8e85-38cc90161b3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29270,22 +29210,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11554" + "11950" ], "x-ms-request-id": [ - "da1112de-a592-4239-b71e-1d27d1266e47" + "39d391fd-7dee-47ab-842e-276f712f90f0" ], "x-ms-correlation-request-id": [ - "da1112de-a592-4239-b71e-1d27d1266e47" + "39d391fd-7dee-47ab-842e-276f712f90f0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172958Z:da1112de-a592-4239-b71e-1d27d1266e47" + "JIOINDIACENTRAL:20220512T083711Z:39d391fd-7dee-47ab-842e-276f712f90f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:58 GMT" + "Thu, 12 May 2022 08:37:10 GMT" ], "Content-Length": [ "602" @@ -29304,16 +29244,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c17d9274-4f4c-48e1-b2a2-e913f97ddbb7" + "5417635d-bdb9-49c4-8846-72bdd53db78c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29333,22 +29273,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11553" + "11943" ], "x-ms-request-id": [ - "806fa4a9-ed78-4096-b20d-4849ca01af92" + "924d2138-c239-4bf4-b2e7-3660c527ca19" ], "x-ms-correlation-request-id": [ - "806fa4a9-ed78-4096-b20d-4849ca01af92" + "924d2138-c239-4bf4-b2e7-3660c527ca19" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172959Z:806fa4a9-ed78-4096-b20d-4849ca01af92" + "JIOINDIACENTRAL:20220512T083712Z:924d2138-c239-4bf4-b2e7-3660c527ca19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:58 GMT" + "Thu, 12 May 2022 08:37:11 GMT" ], "Content-Length": [ "602" @@ -29367,16 +29307,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c17b7c3a-892e-42df-ac36-6c0c832af781" + "cc1a8c70-a795-4f6f-8c01-d59a3c5c3690" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29396,22 +29336,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11552" + "11957" ], "x-ms-request-id": [ - "9703541d-7204-438e-93b4-89cf60e5adc0" + "eca937a6-5bfc-4da3-8fc8-967a1f185c6d" ], "x-ms-correlation-request-id": [ - "9703541d-7204-438e-93b4-89cf60e5adc0" + "eca937a6-5bfc-4da3-8fc8-967a1f185c6d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172959Z:9703541d-7204-438e-93b4-89cf60e5adc0" + "JIOINDIACENTRAL:20220512T083713Z:eca937a6-5bfc-4da3-8fc8-967a1f185c6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:58 GMT" + "Thu, 12 May 2022 08:37:12 GMT" ], "Content-Length": [ "602" @@ -29430,16 +29370,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64b71df4-17c4-499b-a655-0ebbbee89b70" + "a45c868c-ab6f-4c73-886e-4e71920e0e41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29459,22 +29399,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11551" + "11947" ], "x-ms-request-id": [ - "c6f4e84d-904c-4452-a432-54441a1bcc60" + "e59c49c1-8f93-47ef-84eb-ce94d86e92ea" ], "x-ms-correlation-request-id": [ - "c6f4e84d-904c-4452-a432-54441a1bcc60" + "e59c49c1-8f93-47ef-84eb-ce94d86e92ea" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172959Z:c6f4e84d-904c-4452-a432-54441a1bcc60" + "JIOINDIACENTRAL:20220512T083714Z:e59c49c1-8f93-47ef-84eb-ce94d86e92ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:59 GMT" + "Thu, 12 May 2022 08:37:13 GMT" ], "Content-Length": [ "602" @@ -29493,16 +29433,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cac25da8-d752-40c5-a866-a5b6f6ebdfd3" + "d018e461-8323-4b74-9bc5-74de703bb763" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29522,22 +29462,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11550" + "11942" ], "x-ms-request-id": [ - "cef0ec11-fcc0-42bf-b367-d371ad3b2601" + "0260c0ba-0289-4b8f-805a-32c38e2f7e9c" ], "x-ms-correlation-request-id": [ - "cef0ec11-fcc0-42bf-b367-d371ad3b2601" + "0260c0ba-0289-4b8f-805a-32c38e2f7e9c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172959Z:cef0ec11-fcc0-42bf-b367-d371ad3b2601" + "JIOINDIACENTRAL:20220512T083714Z:0260c0ba-0289-4b8f-805a-32c38e2f7e9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:59 GMT" + "Thu, 12 May 2022 08:37:13 GMT" ], "Content-Length": [ "602" @@ -29556,16 +29496,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35225831-586b-4c2b-afa0-2bca3601062b" + "5e50b5aa-3229-4d43-b1d5-6165382b5699" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29585,22 +29525,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11549" + "11956" ], "x-ms-request-id": [ - "0f26bcc1-6816-4788-80b8-ddbda814de4d" + "8e6fae55-3082-45a6-931d-613457a3a858" ], "x-ms-correlation-request-id": [ - "0f26bcc1-6816-4788-80b8-ddbda814de4d" + "8e6fae55-3082-45a6-931d-613457a3a858" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173000Z:0f26bcc1-6816-4788-80b8-ddbda814de4d" + "JIOINDIACENTRAL:20220512T083715Z:8e6fae55-3082-45a6-931d-613457a3a858" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:59 GMT" + "Thu, 12 May 2022 08:37:14 GMT" ], "Content-Length": [ "602" @@ -29619,16 +29559,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3fee2ee-fafd-4e6f-9b1a-fae0200a4dbd" + "68095316-2974-48e2-9e4b-dc7bb2235dc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29648,22 +29588,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11548" + "11958" ], "x-ms-request-id": [ - "9f04fc64-c10b-4159-8148-4e07390010da" + "cab827bf-5b9b-40bb-b403-7bdf9f37af9e" ], "x-ms-correlation-request-id": [ - "9f04fc64-c10b-4159-8148-4e07390010da" + "cab827bf-5b9b-40bb-b403-7bdf9f37af9e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173000Z:9f04fc64-c10b-4159-8148-4e07390010da" + "JIOINDIACENTRAL:20220512T083716Z:cab827bf-5b9b-40bb-b403-7bdf9f37af9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:29:59 GMT" + "Thu, 12 May 2022 08:37:15 GMT" ], "Content-Length": [ "602" @@ -29682,16 +29622,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8c0f25d-634c-402e-8510-59798ea595f3" + "d7a897ab-221c-4721-88fe-3e5c32036c9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29711,22 +29651,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11547" + "11947" ], "x-ms-request-id": [ - "f541d4b0-ca4d-4878-8c5f-dda941bd6c79" + "b7c59222-8b20-40b6-8cd5-d873ad9b9d9a" ], "x-ms-correlation-request-id": [ - "f541d4b0-ca4d-4878-8c5f-dda941bd6c79" + "b7c59222-8b20-40b6-8cd5-d873ad9b9d9a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173000Z:f541d4b0-ca4d-4878-8c5f-dda941bd6c79" + "JIOINDIACENTRAL:20220512T083716Z:b7c59222-8b20-40b6-8cd5-d873ad9b9d9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:00 GMT" + "Thu, 12 May 2022 08:37:15 GMT" ], "Content-Length": [ "602" @@ -29745,16 +29685,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac0f7ffb-8fb0-438c-a446-c0b2c7487ea8" + "5e30feda-a888-41ca-99f8-d9bc621fcb53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29774,22 +29714,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11546" + "11957" ], "x-ms-request-id": [ - "d8c401a7-bd86-48e6-97ed-f9d302c9aa19" + "2fffcbb8-e79b-4e24-aadd-a78103366c7d" ], "x-ms-correlation-request-id": [ - "d8c401a7-bd86-48e6-97ed-f9d302c9aa19" + "2fffcbb8-e79b-4e24-aadd-a78103366c7d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173000Z:d8c401a7-bd86-48e6-97ed-f9d302c9aa19" + "JIOINDIACENTRAL:20220512T083717Z:2fffcbb8-e79b-4e24-aadd-a78103366c7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:00 GMT" + "Thu, 12 May 2022 08:37:17 GMT" ], "Content-Length": [ "602" @@ -29808,16 +29748,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c42b27ca-48cb-4622-97bb-70c6071da429" + "a9425b03-96c8-49c1-9e06-305e00794196" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29837,22 +29777,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11545" + "11957" ], "x-ms-request-id": [ - "78c905ee-8e59-409d-aed3-5a1c172ec5b0" + "e31896bf-ab12-465e-9340-7938382c8ef0" ], "x-ms-correlation-request-id": [ - "78c905ee-8e59-409d-aed3-5a1c172ec5b0" + "e31896bf-ab12-465e-9340-7938382c8ef0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173001Z:78c905ee-8e59-409d-aed3-5a1c172ec5b0" + "JIOINDIACENTRAL:20220512T083718Z:e31896bf-ab12-465e-9340-7938382c8ef0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:00 GMT" + "Thu, 12 May 2022 08:37:18 GMT" ], "Content-Length": [ "602" @@ -29871,16 +29811,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa1991c4-fbfe-4548-92ad-6b8516015cc1" + "f55c02a8-28e3-46b1-baf9-69e317f7ae97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29900,22 +29840,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11544" + "11941" ], "x-ms-request-id": [ - "e9dbe07b-31b3-403e-b0f8-66da0cbb353f" + "b1b09e01-7e4e-4ce6-a46a-c9328c35858a" ], "x-ms-correlation-request-id": [ - "e9dbe07b-31b3-403e-b0f8-66da0cbb353f" + "b1b09e01-7e4e-4ce6-a46a-c9328c35858a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173001Z:e9dbe07b-31b3-403e-b0f8-66da0cbb353f" + "JIOINDIACENTRAL:20220512T083718Z:b1b09e01-7e4e-4ce6-a46a-c9328c35858a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:00 GMT" + "Thu, 12 May 2022 08:37:18 GMT" ], "Content-Length": [ "602" @@ -29934,16 +29874,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39516945-98ee-48dd-8194-d1ba4ce755e4" + "b2a03b9b-324c-49e3-9e88-13fb8915088a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -29963,22 +29903,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11543" + "11956" ], "x-ms-request-id": [ - "b6c83f08-ddd2-4c6e-936c-951a19d24418" + "2f4f7675-c81b-44ef-9e43-25a8639b9ff8" ], "x-ms-correlation-request-id": [ - "b6c83f08-ddd2-4c6e-936c-951a19d24418" + "2f4f7675-c81b-44ef-9e43-25a8639b9ff8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173001Z:b6c83f08-ddd2-4c6e-936c-951a19d24418" + "JIOINDIACENTRAL:20220512T083719Z:2f4f7675-c81b-44ef-9e43-25a8639b9ff8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:01 GMT" + "Thu, 12 May 2022 08:37:19 GMT" ], "Content-Length": [ "602" @@ -29997,16 +29937,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "756f6ea7-1c89-417b-be1c-86bcc6cffa2f" + "ce8d5f94-b3db-416c-9d7d-1b087177dcb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30026,22 +29966,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11542" + "11956" ], "x-ms-request-id": [ - "047b5f63-cac5-4b04-8ebb-8678c464b1b1" + "9c94b886-459d-4656-9e66-5f4477de3ee1" ], "x-ms-correlation-request-id": [ - "047b5f63-cac5-4b04-8ebb-8678c464b1b1" + "9c94b886-459d-4656-9e66-5f4477de3ee1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173002Z:047b5f63-cac5-4b04-8ebb-8678c464b1b1" + "JIOINDIACENTRAL:20220512T083720Z:9c94b886-459d-4656-9e66-5f4477de3ee1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:01 GMT" + "Thu, 12 May 2022 08:37:20 GMT" ], "Content-Length": [ "602" @@ -30060,16 +30000,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac6ee230-07a2-446d-b565-e18ed632af5b" + "4dee19a7-45c2-4a4d-a2ef-414ebde3514f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30089,22 +30029,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11541" + "11949" ], "x-ms-request-id": [ - "6f667e4f-c83d-4e71-b158-024493ce7ce8" + "4f8dfa2f-6ba4-4a22-9c8b-6af84dd59768" ], "x-ms-correlation-request-id": [ - "6f667e4f-c83d-4e71-b158-024493ce7ce8" + "4f8dfa2f-6ba4-4a22-9c8b-6af84dd59768" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173002Z:6f667e4f-c83d-4e71-b158-024493ce7ce8" + "JIOINDIACENTRAL:20220512T083721Z:4f8dfa2f-6ba4-4a22-9c8b-6af84dd59768" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:01 GMT" + "Thu, 12 May 2022 08:37:20 GMT" ], "Content-Length": [ "602" @@ -30123,16 +30063,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7c5011d-8b7d-487b-a64a-1ac22169f717" + "fc54b849-9a21-4df0-904b-5117b4cec7b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30152,22 +30092,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11540" + "11955" ], "x-ms-request-id": [ - "765210a6-fa23-43f9-af53-0d73f5dc103a" + "9345aa8d-2f60-426d-b971-6034e2d4dab6" ], "x-ms-correlation-request-id": [ - "765210a6-fa23-43f9-af53-0d73f5dc103a" + "9345aa8d-2f60-426d-b971-6034e2d4dab6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173002Z:765210a6-fa23-43f9-af53-0d73f5dc103a" + "JIOINDIACENTRAL:20220512T083721Z:9345aa8d-2f60-426d-b971-6034e2d4dab6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:01 GMT" + "Thu, 12 May 2022 08:37:21 GMT" ], "Content-Length": [ "602" @@ -30186,16 +30126,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8908dec7-32fe-4f66-bb53-61a2125df063" + "6ba16590-5a71-4c37-95a0-19b3abf52a39" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30215,22 +30155,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11539" + "11940" ], "x-ms-request-id": [ - "93ff8227-b505-46c4-a415-5caaf7dea2d5" + "4e9ac497-ce3d-4e53-9e72-61972229cefa" ], "x-ms-correlation-request-id": [ - "93ff8227-b505-46c4-a415-5caaf7dea2d5" + "4e9ac497-ce3d-4e53-9e72-61972229cefa" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173002Z:93ff8227-b505-46c4-a415-5caaf7dea2d5" + "JIOINDIACENTRAL:20220512T083722Z:4e9ac497-ce3d-4e53-9e72-61972229cefa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:02 GMT" + "Thu, 12 May 2022 08:37:21 GMT" ], "Content-Length": [ "602" @@ -30249,16 +30189,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d241f272-9873-4695-bcad-b189cb379a26" + "793a8343-b1b2-40e3-b5e7-73e9babc322b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30278,22 +30218,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11538" + "11955" ], "x-ms-request-id": [ - "84aab49e-9c77-4f5e-93bc-f136e347218e" + "a49e5a19-a3d0-415c-860f-07637ec1f7f4" ], "x-ms-correlation-request-id": [ - "84aab49e-9c77-4f5e-93bc-f136e347218e" + "a49e5a19-a3d0-415c-860f-07637ec1f7f4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173003Z:84aab49e-9c77-4f5e-93bc-f136e347218e" + "JIOINDIACENTRAL:20220512T083723Z:a49e5a19-a3d0-415c-860f-07637ec1f7f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:02 GMT" + "Thu, 12 May 2022 08:37:22 GMT" ], "Content-Length": [ "602" @@ -30312,16 +30252,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "686dbd0b-b609-48ee-97bf-884cf89e904f" + "c583912f-8d4c-4b08-b6ab-02d830be347f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30341,22 +30281,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11537" + "11942" ], "x-ms-request-id": [ - "ea3a1731-c0fd-4f03-a016-33cea11c9ec0" + "829d5a36-818f-4ffc-80a9-0222ff1e3894" ], "x-ms-correlation-request-id": [ - "ea3a1731-c0fd-4f03-a016-33cea11c9ec0" + "829d5a36-818f-4ffc-80a9-0222ff1e3894" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173003Z:ea3a1731-c0fd-4f03-a016-33cea11c9ec0" + "JIOINDIACENTRAL:20220512T083723Z:829d5a36-818f-4ffc-80a9-0222ff1e3894" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:02 GMT" + "Thu, 12 May 2022 08:37:23 GMT" ], "Content-Length": [ "602" @@ -30375,16 +30315,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45783043-d991-4857-991c-ae50c302a744" + "95f71f90-797f-4981-b4ed-b3b44761b40b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30404,22 +30344,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11536" + "11939" ], "x-ms-request-id": [ - "b8e5e52a-3642-454d-8d53-73be85462e88" + "ff62a92f-b5f5-40fb-9432-43ddd882d637" ], "x-ms-correlation-request-id": [ - "b8e5e52a-3642-454d-8d53-73be85462e88" + "ff62a92f-b5f5-40fb-9432-43ddd882d637" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173003Z:b8e5e52a-3642-454d-8d53-73be85462e88" + "JIOINDIACENTRAL:20220512T083724Z:ff62a92f-b5f5-40fb-9432-43ddd882d637" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:03 GMT" + "Thu, 12 May 2022 08:37:24 GMT" ], "Content-Length": [ "602" @@ -30438,16 +30378,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f452508-3763-4aed-b182-7a37e917f2b9" + "0d7f64b4-f5ea-456b-9722-3a2d45317b60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30467,22 +30407,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11535" + "11938" ], "x-ms-request-id": [ - "94ab51c6-0ddb-477b-93da-d6e57165c5b4" + "151f9d7c-91c9-497b-a61e-80f874b3478e" ], "x-ms-correlation-request-id": [ - "94ab51c6-0ddb-477b-93da-d6e57165c5b4" + "151f9d7c-91c9-497b-a61e-80f874b3478e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173003Z:94ab51c6-0ddb-477b-93da-d6e57165c5b4" + "JIOINDIACENTRAL:20220512T083725Z:151f9d7c-91c9-497b-a61e-80f874b3478e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:03 GMT" + "Thu, 12 May 2022 08:37:24 GMT" ], "Content-Length": [ "602" @@ -30501,16 +30441,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de011bcb-b098-44ce-b51e-b916dd3c5a08" + "13799f97-b31c-456e-b686-30f363f1793c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30530,22 +30470,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11534" + "11948" ], "x-ms-request-id": [ - "16ccc2fd-e8bf-48f0-bfbb-bde288d2f3c3" + "f7ff58af-c96e-47a3-84ce-102ef79c9dbb" ], "x-ms-correlation-request-id": [ - "16ccc2fd-e8bf-48f0-bfbb-bde288d2f3c3" + "f7ff58af-c96e-47a3-84ce-102ef79c9dbb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173004Z:16ccc2fd-e8bf-48f0-bfbb-bde288d2f3c3" + "JIOINDIACENTRAL:20220512T083726Z:f7ff58af-c96e-47a3-84ce-102ef79c9dbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:03 GMT" + "Thu, 12 May 2022 08:37:25 GMT" ], "Content-Length": [ "602" @@ -30564,16 +30504,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32d98f67-36b1-4ca2-bb00-ef7ac5f2033e" + "46ba9a92-8c84-4cb4-bf12-033db5ea390a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30593,22 +30533,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11533" + "11954" ], "x-ms-request-id": [ - "4690c572-9bdd-4b33-be37-f8c32cf259cd" + "ceb686e3-5f0f-4d9a-be74-b022c2643d42" ], "x-ms-correlation-request-id": [ - "4690c572-9bdd-4b33-be37-f8c32cf259cd" + "ceb686e3-5f0f-4d9a-be74-b022c2643d42" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173004Z:4690c572-9bdd-4b33-be37-f8c32cf259cd" + "JIOINDIACENTRAL:20220512T083726Z:ceb686e3-5f0f-4d9a-be74-b022c2643d42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:03 GMT" + "Thu, 12 May 2022 08:37:26 GMT" ], "Content-Length": [ "602" @@ -30627,16 +30567,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68ff6584-7c21-4df5-a08d-2bdedfcc0e7b" + "78d4c4c6-a89e-4a83-877d-2c3f5429e045" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30656,22 +30596,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11532" + "11946" ], "x-ms-request-id": [ - "589ee8ac-e405-406e-b5ba-f38569824e53" + "bd6090b6-777c-4efb-9df3-e030ef210a5f" ], "x-ms-correlation-request-id": [ - "589ee8ac-e405-406e-b5ba-f38569824e53" + "bd6090b6-777c-4efb-9df3-e030ef210a5f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173004Z:589ee8ac-e405-406e-b5ba-f38569824e53" + "JIOINDIACENTRAL:20220512T083727Z:bd6090b6-777c-4efb-9df3-e030ef210a5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:04 GMT" + "Thu, 12 May 2022 08:37:26 GMT" ], "Content-Length": [ "602" @@ -30690,16 +30630,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74c8801e-7347-4baf-bbca-d4445c3b2a8e" + "c4f36920-c10c-45e3-bbd1-07429a688931" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30719,22 +30659,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11531" + "11947" ], "x-ms-request-id": [ - "f97215b7-5574-48e0-9da7-1dcec3ceba16" + "536c8f5d-ce75-4eb2-89ec-b9eb9ea9e3c3" ], "x-ms-correlation-request-id": [ - "f97215b7-5574-48e0-9da7-1dcec3ceba16" + "536c8f5d-ce75-4eb2-89ec-b9eb9ea9e3c3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173005Z:f97215b7-5574-48e0-9da7-1dcec3ceba16" + "JIOINDIACENTRAL:20220512T083728Z:536c8f5d-ce75-4eb2-89ec-b9eb9ea9e3c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:04 GMT" + "Thu, 12 May 2022 08:37:27 GMT" ], "Content-Length": [ "602" @@ -30753,16 +30693,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4e247e3-251b-438b-a120-8aa5d331a533" + "45070b4e-46eb-4692-9cad-269e0834b36f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30782,22 +30722,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11530" + "11946" ], "x-ms-request-id": [ - "4f41654e-d272-4632-9ba5-246cc6b94b4f" + "77f7c5cb-6d1d-4034-a745-ef1bdee2a2f4" ], "x-ms-correlation-request-id": [ - "4f41654e-d272-4632-9ba5-246cc6b94b4f" + "77f7c5cb-6d1d-4034-a745-ef1bdee2a2f4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173005Z:4f41654e-d272-4632-9ba5-246cc6b94b4f" + "JIOINDIACENTRAL:20220512T083728Z:77f7c5cb-6d1d-4034-a745-ef1bdee2a2f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:04 GMT" + "Thu, 12 May 2022 08:37:27 GMT" ], "Content-Length": [ "602" @@ -30816,16 +30756,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc523844-e412-455e-acd0-7bcab7485ad7" + "cd8c3c02-88fa-4432-9414-930431f71420" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30845,22 +30785,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11529" + "11955" ], "x-ms-request-id": [ - "78a9534e-a460-4786-9ca1-7ab9c5902566" + "03d9200d-238b-4dd0-8242-68cbb786c837" ], "x-ms-correlation-request-id": [ - "78a9534e-a460-4786-9ca1-7ab9c5902566" + "03d9200d-238b-4dd0-8242-68cbb786c837" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173005Z:78a9534e-a460-4786-9ca1-7ab9c5902566" + "JIOINDIACENTRAL:20220512T083730Z:03d9200d-238b-4dd0-8242-68cbb786c837" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:04 GMT" + "Thu, 12 May 2022 08:37:29 GMT" ], "Content-Length": [ "602" @@ -30879,16 +30819,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "470d829d-71cc-4da4-8104-ee176c398147" + "bdc32e8c-72e7-4c2a-aef9-cca5c6174455" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30908,22 +30848,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11528" + "11945" ], "x-ms-request-id": [ - "bd0731a8-c5c6-408f-b269-7b5033e8d254" + "57235be6-f2c3-4028-9649-20a61df977a1" ], "x-ms-correlation-request-id": [ - "bd0731a8-c5c6-408f-b269-7b5033e8d254" + "57235be6-f2c3-4028-9649-20a61df977a1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173005Z:bd0731a8-c5c6-408f-b269-7b5033e8d254" + "JIOINDIACENTRAL:20220512T083730Z:57235be6-f2c3-4028-9649-20a61df977a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:05 GMT" + "Thu, 12 May 2022 08:37:29 GMT" ], "Content-Length": [ "602" @@ -30942,16 +30882,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aebead7b-2f4e-47a3-90aa-b37235b00214" + "3792fd0e-9d74-4671-ba00-250e2aa69da7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -30971,22 +30911,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11527" + "11946" ], "x-ms-request-id": [ - "edadbf97-40b7-49be-8f0d-eb838fd1d691" + "840f92bb-68a9-4150-a297-e9ce9bc58143" ], "x-ms-correlation-request-id": [ - "edadbf97-40b7-49be-8f0d-eb838fd1d691" + "840f92bb-68a9-4150-a297-e9ce9bc58143" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173006Z:edadbf97-40b7-49be-8f0d-eb838fd1d691" + "JIOINDIACENTRAL:20220512T083732Z:840f92bb-68a9-4150-a297-e9ce9bc58143" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:05 GMT" + "Thu, 12 May 2022 08:37:31 GMT" ], "Content-Length": [ "602" @@ -31005,16 +30945,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae69b928-fc84-4bc8-8dc3-ba7442f02e59" + "5959951e-76ab-40fd-8fa7-6c8b0818f605" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31034,22 +30974,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11526" + "11937" ], "x-ms-request-id": [ - "4bfb137a-a54d-4b01-94bc-8ee64c04e4cc" + "fa4fd52d-9ae7-474b-9bcd-02a4ffc21397" ], "x-ms-correlation-request-id": [ - "4bfb137a-a54d-4b01-94bc-8ee64c04e4cc" + "fa4fd52d-9ae7-474b-9bcd-02a4ffc21397" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173006Z:4bfb137a-a54d-4b01-94bc-8ee64c04e4cc" + "JIOINDIACENTRAL:20220512T083733Z:fa4fd52d-9ae7-474b-9bcd-02a4ffc21397" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:05 GMT" + "Thu, 12 May 2022 08:37:33 GMT" ], "Content-Length": [ "602" @@ -31068,16 +31008,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8173358d-12e2-430a-86d8-ead82675ba61" + "36e626f3-18ae-48a0-87ba-6d34d913013c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31097,22 +31037,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11525" + "11945" ], "x-ms-request-id": [ - "9af6ec91-a3b3-4306-8b3b-f00e1194946a" + "05734389-1932-4cff-8d54-681408b953a7" ], "x-ms-correlation-request-id": [ - "9af6ec91-a3b3-4306-8b3b-f00e1194946a" + "05734389-1932-4cff-8d54-681408b953a7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173006Z:9af6ec91-a3b3-4306-8b3b-f00e1194946a" + "JIOINDIACENTRAL:20220512T083734Z:05734389-1932-4cff-8d54-681408b953a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:05 GMT" + "Thu, 12 May 2022 08:37:34 GMT" ], "Content-Length": [ "602" @@ -31131,16 +31071,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "839a2b1f-89f6-495e-a8cc-75b330cefff5" + "ba7598e9-60a9-46e4-9d11-295dc4dde7cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31160,22 +31100,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11524" + "11954" ], "x-ms-request-id": [ - "0b594cfa-3995-41df-96f0-eec914df3f20" + "68ae47e5-bdd9-498a-b3f3-7fe45ae7ba2b" ], "x-ms-correlation-request-id": [ - "0b594cfa-3995-41df-96f0-eec914df3f20" + "68ae47e5-bdd9-498a-b3f3-7fe45ae7ba2b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173006Z:0b594cfa-3995-41df-96f0-eec914df3f20" + "JIOINDIACENTRAL:20220512T083735Z:68ae47e5-bdd9-498a-b3f3-7fe45ae7ba2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:06 GMT" + "Thu, 12 May 2022 08:37:34 GMT" ], "Content-Length": [ "602" @@ -31194,16 +31134,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0056c29b-3ad0-42a5-96f4-b26b8e9b9034" + "caf285b2-c8a4-4afb-9904-c08913af5aca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31223,22 +31163,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11523" + "11953" ], "x-ms-request-id": [ - "08c1afc1-789e-48b9-839f-d7c66fae998e" + "8827e94b-59b6-415a-bdf3-b48ccf1add3f" ], "x-ms-correlation-request-id": [ - "08c1afc1-789e-48b9-839f-d7c66fae998e" + "8827e94b-59b6-415a-bdf3-b48ccf1add3f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173007Z:08c1afc1-789e-48b9-839f-d7c66fae998e" + "JIOINDIACENTRAL:20220512T083735Z:8827e94b-59b6-415a-bdf3-b48ccf1add3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:06 GMT" + "Thu, 12 May 2022 08:37:35 GMT" ], "Content-Length": [ "602" @@ -31257,16 +31197,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c46e9ac5-ea9a-4917-8d0d-f97097bdf2cc" + "a493f139-d5b3-40b2-92f5-f019d17f2162" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31286,22 +31226,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11522" + "11954" ], "x-ms-request-id": [ - "466f98c9-70d4-4b99-bcc6-cdeb5f3c9a03" + "e27f8542-bda1-4b28-80a7-33dcd899f6ba" ], "x-ms-correlation-request-id": [ - "466f98c9-70d4-4b99-bcc6-cdeb5f3c9a03" + "e27f8542-bda1-4b28-80a7-33dcd899f6ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173007Z:466f98c9-70d4-4b99-bcc6-cdeb5f3c9a03" + "JIOINDIACENTRAL:20220512T083736Z:e27f8542-bda1-4b28-80a7-33dcd899f6ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:06 GMT" + "Thu, 12 May 2022 08:37:35 GMT" ], "Content-Length": [ "602" @@ -31320,16 +31260,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "458577b3-97a2-423c-ae81-f0683a469381" + "d16af3bf-bbea-41b4-8f56-4303c387f2b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31349,22 +31289,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11521" + "11944" ], "x-ms-request-id": [ - "4996d421-c5f2-4183-be62-4b220ef2a62b" + "7e3fb5cf-ee5d-407a-8b24-05200d5f3794" ], "x-ms-correlation-request-id": [ - "4996d421-c5f2-4183-be62-4b220ef2a62b" + "7e3fb5cf-ee5d-407a-8b24-05200d5f3794" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173007Z:4996d421-c5f2-4183-be62-4b220ef2a62b" + "JIOINDIACENTRAL:20220512T083737Z:7e3fb5cf-ee5d-407a-8b24-05200d5f3794" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:06 GMT" + "Thu, 12 May 2022 08:37:36 GMT" ], "Content-Length": [ "602" @@ -31383,16 +31323,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f36043e-d187-42f7-a31c-b2333d8021fd" + "ec868149-6d93-4d82-90bc-8cf57f892f5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31412,22 +31352,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11520" + "11945" ], "x-ms-request-id": [ - "24c1dd8f-5eda-4306-8f99-30a1fa44bd17" + "fecc60e9-c04b-4f8b-8c29-f2200aaaea81" ], "x-ms-correlation-request-id": [ - "24c1dd8f-5eda-4306-8f99-30a1fa44bd17" + "fecc60e9-c04b-4f8b-8c29-f2200aaaea81" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173007Z:24c1dd8f-5eda-4306-8f99-30a1fa44bd17" + "JIOINDIACENTRAL:20220512T083737Z:fecc60e9-c04b-4f8b-8c29-f2200aaaea81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:07 GMT" + "Thu, 12 May 2022 08:37:37 GMT" ], "Content-Length": [ "602" @@ -31446,16 +31386,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65764f5c-a038-44a7-86e0-190c6d125d04" + "1bf870c8-2cd8-4b00-83e9-91136121c7ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31475,22 +31415,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11519" + "11944" ], "x-ms-request-id": [ - "466053a4-bcbf-455d-8095-c123d85ba9b8" + "afff2085-0b3a-44bc-b015-e5245b39773e" ], "x-ms-correlation-request-id": [ - "466053a4-bcbf-455d-8095-c123d85ba9b8" + "afff2085-0b3a-44bc-b015-e5245b39773e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173008Z:466053a4-bcbf-455d-8095-c123d85ba9b8" + "JIOINDIACENTRAL:20220512T083738Z:afff2085-0b3a-44bc-b015-e5245b39773e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:07 GMT" + "Thu, 12 May 2022 08:37:37 GMT" ], "Content-Length": [ "602" @@ -31509,16 +31449,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3354984e-50cf-4c45-8cad-e604f218903e" + "65644f7c-5ef2-4e0a-a1ed-523e531e0787" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31538,22 +31478,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11518" + "11936" ], "x-ms-request-id": [ - "b54b3ee0-d8c2-4dc7-afb0-7aebcf851e7a" + "abdc8f55-2783-415b-bf2f-ab054a84fb26" ], "x-ms-correlation-request-id": [ - "b54b3ee0-d8c2-4dc7-afb0-7aebcf851e7a" + "abdc8f55-2783-415b-bf2f-ab054a84fb26" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173008Z:b54b3ee0-d8c2-4dc7-afb0-7aebcf851e7a" + "JIOINDIACENTRAL:20220512T083739Z:abdc8f55-2783-415b-bf2f-ab054a84fb26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:07 GMT" + "Thu, 12 May 2022 08:37:38 GMT" ], "Content-Length": [ "602" @@ -31572,16 +31512,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30b10415-dfd0-4454-bb0c-31ef17d84dbe" + "3cd244f8-47fb-4af4-8446-4d3a652190d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31601,22 +31541,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11517" + "11952" ], "x-ms-request-id": [ - "5bfd9bd1-4ef8-4b12-bcbc-6a92564ac809" + "3b2f399c-b542-4a8e-8f60-6afaaa7935ab" ], "x-ms-correlation-request-id": [ - "5bfd9bd1-4ef8-4b12-bcbc-6a92564ac809" + "3b2f399c-b542-4a8e-8f60-6afaaa7935ab" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173008Z:5bfd9bd1-4ef8-4b12-bcbc-6a92564ac809" + "JIOINDIACENTRAL:20220512T083740Z:3b2f399c-b542-4a8e-8f60-6afaaa7935ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:07 GMT" + "Thu, 12 May 2022 08:37:40 GMT" ], "Content-Length": [ "602" @@ -31635,16 +31575,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffc3f301-e335-4d42-b94c-8f1547c1dfde" + "69b7fe0a-7eec-48db-b7d0-12efde31e913" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31664,22 +31604,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11516" + "11953" ], "x-ms-request-id": [ - "9393dd46-a11f-410a-a18a-83d47772e248" + "b600a361-03fe-45c5-94bc-18442b4a4e6d" ], "x-ms-correlation-request-id": [ - "9393dd46-a11f-410a-a18a-83d47772e248" + "b600a361-03fe-45c5-94bc-18442b4a4e6d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173009Z:9393dd46-a11f-410a-a18a-83d47772e248" + "JIOINDIACENTRAL:20220512T083741Z:b600a361-03fe-45c5-94bc-18442b4a4e6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:08 GMT" + "Thu, 12 May 2022 08:37:40 GMT" ], "Content-Length": [ "602" @@ -31698,16 +31638,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77ea982a-b7ae-4ae9-ba64-d8d6853252c1" + "64d88b3f-142d-44ac-9f81-b2cc76669147" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31727,22 +31667,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11515" + "11951" ], "x-ms-request-id": [ - "69bb1316-efd4-42e7-b834-d4c6cb7e7b9f" + "27947180-7a5f-4c5f-9b5a-a7f3cf4001e5" ], "x-ms-correlation-request-id": [ - "69bb1316-efd4-42e7-b834-d4c6cb7e7b9f" + "27947180-7a5f-4c5f-9b5a-a7f3cf4001e5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173009Z:69bb1316-efd4-42e7-b834-d4c6cb7e7b9f" + "JIOINDIACENTRAL:20220512T083742Z:27947180-7a5f-4c5f-9b5a-a7f3cf4001e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:08 GMT" + "Thu, 12 May 2022 08:37:41 GMT" ], "Content-Length": [ "602" @@ -31761,16 +31701,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6eb874f0-9bd7-46cb-8e10-d409e7cb6867" + "13ea8234-6ffc-4ba8-9063-2f0376bb3161" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31790,22 +31730,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11514" + "11944" ], "x-ms-request-id": [ - "4ec3e05a-dcbe-43b0-a8dd-4ebb816600d2" + "31035f7a-8175-4226-983c-62d879cf22df" ], "x-ms-correlation-request-id": [ - "4ec3e05a-dcbe-43b0-a8dd-4ebb816600d2" + "31035f7a-8175-4226-983c-62d879cf22df" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173009Z:4ec3e05a-dcbe-43b0-a8dd-4ebb816600d2" + "JIOINDIACENTRAL:20220512T083742Z:31035f7a-8175-4226-983c-62d879cf22df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:08 GMT" + "Thu, 12 May 2022 08:37:42 GMT" ], "Content-Length": [ "602" @@ -31824,16 +31764,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fc89fb6-0b59-44b9-8a12-8167de3ba888" + "9e1d6abe-cea6-4e0f-b042-5e6b3153d607" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31853,22 +31793,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11513" + "11935" ], "x-ms-request-id": [ - "6997a9db-c00c-4882-ab88-0648765fc8b5" + "3d8fe6f5-2043-4b84-b8da-62f714c83862" ], "x-ms-correlation-request-id": [ - "6997a9db-c00c-4882-ab88-0648765fc8b5" + "3d8fe6f5-2043-4b84-b8da-62f714c83862" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173009Z:6997a9db-c00c-4882-ab88-0648765fc8b5" + "JIOINDIACENTRAL:20220512T083743Z:3d8fe6f5-2043-4b84-b8da-62f714c83862" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:08 GMT" + "Thu, 12 May 2022 08:37:42 GMT" ], "Content-Length": [ "602" @@ -31887,16 +31827,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c6c23f7-8037-449c-abda-2274e8689b54" + "fa0c0349-c44f-4428-b279-d6a027526985" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31916,22 +31856,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11512" + "11943" ], "x-ms-request-id": [ - "1fdc195d-fa15-4c81-96cd-de08ebb6e3ea" + "e69e78eb-a600-4063-a2de-61ab27cbc801" ], "x-ms-correlation-request-id": [ - "1fdc195d-fa15-4c81-96cd-de08ebb6e3ea" + "e69e78eb-a600-4063-a2de-61ab27cbc801" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173010Z:1fdc195d-fa15-4c81-96cd-de08ebb6e3ea" + "JIOINDIACENTRAL:20220512T083744Z:e69e78eb-a600-4063-a2de-61ab27cbc801" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:09 GMT" + "Thu, 12 May 2022 08:37:43 GMT" ], "Content-Length": [ "602" @@ -31950,16 +31890,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "148bfc71-c7aa-4ae4-b583-0c12a8e28f93" + "f3501d63-8f49-4ef4-853c-2110928c3fa4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -31979,22 +31919,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11511" + "11943" ], "x-ms-request-id": [ - "621011fd-a4ed-452e-96cc-c51af7414ce3" + "71b9950d-9308-43ce-a571-dcc940405199" ], "x-ms-correlation-request-id": [ - "621011fd-a4ed-452e-96cc-c51af7414ce3" + "71b9950d-9308-43ce-a571-dcc940405199" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173010Z:621011fd-a4ed-452e-96cc-c51af7414ce3" + "JIOINDIACENTRAL:20220512T083744Z:71b9950d-9308-43ce-a571-dcc940405199" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:09 GMT" + "Thu, 12 May 2022 08:37:44 GMT" ], "Content-Length": [ "602" @@ -32013,16 +31953,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e893c516-1a8a-4588-b476-436c448322e0" + "baaff5d1-ad97-41a8-bca7-70e61fedafd7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32042,22 +31982,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11510" + "11941" ], "x-ms-request-id": [ - "5df3a59d-1f92-4132-85b2-6bdbaec3bfcd" + "fae09fba-664b-417c-a407-e66c99587040" ], "x-ms-correlation-request-id": [ - "5df3a59d-1f92-4132-85b2-6bdbaec3bfcd" + "fae09fba-664b-417c-a407-e66c99587040" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173010Z:5df3a59d-1f92-4132-85b2-6bdbaec3bfcd" + "JIOINDIACENTRAL:20220512T083745Z:fae09fba-664b-417c-a407-e66c99587040" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:09 GMT" + "Thu, 12 May 2022 08:37:45 GMT" ], "Content-Length": [ "602" @@ -32076,16 +32016,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41f3e55a-431f-4784-9c64-2a53b663318a" + "96754ea5-71da-499f-8511-eb3890f36897" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32105,22 +32045,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11509" + "11940" ], "x-ms-request-id": [ - "c7cabc60-0ba6-4317-976d-0b0531698ae9" + "18ad82f6-690f-4c1e-8991-08f6cdc6d821" ], "x-ms-correlation-request-id": [ - "c7cabc60-0ba6-4317-976d-0b0531698ae9" + "18ad82f6-690f-4c1e-8991-08f6cdc6d821" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173010Z:c7cabc60-0ba6-4317-976d-0b0531698ae9" + "JIOINDIACENTRAL:20220512T083746Z:18ad82f6-690f-4c1e-8991-08f6cdc6d821" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:10 GMT" + "Thu, 12 May 2022 08:37:45 GMT" ], "Content-Length": [ "602" @@ -32139,16 +32079,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2bb69ba-97b8-407f-a354-ef1d71896600" + "eba226a2-c0ea-4285-a27f-396f85611d6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32168,22 +32108,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11508" + "11943" ], "x-ms-request-id": [ - "c987bded-0eac-4c62-af08-c070ca87bd9a" + "a6dc228b-6f74-4d0d-9cec-6e68d320cafd" ], "x-ms-correlation-request-id": [ - "c987bded-0eac-4c62-af08-c070ca87bd9a" + "a6dc228b-6f74-4d0d-9cec-6e68d320cafd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173011Z:c987bded-0eac-4c62-af08-c070ca87bd9a" + "JIOINDIACENTRAL:20220512T083746Z:a6dc228b-6f74-4d0d-9cec-6e68d320cafd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:10 GMT" + "Thu, 12 May 2022 08:37:46 GMT" ], "Content-Length": [ "602" @@ -32202,16 +32142,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3670510d-d173-439e-81a8-b54aef366205" + "e4941eca-1def-4590-81ef-f784d5ed1d1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32231,22 +32171,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11507" + "11953" ], "x-ms-request-id": [ - "c33ab1c5-7a09-4b8c-beb3-b5bcad7f2950" + "6897d8a4-fb2b-4ada-acf2-fbc757de5a9c" ], "x-ms-correlation-request-id": [ - "c33ab1c5-7a09-4b8c-beb3-b5bcad7f2950" + "6897d8a4-fb2b-4ada-acf2-fbc757de5a9c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173011Z:c33ab1c5-7a09-4b8c-beb3-b5bcad7f2950" + "JIOINDIACENTRAL:20220512T083747Z:6897d8a4-fb2b-4ada-acf2-fbc757de5a9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:10 GMT" + "Thu, 12 May 2022 08:37:47 GMT" ], "Content-Length": [ "602" @@ -32265,16 +32205,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a28bb3d6-4491-49c0-9813-b83d8fec4134" + "452aad77-2225-47b5-8015-325a008d468d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32294,22 +32234,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11506" + "11934" ], "x-ms-request-id": [ - "2e8bf721-7162-4c48-a168-7a2bf6392381" + "0abcc235-cedc-408b-9845-96fb76b642b6" ], "x-ms-correlation-request-id": [ - "2e8bf721-7162-4c48-a168-7a2bf6392381" + "0abcc235-cedc-408b-9845-96fb76b642b6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173011Z:2e8bf721-7162-4c48-a168-7a2bf6392381" + "JIOINDIACENTRAL:20220512T083748Z:0abcc235-cedc-408b-9845-96fb76b642b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:10 GMT" + "Thu, 12 May 2022 08:37:48 GMT" ], "Content-Length": [ "602" @@ -32328,16 +32268,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e36a43b6-c912-4c13-97e4-172f63005f74" + "3b81d08b-4558-4361-a6d5-d07a3fc78451" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32357,22 +32297,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11505" + "11939" ], "x-ms-request-id": [ - "1a16c6f2-d646-4b7e-bbd7-37a811e8251b" + "1861eb04-5de6-4db1-a830-867310a4ddbf" ], "x-ms-correlation-request-id": [ - "1a16c6f2-d646-4b7e-bbd7-37a811e8251b" + "1861eb04-5de6-4db1-a830-867310a4ddbf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173012Z:1a16c6f2-d646-4b7e-bbd7-37a811e8251b" + "JIOINDIACENTRAL:20220512T083749Z:1861eb04-5de6-4db1-a830-867310a4ddbf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:11 GMT" + "Thu, 12 May 2022 08:37:48 GMT" ], "Content-Length": [ "602" @@ -32391,16 +32331,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f4582db-af78-4906-a388-775617c98397" + "98f50c34-0923-4f3e-b2f1-65a40df827e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32420,22 +32360,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11504" + "11938" ], "x-ms-request-id": [ - "3b06f0e7-1688-4220-8484-fc1464fe9abe" + "e2e36a94-6654-45f6-adf6-70d2e9b654cb" ], "x-ms-correlation-request-id": [ - "3b06f0e7-1688-4220-8484-fc1464fe9abe" + "e2e36a94-6654-45f6-adf6-70d2e9b654cb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173012Z:3b06f0e7-1688-4220-8484-fc1464fe9abe" + "JIOINDIACENTRAL:20220512T083749Z:e2e36a94-6654-45f6-adf6-70d2e9b654cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:11 GMT" + "Thu, 12 May 2022 08:37:49 GMT" ], "Content-Length": [ "602" @@ -32454,16 +32394,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7a26306-293b-4a67-b59a-f08c60542a24" + "d1771890-ee4d-4f23-be27-2daff36ae47d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32483,22 +32423,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11503" + "11952" ], "x-ms-request-id": [ - "b6276d70-e4da-474d-969c-0cf2bbd702bd" + "b7fe3b6e-d274-4e89-85d2-f09d4aa650ef" ], "x-ms-correlation-request-id": [ - "b6276d70-e4da-474d-969c-0cf2bbd702bd" + "b7fe3b6e-d274-4e89-85d2-f09d4aa650ef" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173012Z:b6276d70-e4da-474d-969c-0cf2bbd702bd" + "JIOINDIACENTRAL:20220512T083750Z:b7fe3b6e-d274-4e89-85d2-f09d4aa650ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:11 GMT" + "Thu, 12 May 2022 08:37:49 GMT" ], "Content-Length": [ "602" @@ -32517,16 +32457,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e545ec8b-ed1b-41fe-8dfa-eedcea99bf98" + "7ad60ce5-ed65-4da2-b347-d0e69b9f5652" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32546,22 +32486,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11502" + "11933" ], "x-ms-request-id": [ - "2e9dff4a-cf73-4a01-8224-709e4fb764a9" + "86369e7b-9059-43fe-b943-07f9ddf26c21" ], "x-ms-correlation-request-id": [ - "2e9dff4a-cf73-4a01-8224-709e4fb764a9" + "86369e7b-9059-43fe-b943-07f9ddf26c21" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173012Z:2e9dff4a-cf73-4a01-8224-709e4fb764a9" + "JIOINDIACENTRAL:20220512T083751Z:86369e7b-9059-43fe-b943-07f9ddf26c21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:11 GMT" + "Thu, 12 May 2022 08:37:51 GMT" ], "Content-Length": [ "602" @@ -32580,16 +32520,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0ad588a-cba4-4921-b8ec-2094a8998c2a" + "73feab91-ebf5-45d1-a57e-d808c5d89874" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32609,22 +32549,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11501" + "11950" ], "x-ms-request-id": [ - "8407af66-10fe-4c22-9c83-de735445ff2b" + "5e39d745-babe-42af-acc6-ddeb470db476" ], "x-ms-correlation-request-id": [ - "8407af66-10fe-4c22-9c83-de735445ff2b" + "5e39d745-babe-42af-acc6-ddeb470db476" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173013Z:8407af66-10fe-4c22-9c83-de735445ff2b" + "JIOINDIACENTRAL:20220512T083751Z:5e39d745-babe-42af-acc6-ddeb470db476" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:12 GMT" + "Thu, 12 May 2022 08:37:51 GMT" ], "Content-Length": [ "602" @@ -32643,16 +32583,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28b86b37-9793-441f-bd8b-6d2bd0405f7e" + "8c860c29-22bb-4fbd-b0d3-add23bd626c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32672,22 +32612,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11500" + "11949" ], "x-ms-request-id": [ - "2701d009-05d7-45d4-b81b-d0036f7a9171" + "a70a6c4e-c78a-4902-87d4-2975fa58a28c" ], "x-ms-correlation-request-id": [ - "2701d009-05d7-45d4-b81b-d0036f7a9171" + "a70a6c4e-c78a-4902-87d4-2975fa58a28c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173013Z:2701d009-05d7-45d4-b81b-d0036f7a9171" + "JIOINDIACENTRAL:20220512T083752Z:a70a6c4e-c78a-4902-87d4-2975fa58a28c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:12 GMT" + "Thu, 12 May 2022 08:37:51 GMT" ], "Content-Length": [ "602" @@ -32706,16 +32646,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a633f3a-105f-4c76-819f-9698519b94d8" + "ae306217-6058-4277-9e09-71b55d9c8a62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32735,22 +32675,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11499" + "11942" ], "x-ms-request-id": [ - "1dcc9375-24dc-4b1a-a2f8-96939681cf18" + "00606245-02a2-4337-935a-19c258189427" ], "x-ms-correlation-request-id": [ - "1dcc9375-24dc-4b1a-a2f8-96939681cf18" + "00606245-02a2-4337-935a-19c258189427" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173013Z:1dcc9375-24dc-4b1a-a2f8-96939681cf18" + "JIOINDIACENTRAL:20220512T083753Z:00606245-02a2-4337-935a-19c258189427" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:12 GMT" + "Thu, 12 May 2022 08:37:52 GMT" ], "Content-Length": [ "602" @@ -32769,16 +32709,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf4a78f6-79d1-4544-a080-8e48a36727de" + "3645b4d4-0ba4-4dab-a222-40f82cb0dcfb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32798,22 +32738,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11498" + "11951" ], "x-ms-request-id": [ - "b1f386ab-0fe4-4755-b803-e39f9d740fbe" + "1d878c25-e0fb-43fa-84b0-9ff55f914902" ], "x-ms-correlation-request-id": [ - "b1f386ab-0fe4-4755-b803-e39f9d740fbe" + "1d878c25-e0fb-43fa-84b0-9ff55f914902" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173013Z:b1f386ab-0fe4-4755-b803-e39f9d740fbe" + "JIOINDIACENTRAL:20220512T083754Z:1d878c25-e0fb-43fa-84b0-9ff55f914902" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:12 GMT" + "Thu, 12 May 2022 08:37:53 GMT" ], "Content-Length": [ "602" @@ -32832,16 +32772,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a47d5fd7-2a28-43cb-8713-ed0864921fbd" + "2adb1e59-92db-4338-aedf-55ec933b5ddf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32861,22 +32801,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11497" + "11937" ], "x-ms-request-id": [ - "345a0c75-74e9-494e-b028-046bad5a638b" + "14ef10ea-e593-4cc9-86d1-947b80c4e5bc" ], "x-ms-correlation-request-id": [ - "345a0c75-74e9-494e-b028-046bad5a638b" + "14ef10ea-e593-4cc9-86d1-947b80c4e5bc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173014Z:345a0c75-74e9-494e-b028-046bad5a638b" + "JIOINDIACENTRAL:20220512T083754Z:14ef10ea-e593-4cc9-86d1-947b80c4e5bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:14 GMT" + "Thu, 12 May 2022 08:37:53 GMT" ], "Content-Length": [ "602" @@ -32895,16 +32835,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1718cc6-346a-467a-981a-d926753cde45" + "af1619ef-bd3a-4e11-a29e-5b548a93b3ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32924,22 +32864,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11496" + "11952" ], "x-ms-request-id": [ - "e2eae901-34bf-4872-9a26-e767cc8e8c93" + "f3f6d83e-29f0-4b2a-be4f-404cfff297f7" ], "x-ms-correlation-request-id": [ - "e2eae901-34bf-4872-9a26-e767cc8e8c93" + "f3f6d83e-29f0-4b2a-be4f-404cfff297f7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173014Z:e2eae901-34bf-4872-9a26-e767cc8e8c93" + "JIOINDIACENTRAL:20220512T083755Z:f3f6d83e-29f0-4b2a-be4f-404cfff297f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:14 GMT" + "Thu, 12 May 2022 08:37:54 GMT" ], "Content-Length": [ "602" @@ -32958,16 +32898,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "545f98b8-3e33-4eda-8037-960496a9e7e3" + "6141e5d4-b5f5-4813-a5dd-07820397f8a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -32987,22 +32927,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11495" + "11951" ], "x-ms-request-id": [ - "f7a396a4-5d3b-4033-a80f-8ab45cc44688" + "b4c1764d-b11e-4352-ab14-c703cf740d00" ], "x-ms-correlation-request-id": [ - "f7a396a4-5d3b-4033-a80f-8ab45cc44688" + "b4c1764d-b11e-4352-ab14-c703cf740d00" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173014Z:f7a396a4-5d3b-4033-a80f-8ab45cc44688" + "JIOINDIACENTRAL:20220512T083756Z:b4c1764d-b11e-4352-ab14-c703cf740d00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:14 GMT" + "Thu, 12 May 2022 08:37:55 GMT" ], "Content-Length": [ "602" @@ -33021,16 +32961,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab24fb87-316b-42cc-a155-a3720fe8250b" + "9d4d6bc2-8c70-4c2e-af50-7bc2fe0a9560" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33050,22 +32990,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11494" + "11942" ], "x-ms-request-id": [ - "4ee23de5-318c-4f15-a8ef-a59b62c540d4" + "033aa2cf-3793-43fc-9ab0-1f2602c0606b" ], "x-ms-correlation-request-id": [ - "4ee23de5-318c-4f15-a8ef-a59b62c540d4" + "033aa2cf-3793-43fc-9ab0-1f2602c0606b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173014Z:4ee23de5-318c-4f15-a8ef-a59b62c540d4" + "JIOINDIACENTRAL:20220512T083757Z:033aa2cf-3793-43fc-9ab0-1f2602c0606b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:14 GMT" + "Thu, 12 May 2022 08:37:56 GMT" ], "Content-Length": [ "602" @@ -33084,16 +33024,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f20dda86-53e9-48e9-bb66-cc5d690cead3" + "864f6169-2b2b-46c4-b5eb-626bcdad3925" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33113,22 +33053,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11493" + "11942" ], "x-ms-request-id": [ - "b17c74b9-ac2e-42f0-8b34-c47ba7dcf4b6" + "5b56861b-a269-42b7-bf63-81377be67e83" ], "x-ms-correlation-request-id": [ - "b17c74b9-ac2e-42f0-8b34-c47ba7dcf4b6" + "5b56861b-a269-42b7-bf63-81377be67e83" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173015Z:b17c74b9-ac2e-42f0-8b34-c47ba7dcf4b6" + "JIOINDIACENTRAL:20220512T083758Z:5b56861b-a269-42b7-bf63-81377be67e83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:15 GMT" + "Thu, 12 May 2022 08:37:57 GMT" ], "Content-Length": [ "602" @@ -33147,16 +33087,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcb53a18-c124-49ee-8cd7-cbe68ebb77b6" + "2aa6dcba-0531-43e4-a437-dd7822bbd1af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33176,22 +33116,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11492" + "11941" ], "x-ms-request-id": [ - "0f2292b0-e973-4ebf-9f23-0093502d7b15" + "12b2109a-b923-4ce0-a3d5-23e5a137bde6" ], "x-ms-correlation-request-id": [ - "0f2292b0-e973-4ebf-9f23-0093502d7b15" + "12b2109a-b923-4ce0-a3d5-23e5a137bde6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173015Z:0f2292b0-e973-4ebf-9f23-0093502d7b15" + "JIOINDIACENTRAL:20220512T083758Z:12b2109a-b923-4ce0-a3d5-23e5a137bde6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:15 GMT" + "Thu, 12 May 2022 08:37:58 GMT" ], "Content-Length": [ "602" @@ -33210,16 +33150,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd6d88c4-c737-4b9e-a2cb-c1e00ab50ebb" + "cfac2056-8506-47c2-b41c-496b2708c721" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33239,22 +33179,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11491" + "11932" ], "x-ms-request-id": [ - "da3eb1cb-022f-4d96-9371-d57b84cb10c0" + "887cb8f3-b1fc-41fc-90bb-77e10b2268c6" ], "x-ms-correlation-request-id": [ - "da3eb1cb-022f-4d96-9371-d57b84cb10c0" + "887cb8f3-b1fc-41fc-90bb-77e10b2268c6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173015Z:da3eb1cb-022f-4d96-9371-d57b84cb10c0" + "JIOINDIACENTRAL:20220512T083800Z:887cb8f3-b1fc-41fc-90bb-77e10b2268c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:15 GMT" + "Thu, 12 May 2022 08:37:59 GMT" ], "Content-Length": [ "602" @@ -33273,16 +33213,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0a65d55-b6d9-4d0f-b5db-834eb55ee181" + "c7714f3b-c006-4477-b218-b1b1daf82ce7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33302,22 +33242,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11490" + "11941" ], "x-ms-request-id": [ - "5a434aab-6d7b-4288-93fb-77745ac6f604" + "9b24b803-40c3-4dcf-8a9b-f73730fad941" ], "x-ms-correlation-request-id": [ - "5a434aab-6d7b-4288-93fb-77745ac6f604" + "9b24b803-40c3-4dcf-8a9b-f73730fad941" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173016Z:5a434aab-6d7b-4288-93fb-77745ac6f604" + "JIOINDIACENTRAL:20220512T083801Z:9b24b803-40c3-4dcf-8a9b-f73730fad941" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:16 GMT" + "Thu, 12 May 2022 08:38:00 GMT" ], "Content-Length": [ "602" @@ -33336,16 +33276,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b207159-a8de-4ace-91f0-830dd6ae0f98" + "0c8ac607-a258-4ab0-a6c2-4a056fbb74fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33365,22 +33305,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11489" + "11950" ], "x-ms-request-id": [ - "bedf94af-1c09-4219-a690-98ec1c9b0f0c" + "deaccc79-39fb-4131-8a82-a7948c8c33de" ], "x-ms-correlation-request-id": [ - "bedf94af-1c09-4219-a690-98ec1c9b0f0c" + "deaccc79-39fb-4131-8a82-a7948c8c33de" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173016Z:bedf94af-1c09-4219-a690-98ec1c9b0f0c" + "JIOINDIACENTRAL:20220512T083802Z:deaccc79-39fb-4131-8a82-a7948c8c33de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:16 GMT" + "Thu, 12 May 2022 08:38:01 GMT" ], "Content-Length": [ "602" @@ -33399,16 +33339,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1f7c32b-3aa5-4238-b5b7-640e5cf245aa" + "45033b30-efe7-4b16-ba1f-e9321f6b5c62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33428,22 +33368,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11488" + "11940" ], "x-ms-request-id": [ - "c58484d4-a2b2-4e28-a36c-b5e737f8a3ba" + "597b1cc1-ace4-4116-91da-3b0cbfe88512" ], "x-ms-correlation-request-id": [ - "c58484d4-a2b2-4e28-a36c-b5e737f8a3ba" + "597b1cc1-ace4-4116-91da-3b0cbfe88512" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173016Z:c58484d4-a2b2-4e28-a36c-b5e737f8a3ba" + "JIOINDIACENTRAL:20220512T083802Z:597b1cc1-ace4-4116-91da-3b0cbfe88512" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:16 GMT" + "Thu, 12 May 2022 08:38:02 GMT" ], "Content-Length": [ "602" @@ -33462,16 +33402,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3ebe348-beb3-448d-9557-b20b92817be9" + "92429a30-19b9-450b-b1b8-fcdb22897d55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33491,22 +33431,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11487" + "11936" ], "x-ms-request-id": [ - "5325c4aa-146a-402d-93f8-eae34fd73006" + "0b0fa54b-c547-48d0-9bff-80ac2f8a0b9f" ], "x-ms-correlation-request-id": [ - "5325c4aa-146a-402d-93f8-eae34fd73006" + "0b0fa54b-c547-48d0-9bff-80ac2f8a0b9f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173016Z:5325c4aa-146a-402d-93f8-eae34fd73006" + "JIOINDIACENTRAL:20220512T083803Z:0b0fa54b-c547-48d0-9bff-80ac2f8a0b9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:16 GMT" + "Thu, 12 May 2022 08:38:03 GMT" ], "Content-Length": [ "602" @@ -33525,16 +33465,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c1b20ab-c0ec-4d10-b195-78948b7c82e2" + "01b554b4-ecd6-49ac-938a-d8ebcdb1023e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33554,22 +33494,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11486" + "11950" ], "x-ms-request-id": [ - "0c981d1c-9d8a-4615-8f9c-367d8fe5d534" + "345fea00-a129-434d-8a62-d234a3c6eb41" ], "x-ms-correlation-request-id": [ - "0c981d1c-9d8a-4615-8f9c-367d8fe5d534" + "345fea00-a129-434d-8a62-d234a3c6eb41" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173017Z:0c981d1c-9d8a-4615-8f9c-367d8fe5d534" + "JIOINDIACENTRAL:20220512T083804Z:345fea00-a129-434d-8a62-d234a3c6eb41" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:17 GMT" + "Thu, 12 May 2022 08:38:04 GMT" ], "Content-Length": [ "602" @@ -33588,16 +33528,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dd9c8b2-6c62-48a9-8cc8-98ae4de13d74" + "49dfb965-36e6-4c8a-94be-88e06896c06d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33617,22 +33557,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11485" + "11948" ], "x-ms-request-id": [ - "c100d295-7cff-4a1a-abbe-e6559a3eda05" + "12b32859-a122-416f-bed1-d2b07fa8078b" ], "x-ms-correlation-request-id": [ - "c100d295-7cff-4a1a-abbe-e6559a3eda05" + "12b32859-a122-416f-bed1-d2b07fa8078b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173017Z:c100d295-7cff-4a1a-abbe-e6559a3eda05" + "JIOINDIACENTRAL:20220512T083805Z:12b32859-a122-416f-bed1-d2b07fa8078b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:17 GMT" + "Thu, 12 May 2022 08:38:04 GMT" ], "Content-Length": [ "602" @@ -33651,16 +33591,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e9e3d6a-f093-4d3a-9771-a03aa95d7cff" + "e28a4dfb-ef9d-44e3-a45a-7112bd016d00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33680,22 +33620,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11484" + "11949" ], "x-ms-request-id": [ - "b5a79dd7-ef9a-402b-9725-fb554e670ad9" + "972ae5bd-10f2-4ded-ba55-8c31b907fc17" ], "x-ms-correlation-request-id": [ - "b5a79dd7-ef9a-402b-9725-fb554e670ad9" + "972ae5bd-10f2-4ded-ba55-8c31b907fc17" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173017Z:b5a79dd7-ef9a-402b-9725-fb554e670ad9" + "JIOINDIACENTRAL:20220512T083805Z:972ae5bd-10f2-4ded-ba55-8c31b907fc17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:17 GMT" + "Thu, 12 May 2022 08:38:05 GMT" ], "Content-Length": [ "602" @@ -33714,16 +33654,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fde92b3d-5f8c-4e52-8d9c-66d521697217" + "5072d166-70be-40f1-9690-931c6661d90b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33743,22 +33683,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11483" + "11941" ], "x-ms-request-id": [ - "bd912775-8861-4cd1-a312-d0df5f0a4547" + "b16f1fcd-9575-46ea-ae9b-4932d5114858" ], "x-ms-correlation-request-id": [ - "bd912775-8861-4cd1-a312-d0df5f0a4547" + "b16f1fcd-9575-46ea-ae9b-4932d5114858" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173017Z:bd912775-8861-4cd1-a312-d0df5f0a4547" + "JIOINDIACENTRAL:20220512T083806Z:b16f1fcd-9575-46ea-ae9b-4932d5114858" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:17 GMT" + "Thu, 12 May 2022 08:38:06 GMT" ], "Content-Length": [ "602" @@ -33777,16 +33717,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9158563-5110-4328-94be-2a7ba8ea1f6b" + "b3f22f2d-4ecb-480a-97c9-1534d5aef495" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33806,22 +33746,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11482" + "11949" ], "x-ms-request-id": [ - "7dc1584d-6516-4de5-b427-502894cc99c7" + "8cf450f0-ad84-48be-9dfa-db63497b134e" ], "x-ms-correlation-request-id": [ - "7dc1584d-6516-4de5-b427-502894cc99c7" + "8cf450f0-ad84-48be-9dfa-db63497b134e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173018Z:7dc1584d-6516-4de5-b427-502894cc99c7" + "JIOINDIACENTRAL:20220512T083807Z:8cf450f0-ad84-48be-9dfa-db63497b134e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:18 GMT" + "Thu, 12 May 2022 08:38:07 GMT" ], "Content-Length": [ "602" @@ -33840,16 +33780,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09325161-6272-4540-9163-0be86e2748f9" + "3fc61338-7441-4c4a-9afb-2a7eb884b06d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33869,22 +33809,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11481" + "11947" ], "x-ms-request-id": [ - "83e6961a-1481-499b-87d6-4a449b485212" + "d49148f8-64f7-4cee-a2c4-06cfb4466315" ], "x-ms-correlation-request-id": [ - "83e6961a-1481-499b-87d6-4a449b485212" + "d49148f8-64f7-4cee-a2c4-06cfb4466315" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173018Z:83e6961a-1481-499b-87d6-4a449b485212" + "JIOINDIACENTRAL:20220512T083807Z:d49148f8-64f7-4cee-a2c4-06cfb4466315" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:18 GMT" + "Thu, 12 May 2022 08:38:07 GMT" ], "Content-Length": [ "602" @@ -33903,16 +33843,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e5725c5-a80d-421a-9643-368404e589f1" + "030387c7-9175-469c-a78c-6451d488a363" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33932,22 +33872,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11480" + "11946" ], "x-ms-request-id": [ - "c2c42399-fd3e-48f3-a026-2135a69f9620" + "679ed419-b3c0-4ece-9845-fc0d28aeb792" ], "x-ms-correlation-request-id": [ - "c2c42399-fd3e-48f3-a026-2135a69f9620" + "679ed419-b3c0-4ece-9845-fc0d28aeb792" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173018Z:c2c42399-fd3e-48f3-a026-2135a69f9620" + "JIOINDIACENTRAL:20220512T083808Z:679ed419-b3c0-4ece-9845-fc0d28aeb792" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:18 GMT" + "Thu, 12 May 2022 08:38:08 GMT" ], "Content-Length": [ "602" @@ -33966,16 +33906,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdc68270-23fb-42ed-86f5-e73cabc8ac96" + "a6821c43-c65b-456e-b4f2-83cdd7f09fb7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -33995,31 +33935,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11479" + "11945" ], "x-ms-request-id": [ - "1331acd9-93c7-42c6-aff1-296e9c0b42c5" + "57089131-d8f2-4e2a-855d-221e925d1b28" ], "x-ms-correlation-request-id": [ - "1331acd9-93c7-42c6-aff1-296e9c0b42c5" + "57089131-d8f2-4e2a-855d-221e925d1b28" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173018Z:1331acd9-93c7-42c6-aff1-296e9c0b42c5" + "JIOINDIACENTRAL:20220512T083809Z:57089131-d8f2-4e2a-855d-221e925d1b28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:18 GMT" + "Thu, 12 May 2022 08:38:08 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34029,16 +33969,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8937823-3f1a-43a0-b8e5-ca8346acb4a0" + "bd7386e9-f86c-4b89-9c39-6be165ec2fcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34058,31 +33998,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11478" + "11931" ], "x-ms-request-id": [ - "b3b540e6-9321-4ea2-9c41-fcc4c1dbecc0" + "0344ed6f-f115-4b47-80d1-01ed0d9a4db5" ], "x-ms-correlation-request-id": [ - "b3b540e6-9321-4ea2-9c41-fcc4c1dbecc0" + "0344ed6f-f115-4b47-80d1-01ed0d9a4db5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173019Z:b3b540e6-9321-4ea2-9c41-fcc4c1dbecc0" + "JIOINDIACENTRAL:20220512T083812Z:0344ed6f-f115-4b47-80d1-01ed0d9a4db5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:19 GMT" + "Thu, 12 May 2022 08:38:12 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34092,16 +34032,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10ed3955-8b3e-4411-9bd8-2e55acb2202a" + "bab26ff7-c186-4b48-8527-9ef7f12ec020" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34121,31 +34061,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11477" + "11939" ], "x-ms-request-id": [ - "edcc2b4b-78af-45c1-83e6-05714491c5d3" + "dfdc0056-5a1a-4e90-b8d7-626ec2635713" ], "x-ms-correlation-request-id": [ - "edcc2b4b-78af-45c1-83e6-05714491c5d3" + "dfdc0056-5a1a-4e90-b8d7-626ec2635713" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173019Z:edcc2b4b-78af-45c1-83e6-05714491c5d3" + "JIOINDIACENTRAL:20220512T083813Z:dfdc0056-5a1a-4e90-b8d7-626ec2635713" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:19 GMT" + "Thu, 12 May 2022 08:38:13 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34155,16 +34095,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb9b6b6c-e5a1-45cd-904e-39ec35cc17cc" + "83818d37-9ca7-4ff6-9bd2-d409f7daf5bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34184,31 +34124,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11476" + "11940" ], "x-ms-request-id": [ - "5530167d-f532-4d39-b55e-b3d268f158f6" + "da4b2221-8ef5-4ad0-b025-9dd15eea2ca3" ], "x-ms-correlation-request-id": [ - "5530167d-f532-4d39-b55e-b3d268f158f6" + "da4b2221-8ef5-4ad0-b025-9dd15eea2ca3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173019Z:5530167d-f532-4d39-b55e-b3d268f158f6" + "JIOINDIACENTRAL:20220512T083814Z:da4b2221-8ef5-4ad0-b025-9dd15eea2ca3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:19 GMT" + "Thu, 12 May 2022 08:38:13 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34218,16 +34158,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d16f4b5-a349-4306-9ed9-1b2dc55eba7d" + "244d081e-1f9e-424c-a7cb-558c8c26dc6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34247,31 +34187,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11475" + "11930" ], "x-ms-request-id": [ - "969d7f0d-ff78-4d01-8ff6-1bf708a9fc49" + "3feb4a2c-835e-407e-82ab-672d0dc26f66" ], "x-ms-correlation-request-id": [ - "969d7f0d-ff78-4d01-8ff6-1bf708a9fc49" + "3feb4a2c-835e-407e-82ab-672d0dc26f66" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173020Z:969d7f0d-ff78-4d01-8ff6-1bf708a9fc49" + "JIOINDIACENTRAL:20220512T083814Z:3feb4a2c-835e-407e-82ab-672d0dc26f66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:19 GMT" + "Thu, 12 May 2022 08:38:14 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34281,16 +34221,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f28b3637-6ca6-41f6-9a0c-a5e6d0fef686" + "73748a3a-ad71-4ceb-b08c-00e1dfe0699b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34310,31 +34250,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11474" + "11935" ], "x-ms-request-id": [ - "c5c7a7dc-c836-47e7-8f7e-f7f05431f346" + "41f54867-77b4-4ccd-a487-8feabedab2b9" ], "x-ms-correlation-request-id": [ - "c5c7a7dc-c836-47e7-8f7e-f7f05431f346" + "41f54867-77b4-4ccd-a487-8feabedab2b9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173020Z:c5c7a7dc-c836-47e7-8f7e-f7f05431f346" + "JIOINDIACENTRAL:20220512T083815Z:41f54867-77b4-4ccd-a487-8feabedab2b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:20 GMT" + "Thu, 12 May 2022 08:38:14 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34344,16 +34284,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70c0d853-75aa-4666-a9cc-50bf42e398cc" + "dc7c7b11-4637-4d68-803d-7d745df197ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34373,31 +34313,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11473" + "11934" ], "x-ms-request-id": [ - "2a3b7a82-c6a2-4f11-8707-833c4ed585c1" + "85b5780e-68fb-4cd8-8956-7bfbc5a067f6" ], "x-ms-correlation-request-id": [ - "2a3b7a82-c6a2-4f11-8707-833c4ed585c1" + "85b5780e-68fb-4cd8-8956-7bfbc5a067f6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173020Z:2a3b7a82-c6a2-4f11-8707-833c4ed585c1" + "JIOINDIACENTRAL:20220512T083816Z:85b5780e-68fb-4cd8-8956-7bfbc5a067f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:20 GMT" + "Thu, 12 May 2022 08:38:15 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34407,16 +34347,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b44357f8-954a-4c71-9bee-604f5fdf895a" + "61b262e4-d966-4649-9d4a-eb691673a771" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34436,31 +34376,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11472" + "11933" ], "x-ms-request-id": [ - "3ea320fc-9ba3-49f3-86b9-ffcb771d54c8" + "b18856de-2c4e-43bb-9181-b98848a71276" ], "x-ms-correlation-request-id": [ - "3ea320fc-9ba3-49f3-86b9-ffcb771d54c8" + "b18856de-2c4e-43bb-9181-b98848a71276" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173020Z:3ea320fc-9ba3-49f3-86b9-ffcb771d54c8" + "JIOINDIACENTRAL:20220512T083816Z:b18856de-2c4e-43bb-9181-b98848a71276" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:20 GMT" + "Thu, 12 May 2022 08:38:15 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34470,16 +34410,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fea61a1-a54a-4966-b97e-89b12115de84" + "b8b5c2bd-2417-426d-bd4c-a570a88fdc54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34499,31 +34439,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11471" + "11939" ], "x-ms-request-id": [ - "89cde9af-d230-481e-9076-e01fe6b01c51" + "ec167508-2d0a-4912-aa18-5a1fcdfd4942" ], "x-ms-correlation-request-id": [ - "89cde9af-d230-481e-9076-e01fe6b01c51" + "ec167508-2d0a-4912-aa18-5a1fcdfd4942" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173021Z:89cde9af-d230-481e-9076-e01fe6b01c51" + "JIOINDIACENTRAL:20220512T083817Z:ec167508-2d0a-4912-aa18-5a1fcdfd4942" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:20 GMT" + "Thu, 12 May 2022 08:38:17 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34533,16 +34473,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b86fcd29-f843-4e38-bc6b-e2b554e5a1ce" + "fb2ed0ec-5e9d-4e82-b0db-af43895f0f2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34562,31 +34502,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11470" + "11944" ], "x-ms-request-id": [ - "2cd2c67a-81ee-455a-8493-95388abf5817" + "481a2a19-41cc-42d0-9768-c0a467eb998e" ], "x-ms-correlation-request-id": [ - "2cd2c67a-81ee-455a-8493-95388abf5817" + "481a2a19-41cc-42d0-9768-c0a467eb998e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173021Z:2cd2c67a-81ee-455a-8493-95388abf5817" + "JIOINDIACENTRAL:20220512T083818Z:481a2a19-41cc-42d0-9768-c0a467eb998e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:21 GMT" + "Thu, 12 May 2022 08:38:17 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34596,16 +34536,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5db8fff-1d75-46c2-9d8a-6cbf52b30fb9" + "e3585a7e-c1d1-4f3a-b737-16fbced4d3ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34625,31 +34565,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11469" + "11943" ], "x-ms-request-id": [ - "5e17fb28-f82b-4e1d-bfed-f4ca6a837862" + "4cca888a-29ba-42a9-812c-45f9f8a2857f" ], "x-ms-correlation-request-id": [ - "5e17fb28-f82b-4e1d-bfed-f4ca6a837862" + "4cca888a-29ba-42a9-812c-45f9f8a2857f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173021Z:5e17fb28-f82b-4e1d-bfed-f4ca6a837862" + "JIOINDIACENTRAL:20220512T083819Z:4cca888a-29ba-42a9-812c-45f9f8a2857f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:21 GMT" + "Thu, 12 May 2022 08:38:19 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34659,16 +34599,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65205089-c245-4461-9a3c-f423de0702fb" + "60497eb4-e344-4021-89d3-b2dd05687f1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34688,31 +34628,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11468" + "11938" ], "x-ms-request-id": [ - "6340f7fd-59a7-4dda-8e6f-46c046142152" + "8f73315f-ec93-428b-a058-7cd959e2fb5e" ], "x-ms-correlation-request-id": [ - "6340f7fd-59a7-4dda-8e6f-46c046142152" + "8f73315f-ec93-428b-a058-7cd959e2fb5e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173021Z:6340f7fd-59a7-4dda-8e6f-46c046142152" + "JIOINDIACENTRAL:20220512T083819Z:8f73315f-ec93-428b-a058-7cd959e2fb5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:21 GMT" + "Thu, 12 May 2022 08:38:19 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34722,16 +34662,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "906a3c4d-bd4e-4a71-9d64-f899560c8098" + "d5224c3f-92be-4a4c-9479-340812ebec69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34751,31 +34691,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11467" + "11932" ], "x-ms-request-id": [ - "bdf5dc0e-5bb8-4b4f-9a2e-446f1b89c5c3" + "f86fcdf7-a8a6-45cb-aea1-fd2fe0cfec0f" ], "x-ms-correlation-request-id": [ - "bdf5dc0e-5bb8-4b4f-9a2e-446f1b89c5c3" + "f86fcdf7-a8a6-45cb-aea1-fd2fe0cfec0f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173022Z:bdf5dc0e-5bb8-4b4f-9a2e-446f1b89c5c3" + "JIOINDIACENTRAL:20220512T083820Z:f86fcdf7-a8a6-45cb-aea1-fd2fe0cfec0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:21 GMT" + "Thu, 12 May 2022 08:38:19 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34785,16 +34725,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b02894f4-d06e-4232-aa40-a259f1484377" + "fd49e66d-b0d8-424b-8879-0fda3e41ddc7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34814,31 +34754,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11466" + "11948" ], "x-ms-request-id": [ - "e378a9b8-10d2-4cb1-908a-4b64c37e0b1d" + "c6777d1e-dd7a-455c-8e8d-aac7c095963d" ], "x-ms-correlation-request-id": [ - "e378a9b8-10d2-4cb1-908a-4b64c37e0b1d" + "c6777d1e-dd7a-455c-8e8d-aac7c095963d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173022Z:e378a9b8-10d2-4cb1-908a-4b64c37e0b1d" + "JIOINDIACENTRAL:20220512T083821Z:c6777d1e-dd7a-455c-8e8d-aac7c095963d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:22 GMT" + "Thu, 12 May 2022 08:38:21 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34848,16 +34788,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ff7d42c-37ee-4e21-a5ef-d1f9de7887e7" + "8c02caf1-5ff7-4fb6-936e-52db0407ff2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34877,31 +34817,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11465" + "11929" ], "x-ms-request-id": [ - "5cf80559-9bce-4578-abad-e2fa43f98675" + "efdeadfc-2ca1-4ec8-8f9a-4d827fb1521a" ], "x-ms-correlation-request-id": [ - "5cf80559-9bce-4578-abad-e2fa43f98675" + "efdeadfc-2ca1-4ec8-8f9a-4d827fb1521a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173022Z:5cf80559-9bce-4578-abad-e2fa43f98675" + "JIOINDIACENTRAL:20220512T083822Z:efdeadfc-2ca1-4ec8-8f9a-4d827fb1521a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:22 GMT" + "Thu, 12 May 2022 08:38:21 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34911,16 +34851,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ef38934-6fed-43b7-8f2c-20aa4acc7a61" + "3377edad-6d8d-40b8-acba-f9376ca36ac2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -34940,31 +34880,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11464" + "11928" ], "x-ms-request-id": [ - "9529487d-ab6d-4805-90c9-1911f50ff8d1" + "b1e36d85-2799-477f-8d07-0380dfdc7b6f" ], "x-ms-correlation-request-id": [ - "9529487d-ab6d-4805-90c9-1911f50ff8d1" + "b1e36d85-2799-477f-8d07-0380dfdc7b6f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173023Z:9529487d-ab6d-4805-90c9-1911f50ff8d1" + "JIOINDIACENTRAL:20220512T083822Z:b1e36d85-2799-477f-8d07-0380dfdc7b6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:22 GMT" + "Thu, 12 May 2022 08:38:21 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34974,16 +34914,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdc7dba-4c22-4b04-bfb3-c49f693383d9" + "daf39850-9c02-4950-ac68-3d8ea2aa9d44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -35003,31 +34943,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11463" + "11931" ], "x-ms-request-id": [ - "ff0674b1-ce28-4c28-af10-31357a36d988" + "16ac5e6f-d92a-4057-8152-04d2678a2496" ], "x-ms-correlation-request-id": [ - "ff0674b1-ce28-4c28-af10-31357a36d988" + "16ac5e6f-d92a-4057-8152-04d2678a2496" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173023Z:ff0674b1-ce28-4c28-af10-31357a36d988" + "JIOINDIACENTRAL:20220512T083823Z:16ac5e6f-d92a-4057-8152-04d2678a2496" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:22 GMT" + "Thu, 12 May 2022 08:38:22 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35037,16 +34977,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f31c7ad0-6523-45e1-8390-57981e37271c" + "d8123864-0e98-4e86-a4af-20d2732c31cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -35066,31 +35006,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11462" + "11942" ], "x-ms-request-id": [ - "37dfb3e6-e8a1-4867-90e6-127be0f7e836" + "1394a197-a685-478b-b87e-9290a0beb871" ], "x-ms-correlation-request-id": [ - "37dfb3e6-e8a1-4867-90e6-127be0f7e836" + "1394a197-a685-478b-b87e-9290a0beb871" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173023Z:37dfb3e6-e8a1-4867-90e6-127be0f7e836" + "JIOINDIACENTRAL:20220512T083824Z:1394a197-a685-478b-b87e-9290a0beb871" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:23 GMT" + "Thu, 12 May 2022 08:38:23 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35100,16 +35040,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "468d6a54-37e0-47d6-afb8-6c1a2396bb5b" + "daa0a68f-a121-4150-886e-b23b74528510" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -35129,31 +35069,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11461" + "11941" ], "x-ms-request-id": [ - "d46256d3-b68b-4952-93bc-a7a550d954b9" + "47d31258-33f0-46ee-9a97-d07f6a155fc8" ], "x-ms-correlation-request-id": [ - "d46256d3-b68b-4952-93bc-a7a550d954b9" + "47d31258-33f0-46ee-9a97-d07f6a155fc8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173023Z:d46256d3-b68b-4952-93bc-a7a550d954b9" + "JIOINDIACENTRAL:20220512T083824Z:47d31258-33f0-46ee-9a97-d07f6a155fc8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:23 GMT" + "Thu, 12 May 2022 08:38:24 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35163,16 +35103,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad54fa6f-94e4-43f1-97ba-c29394a20db4" + "21cd1540-9dfa-44ec-b921-52304e1adc43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -35192,31 +35132,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11460" + "11947" ], "x-ms-request-id": [ - "a98dacf5-31b1-462b-835c-b74ebab79ebd" + "1d3d5afa-40b4-44b5-a147-3b819fc5d8e3" ], "x-ms-correlation-request-id": [ - "a98dacf5-31b1-462b-835c-b74ebab79ebd" + "1d3d5afa-40b4-44b5-a147-3b819fc5d8e3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173024Z:a98dacf5-31b1-462b-835c-b74ebab79ebd" + "JIOINDIACENTRAL:20220512T083825Z:1d3d5afa-40b4-44b5-a147-3b819fc5d8e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:23 GMT" + "Thu, 12 May 2022 08:38:25 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35226,16 +35166,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40afcb1b-3583-44f4-a003-4776ecce231e" + "013d4b3e-1f8a-40b8-97f3-4354405b5ea7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -35255,31 +35195,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11459" + "11940" ], "x-ms-request-id": [ - "52f24378-c1c8-4a63-918f-b6cdddf86b6e" + "b385f8fe-b0b8-40d4-852c-6498b7d28d8e" ], "x-ms-correlation-request-id": [ - "52f24378-c1c8-4a63-918f-b6cdddf86b6e" + "b385f8fe-b0b8-40d4-852c-6498b7d28d8e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173024Z:52f24378-c1c8-4a63-918f-b6cdddf86b6e" + "JIOINDIACENTRAL:20220512T083826Z:b385f8fe-b0b8-40d4-852c-6498b7d28d8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:23 GMT" + "Thu, 12 May 2022 08:38:25 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35289,16 +35229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b35cc43c-b4a8-444f-a7d9-0763dbaa69f4" + "9b47f561-ea5a-4a3a-bd2a-916c9c9cfd4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -35318,31 +35258,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11458" + "11937" ], "x-ms-request-id": [ - "4e51f985-b85b-49d6-8130-a7eda54c949b" + "84fccfdb-7bb9-428c-8af0-f0644147295b" ], "x-ms-correlation-request-id": [ - "4e51f985-b85b-49d6-8130-a7eda54c949b" + "84fccfdb-7bb9-428c-8af0-f0644147295b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173024Z:4e51f985-b85b-49d6-8130-a7eda54c949b" + "JIOINDIACENTRAL:20220512T083826Z:84fccfdb-7bb9-428c-8af0-f0644147295b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:30:24 GMT" + "Thu, 12 May 2022 08:38:26 GMT" ], "Content-Length": [ - "602" + "603" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35352,16 +35292,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "306ae33e-56be-4c96-89e1-ccbacd9967ce" + "ad5a395e-27e9-4a82-9ec6-d7dfd9b55cc7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -35381,72661 +35321,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11457" - ], - "x-ms-request-id": [ - "c94dd80c-f28d-4417-b83d-7715732b5158" - ], - "x-ms-correlation-request-id": [ - "c94dd80c-f28d-4417-b83d-7715732b5158" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173024Z:c94dd80c-f28d-4417-b83d-7715732b5158" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d1db3f5f-e53c-4927-811d-63576a9ce5d3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11456" - ], - "x-ms-request-id": [ - "48ad4771-b98f-47a4-bec0-e73de9993661" - ], - "x-ms-correlation-request-id": [ - "48ad4771-b98f-47a4-bec0-e73de9993661" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173025Z:48ad4771-b98f-47a4-bec0-e73de9993661" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d6dd9a6-c537-4534-b2ee-4aa47ca24df3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11455" - ], - "x-ms-request-id": [ - "9d3baba5-4344-462d-a387-f51beed49521" - ], - "x-ms-correlation-request-id": [ - "9d3baba5-4344-462d-a387-f51beed49521" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173025Z:9d3baba5-4344-462d-a387-f51beed49521" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49c2b846-40b7-40fb-9a65-75290592957e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11454" - ], - "x-ms-request-id": [ - "f08f36be-22e4-4dff-96b3-eaf9703cc4ce" - ], - "x-ms-correlation-request-id": [ - "f08f36be-22e4-4dff-96b3-eaf9703cc4ce" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173025Z:f08f36be-22e4-4dff-96b3-eaf9703cc4ce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "968ed8fc-a640-4984-8a14-79d07b872edd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11453" - ], - "x-ms-request-id": [ - "ee0efe24-ee29-40e2-ac5f-c28e3c81596a" - ], - "x-ms-correlation-request-id": [ - "ee0efe24-ee29-40e2-ac5f-c28e3c81596a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173025Z:ee0efe24-ee29-40e2-ac5f-c28e3c81596a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9db2ab84-6f67-48f8-9cb1-975b1275c96a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11452" - ], - "x-ms-request-id": [ - "0c1c36d6-0f17-4fac-877b-b20bd6bff557" - ], - "x-ms-correlation-request-id": [ - "0c1c36d6-0f17-4fac-877b-b20bd6bff557" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173026Z:0c1c36d6-0f17-4fac-877b-b20bd6bff557" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "61c33306-75c7-48b5-9e30-e3774419946a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11451" - ], - "x-ms-request-id": [ - "7ccf6f7a-b03c-4c8a-aeda-1840de521f38" - ], - "x-ms-correlation-request-id": [ - "7ccf6f7a-b03c-4c8a-aeda-1840de521f38" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173026Z:7ccf6f7a-b03c-4c8a-aeda-1840de521f38" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b91f0751-04c7-47dc-97d0-c28fd7e2e031" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11450" - ], - "x-ms-request-id": [ - "5dba11ef-9208-4a66-9a69-e547fe7b6a83" - ], - "x-ms-correlation-request-id": [ - "5dba11ef-9208-4a66-9a69-e547fe7b6a83" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173026Z:5dba11ef-9208-4a66-9a69-e547fe7b6a83" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7446f432-4010-4195-ad22-897213ce5322" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11449" - ], - "x-ms-request-id": [ - "ac017d53-640c-44e7-a800-3ab54dbdfe2e" - ], - "x-ms-correlation-request-id": [ - "ac017d53-640c-44e7-a800-3ab54dbdfe2e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173027Z:ac017d53-640c-44e7-a800-3ab54dbdfe2e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b515df3f-4268-4b7c-bb3c-c21319645c44" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11448" - ], - "x-ms-request-id": [ - "7d222fac-5c20-4628-bca7-d8d240da5fe6" - ], - "x-ms-correlation-request-id": [ - "7d222fac-5c20-4628-bca7-d8d240da5fe6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173027Z:7d222fac-5c20-4628-bca7-d8d240da5fe6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a693c79a-c5b1-4f1c-b38f-1c9693de54e7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11447" - ], - "x-ms-request-id": [ - "2bb8cb58-af6e-4869-977f-34488224bcef" - ], - "x-ms-correlation-request-id": [ - "2bb8cb58-af6e-4869-977f-34488224bcef" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173027Z:2bb8cb58-af6e-4869-977f-34488224bcef" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3600b2ad-ddb9-4b26-8dbc-51327eae8e7a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11446" - ], - "x-ms-request-id": [ - "865f0add-3564-49f9-a25a-6da0916f3097" - ], - "x-ms-correlation-request-id": [ - "865f0add-3564-49f9-a25a-6da0916f3097" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173027Z:865f0add-3564-49f9-a25a-6da0916f3097" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f3b322c4-a183-4ca2-b2e5-bdc8ee5f3c96" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11445" - ], - "x-ms-request-id": [ - "0fee08c2-36a3-4950-a0e0-0975d7bfd5a3" - ], - "x-ms-correlation-request-id": [ - "0fee08c2-36a3-4950-a0e0-0975d7bfd5a3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173028Z:0fee08c2-36a3-4950-a0e0-0975d7bfd5a3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fc3f3a5a-bfa2-4472-aaf8-76afa25a8272" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11444" - ], - "x-ms-request-id": [ - "54f1f9a5-3097-4829-95cd-6f7c776a9fb8" - ], - "x-ms-correlation-request-id": [ - "54f1f9a5-3097-4829-95cd-6f7c776a9fb8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173028Z:54f1f9a5-3097-4829-95cd-6f7c776a9fb8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "79e17241-9845-4e43-9f45-96d99381a452" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11443" - ], - "x-ms-request-id": [ - "a1eb251c-d0e6-4c1f-a628-5c20171db46a" - ], - "x-ms-correlation-request-id": [ - "a1eb251c-d0e6-4c1f-a628-5c20171db46a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173028Z:a1eb251c-d0e6-4c1f-a628-5c20171db46a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cf2ce0fb-71b7-45c9-a773-f5d3910c431c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11442" - ], - "x-ms-request-id": [ - "86d36d11-c20a-4d99-86d6-32fc0cc9505f" - ], - "x-ms-correlation-request-id": [ - "86d36d11-c20a-4d99-86d6-32fc0cc9505f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173028Z:86d36d11-c20a-4d99-86d6-32fc0cc9505f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "67863fc4-2d89-4e60-bdd4-102a905021d6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11441" - ], - "x-ms-request-id": [ - "71ead9ff-db59-4d3f-bf29-a37de93c0fc1" - ], - "x-ms-correlation-request-id": [ - "71ead9ff-db59-4d3f-bf29-a37de93c0fc1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173029Z:71ead9ff-db59-4d3f-bf29-a37de93c0fc1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4e6b2545-ceff-403a-91ec-105abd73d91e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11440" - ], - "x-ms-request-id": [ - "9362a655-656d-4096-9640-6a0c4ef3af44" - ], - "x-ms-correlation-request-id": [ - "9362a655-656d-4096-9640-6a0c4ef3af44" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173029Z:9362a655-656d-4096-9640-6a0c4ef3af44" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dae1f2ee-f05b-4c38-aa80-d5042e8ceb79" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11439" - ], - "x-ms-request-id": [ - "35cd7597-2133-4d6b-8550-58994096868f" - ], - "x-ms-correlation-request-id": [ - "35cd7597-2133-4d6b-8550-58994096868f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173029Z:35cd7597-2133-4d6b-8550-58994096868f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49586393-991e-4b23-9909-4272bc24e18c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11438" - ], - "x-ms-request-id": [ - "672ce628-955b-4ee6-ad29-e4d4296bf232" - ], - "x-ms-correlation-request-id": [ - "672ce628-955b-4ee6-ad29-e4d4296bf232" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173030Z:672ce628-955b-4ee6-ad29-e4d4296bf232" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e0da6a28-3bfd-4a4b-ac8e-ad0101f05799" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11437" - ], - "x-ms-request-id": [ - "03498a83-f825-444c-acaa-6ff7d96dbf78" - ], - "x-ms-correlation-request-id": [ - "03498a83-f825-444c-acaa-6ff7d96dbf78" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173030Z:03498a83-f825-444c-acaa-6ff7d96dbf78" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1f42556d-f3bd-4e5e-945e-0f561bdde49f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11436" - ], - "x-ms-request-id": [ - "e7cb756d-e3b3-4ebd-8784-0a17c63006f1" - ], - "x-ms-correlation-request-id": [ - "e7cb756d-e3b3-4ebd-8784-0a17c63006f1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173030Z:e7cb756d-e3b3-4ebd-8784-0a17c63006f1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a40931f1-97f5-41a8-82f6-98d90a628390" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11435" - ], - "x-ms-request-id": [ - "ce896de5-fdef-4352-9329-df5a7763c0f3" - ], - "x-ms-correlation-request-id": [ - "ce896de5-fdef-4352-9329-df5a7763c0f3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173030Z:ce896de5-fdef-4352-9329-df5a7763c0f3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ceaecf0-0f4c-48b3-b19e-5d97dfa90dd6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11434" - ], - "x-ms-request-id": [ - "9df9507b-8ee7-43b3-bbab-9eaa35a05fb8" - ], - "x-ms-correlation-request-id": [ - "9df9507b-8ee7-43b3-bbab-9eaa35a05fb8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173031Z:9df9507b-8ee7-43b3-bbab-9eaa35a05fb8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6c886644-76f4-4954-a919-c6bd86ca71a7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11433" - ], - "x-ms-request-id": [ - "dda6b112-cef1-4dfc-8d89-566861854661" - ], - "x-ms-correlation-request-id": [ - "dda6b112-cef1-4dfc-8d89-566861854661" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173031Z:dda6b112-cef1-4dfc-8d89-566861854661" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "988674ee-2a5a-4952-8555-74080e40a3e3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11432" - ], - "x-ms-request-id": [ - "fb35d773-5ba9-4b54-abbf-730eadd3f3c7" - ], - "x-ms-correlation-request-id": [ - "fb35d773-5ba9-4b54-abbf-730eadd3f3c7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173031Z:fb35d773-5ba9-4b54-abbf-730eadd3f3c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2f4f37d0-afe4-4a03-b3c8-56780277ff19" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11431" - ], - "x-ms-request-id": [ - "299f1fa4-6315-49f9-834d-37e69df837fe" - ], - "x-ms-correlation-request-id": [ - "299f1fa4-6315-49f9-834d-37e69df837fe" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173031Z:299f1fa4-6315-49f9-834d-37e69df837fe" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "554ed75d-b4f5-49e9-89d4-6aa7de829120" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11430" - ], - "x-ms-request-id": [ - "8e36350c-33e7-4e65-9f3e-985e53687086" - ], - "x-ms-correlation-request-id": [ - "8e36350c-33e7-4e65-9f3e-985e53687086" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173032Z:8e36350c-33e7-4e65-9f3e-985e53687086" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a81ea059-56ea-4478-9734-3a7a3aeb16f7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11429" - ], - "x-ms-request-id": [ - "b4e45971-b02c-4c59-8d3b-6da28459eaa4" - ], - "x-ms-correlation-request-id": [ - "b4e45971-b02c-4c59-8d3b-6da28459eaa4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173032Z:b4e45971-b02c-4c59-8d3b-6da28459eaa4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a84cf757-0a1f-4eb6-83a6-5d4d0050aa5b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11428" - ], - "x-ms-request-id": [ - "d2f9881b-a97d-4a3d-8a1d-7620fc805f52" - ], - "x-ms-correlation-request-id": [ - "d2f9881b-a97d-4a3d-8a1d-7620fc805f52" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173032Z:d2f9881b-a97d-4a3d-8a1d-7620fc805f52" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3555fdf7-ca73-4005-bb7e-69c1c396949a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11427" - ], - "x-ms-request-id": [ - "312db37b-86a2-4ad2-9a5a-6a813851dfbd" - ], - "x-ms-correlation-request-id": [ - "312db37b-86a2-4ad2-9a5a-6a813851dfbd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173033Z:312db37b-86a2-4ad2-9a5a-6a813851dfbd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4aee5705-9037-4554-a6d1-74ac265ade29" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11426" - ], - "x-ms-request-id": [ - "fc0385fd-42eb-4839-b48e-40196e8e68fd" - ], - "x-ms-correlation-request-id": [ - "fc0385fd-42eb-4839-b48e-40196e8e68fd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173033Z:fc0385fd-42eb-4839-b48e-40196e8e68fd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "39130659-15df-4910-8008-7cc2897aa3ba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11425" - ], - "x-ms-request-id": [ - "96ab7c0b-396a-4edd-94fc-50c4d8a48637" - ], - "x-ms-correlation-request-id": [ - "96ab7c0b-396a-4edd-94fc-50c4d8a48637" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173033Z:96ab7c0b-396a-4edd-94fc-50c4d8a48637" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d6ab5ee-ac54-4b08-9362-12bc0819915d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11424" - ], - "x-ms-request-id": [ - "8e33e3c8-8e12-4bd9-95f6-a6c3437f13a8" - ], - "x-ms-correlation-request-id": [ - "8e33e3c8-8e12-4bd9-95f6-a6c3437f13a8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173033Z:8e33e3c8-8e12-4bd9-95f6-a6c3437f13a8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cd96e574-7414-4e55-a42a-b693c87b3f13" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11423" - ], - "x-ms-request-id": [ - "2b9aba48-430b-41fa-82f6-fa19e344a129" - ], - "x-ms-correlation-request-id": [ - "2b9aba48-430b-41fa-82f6-fa19e344a129" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173034Z:2b9aba48-430b-41fa-82f6-fa19e344a129" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b28caacf-e203-4666-b23c-fdaf4920c2f7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11422" - ], - "x-ms-request-id": [ - "46b77972-24ba-460f-922d-d1ebbdab9809" - ], - "x-ms-correlation-request-id": [ - "46b77972-24ba-460f-922d-d1ebbdab9809" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173034Z:46b77972-24ba-460f-922d-d1ebbdab9809" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7bc9f331-31f2-4d10-9f80-319e71dc5d1d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11421" - ], - "x-ms-request-id": [ - "59235ba2-4abe-49d9-9276-632ffe9ce927" - ], - "x-ms-correlation-request-id": [ - "59235ba2-4abe-49d9-9276-632ffe9ce927" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173034Z:59235ba2-4abe-49d9-9276-632ffe9ce927" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba779986-fa82-4f53-a341-bda3222a805b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11420" - ], - "x-ms-request-id": [ - "ba49d1e9-a354-439f-b889-864a65ad7c89" - ], - "x-ms-correlation-request-id": [ - "ba49d1e9-a354-439f-b889-864a65ad7c89" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173034Z:ba49d1e9-a354-439f-b889-864a65ad7c89" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e667ead2-137e-4a86-b67a-fc3771ef96b2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11419" - ], - "x-ms-request-id": [ - "1f7a1cdf-099e-4cf3-9513-b3af197d719d" - ], - "x-ms-correlation-request-id": [ - "1f7a1cdf-099e-4cf3-9513-b3af197d719d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173035Z:1f7a1cdf-099e-4cf3-9513-b3af197d719d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c051c0a2-f4d1-4782-8d39-0cced51be2ef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11418" - ], - "x-ms-request-id": [ - "cf6df1d2-a805-4880-8398-616ec276ee0e" - ], - "x-ms-correlation-request-id": [ - "cf6df1d2-a805-4880-8398-616ec276ee0e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173035Z:cf6df1d2-a805-4880-8398-616ec276ee0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffeaf256-23ea-4469-a0bb-184d98d4847e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11417" - ], - "x-ms-request-id": [ - "51870f41-fa4e-44d6-b99f-a7efd31acc3f" - ], - "x-ms-correlation-request-id": [ - "51870f41-fa4e-44d6-b99f-a7efd31acc3f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173035Z:51870f41-fa4e-44d6-b99f-a7efd31acc3f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2955057a-4c85-40cd-a2dd-34216faa4ce4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11416" - ], - "x-ms-request-id": [ - "a560c408-dded-4d0f-a013-0aefa537f0f0" - ], - "x-ms-correlation-request-id": [ - "a560c408-dded-4d0f-a013-0aefa537f0f0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173035Z:a560c408-dded-4d0f-a013-0aefa537f0f0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d7822ae8-3ae0-4e2b-9a3b-24534bd5b6ef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11415" - ], - "x-ms-request-id": [ - "85b51e1e-5d3c-4f97-99d0-de020276d95d" - ], - "x-ms-correlation-request-id": [ - "85b51e1e-5d3c-4f97-99d0-de020276d95d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173036Z:85b51e1e-5d3c-4f97-99d0-de020276d95d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d6550b07-41d4-4fcb-a2fa-7f4e2400cb4e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11414" - ], - "x-ms-request-id": [ - "9fd3f2ed-ab79-4ba2-a927-792421444081" - ], - "x-ms-correlation-request-id": [ - "9fd3f2ed-ab79-4ba2-a927-792421444081" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173036Z:9fd3f2ed-ab79-4ba2-a927-792421444081" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3e3b412d-0f09-46d2-af92-893324587140" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11413" - ], - "x-ms-request-id": [ - "0586b1e8-7cb2-4bed-8e49-aa56c6468780" - ], - "x-ms-correlation-request-id": [ - "0586b1e8-7cb2-4bed-8e49-aa56c6468780" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173036Z:0586b1e8-7cb2-4bed-8e49-aa56c6468780" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c6d9ad9-12a0-4677-8e92-88468e87729c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11412" - ], - "x-ms-request-id": [ - "789dd0e0-61bc-48ff-9907-5e9b1503bc1f" - ], - "x-ms-correlation-request-id": [ - "789dd0e0-61bc-48ff-9907-5e9b1503bc1f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173037Z:789dd0e0-61bc-48ff-9907-5e9b1503bc1f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "05ac41ce-868c-4128-9881-cf9d77ad8e9a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11411" - ], - "x-ms-request-id": [ - "f7ab1d94-6145-4f7a-b4d8-380f1c19a2ec" - ], - "x-ms-correlation-request-id": [ - "f7ab1d94-6145-4f7a-b4d8-380f1c19a2ec" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173037Z:f7ab1d94-6145-4f7a-b4d8-380f1c19a2ec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd0bd468-0ad8-49c9-8eca-37bc53bf3598" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11410" - ], - "x-ms-request-id": [ - "cf40860a-33bf-4424-ad2a-22ad5dd88fab" - ], - "x-ms-correlation-request-id": [ - "cf40860a-33bf-4424-ad2a-22ad5dd88fab" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173037Z:cf40860a-33bf-4424-ad2a-22ad5dd88fab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f390d870-3f9c-4c63-ab42-ba463b165764" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11409" - ], - "x-ms-request-id": [ - "9e7a0244-60c9-4bf2-9963-389b4d508aae" - ], - "x-ms-correlation-request-id": [ - "9e7a0244-60c9-4bf2-9963-389b4d508aae" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173037Z:9e7a0244-60c9-4bf2-9963-389b4d508aae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "350aa481-c9c3-49a8-b174-cd0fc54ec4d8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11408" - ], - "x-ms-request-id": [ - "79962c73-a12c-4d1a-abe3-e069112a525b" - ], - "x-ms-correlation-request-id": [ - "79962c73-a12c-4d1a-abe3-e069112a525b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173038Z:79962c73-a12c-4d1a-abe3-e069112a525b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "521628f7-3bfc-4eec-9eb6-33b720ae7ed4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11407" - ], - "x-ms-request-id": [ - "cc9c2ecb-5e51-4963-a783-9e39b9eb44c7" - ], - "x-ms-correlation-request-id": [ - "cc9c2ecb-5e51-4963-a783-9e39b9eb44c7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173038Z:cc9c2ecb-5e51-4963-a783-9e39b9eb44c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e22650a-da27-4ef0-8313-3a4dc871b301" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11406" - ], - "x-ms-request-id": [ - "5e84d5f9-cac0-44dc-bfff-30b4b24474ed" - ], - "x-ms-correlation-request-id": [ - "5e84d5f9-cac0-44dc-bfff-30b4b24474ed" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173039Z:5e84d5f9-cac0-44dc-bfff-30b4b24474ed" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b59927fd-7d21-448c-a32d-75e29eda5ed4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11405" - ], - "x-ms-request-id": [ - "5bd2b6d8-8d83-44b3-9561-3b56654aa991" - ], - "x-ms-correlation-request-id": [ - "5bd2b6d8-8d83-44b3-9561-3b56654aa991" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173039Z:5bd2b6d8-8d83-44b3-9561-3b56654aa991" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "329d499e-418b-4dc8-a602-60bb7a49e8f8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11404" - ], - "x-ms-request-id": [ - "e61c2474-7635-4015-befb-3b0801654496" - ], - "x-ms-correlation-request-id": [ - "e61c2474-7635-4015-befb-3b0801654496" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173039Z:e61c2474-7635-4015-befb-3b0801654496" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "36f0a960-1918-408c-8dd7-993ece35ed96" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11403" - ], - "x-ms-request-id": [ - "24f14326-aad2-44de-9b16-0db99f0461eb" - ], - "x-ms-correlation-request-id": [ - "24f14326-aad2-44de-9b16-0db99f0461eb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173039Z:24f14326-aad2-44de-9b16-0db99f0461eb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1c90604-75a7-4a73-9b0c-a1544f646a06" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11402" - ], - "x-ms-request-id": [ - "d8596718-809f-436b-ad90-30c5d2572cdb" - ], - "x-ms-correlation-request-id": [ - "d8596718-809f-436b-ad90-30c5d2572cdb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173040Z:d8596718-809f-436b-ad90-30c5d2572cdb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bebcd0ce-f283-4101-a3c0-62950951b763" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11401" - ], - "x-ms-request-id": [ - "e80e20cc-b1b3-4063-a9a1-dcd9f2763ea4" - ], - "x-ms-correlation-request-id": [ - "e80e20cc-b1b3-4063-a9a1-dcd9f2763ea4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173040Z:e80e20cc-b1b3-4063-a9a1-dcd9f2763ea4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "870464aa-a1fc-4133-9474-0256dbcbfb95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11400" - ], - "x-ms-request-id": [ - "4a21036c-e6c2-4a6d-92a6-919f0d7a3345" - ], - "x-ms-correlation-request-id": [ - "4a21036c-e6c2-4a6d-92a6-919f0d7a3345" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173040Z:4a21036c-e6c2-4a6d-92a6-919f0d7a3345" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a2c9ab89-cc80-413a-8b2e-1f60dd88667a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11399" - ], - "x-ms-request-id": [ - "4f4da2f2-6443-4f27-8f3e-07cf6bb4e222" - ], - "x-ms-correlation-request-id": [ - "4f4da2f2-6443-4f27-8f3e-07cf6bb4e222" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173040Z:4f4da2f2-6443-4f27-8f3e-07cf6bb4e222" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "826733ed-755b-492e-86d3-9f9e7fbfa3ca" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11398" - ], - "x-ms-request-id": [ - "32e23c64-f84f-48f1-af76-745acbf56a05" - ], - "x-ms-correlation-request-id": [ - "32e23c64-f84f-48f1-af76-745acbf56a05" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173041Z:32e23c64-f84f-48f1-af76-745acbf56a05" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d25d709c-e0ab-477f-8e8e-a51add166b4a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11397" - ], - "x-ms-request-id": [ - "5733befc-98fc-4077-961f-454dae9c8671" - ], - "x-ms-correlation-request-id": [ - "5733befc-98fc-4077-961f-454dae9c8671" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173041Z:5733befc-98fc-4077-961f-454dae9c8671" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "36ece356-e34d-4aa6-b518-776a0747ca0b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11396" - ], - "x-ms-request-id": [ - "d085383b-5d47-41f3-a31a-d58ed21938af" - ], - "x-ms-correlation-request-id": [ - "d085383b-5d47-41f3-a31a-d58ed21938af" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173041Z:d085383b-5d47-41f3-a31a-d58ed21938af" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ec675f87-e7a3-4a9c-8256-593a68486c99" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11395" - ], - "x-ms-request-id": [ - "9eef4af8-c0c9-4e02-8d1d-4a84f622e610" - ], - "x-ms-correlation-request-id": [ - "9eef4af8-c0c9-4e02-8d1d-4a84f622e610" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173042Z:9eef4af8-c0c9-4e02-8d1d-4a84f622e610" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eb6ea810-57d9-4bc8-8fdf-71212c4e5c0f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11394" - ], - "x-ms-request-id": [ - "a2c2203c-c179-4342-a2e4-3b61804de30e" - ], - "x-ms-correlation-request-id": [ - "a2c2203c-c179-4342-a2e4-3b61804de30e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173042Z:a2c2203c-c179-4342-a2e4-3b61804de30e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7272d643-bfe6-4f4d-8dc5-c26b99a856f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11393" - ], - "x-ms-request-id": [ - "282710fe-7922-4537-a5e4-836f28f76492" - ], - "x-ms-correlation-request-id": [ - "282710fe-7922-4537-a5e4-836f28f76492" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173042Z:282710fe-7922-4537-a5e4-836f28f76492" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52039459-2e63-4321-945d-fee741c2a4db" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11392" - ], - "x-ms-request-id": [ - "a963b58c-cf30-43a9-ae00-3eb641be8a17" - ], - "x-ms-correlation-request-id": [ - "a963b58c-cf30-43a9-ae00-3eb641be8a17" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173042Z:a963b58c-cf30-43a9-ae00-3eb641be8a17" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e37fd8b0-1f4e-449d-9424-e6c194a091b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11391" - ], - "x-ms-request-id": [ - "311101e3-0839-44be-b4a0-2245c6266785" - ], - "x-ms-correlation-request-id": [ - "311101e3-0839-44be-b4a0-2245c6266785" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173043Z:311101e3-0839-44be-b4a0-2245c6266785" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31dbc5fd-0fba-4015-a529-04082b1b6215" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11390" - ], - "x-ms-request-id": [ - "4d8b64a9-0d8a-48ce-a0d1-a46852594aa8" - ], - "x-ms-correlation-request-id": [ - "4d8b64a9-0d8a-48ce-a0d1-a46852594aa8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173043Z:4d8b64a9-0d8a-48ce-a0d1-a46852594aa8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d3e167ac-f734-4418-80be-5635b2cffdbe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11389" - ], - "x-ms-request-id": [ - "80ed4231-bc4e-440a-8a36-600f4bfee024" - ], - "x-ms-correlation-request-id": [ - "80ed4231-bc4e-440a-8a36-600f4bfee024" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173043Z:80ed4231-bc4e-440a-8a36-600f4bfee024" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a45d1530-a723-40ae-9207-f22919c754aa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11388" - ], - "x-ms-request-id": [ - "3d1d39e9-a109-4474-9cbc-f73be75ae39a" - ], - "x-ms-correlation-request-id": [ - "3d1d39e9-a109-4474-9cbc-f73be75ae39a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173044Z:3d1d39e9-a109-4474-9cbc-f73be75ae39a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33f3d502-97e6-4556-bb62-94257ccb8a5a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11387" - ], - "x-ms-request-id": [ - "5c356b95-35a4-4ce4-ac5c-1b780658e7a3" - ], - "x-ms-correlation-request-id": [ - "5c356b95-35a4-4ce4-ac5c-1b780658e7a3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173044Z:5c356b95-35a4-4ce4-ac5c-1b780658e7a3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1053e932-20d8-4835-86a4-b070f7b56eea" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11386" - ], - "x-ms-request-id": [ - "2c04e149-9852-4f0f-a167-c7f7d416e228" - ], - "x-ms-correlation-request-id": [ - "2c04e149-9852-4f0f-a167-c7f7d416e228" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173044Z:2c04e149-9852-4f0f-a167-c7f7d416e228" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "710ee596-1777-4a15-a2db-395a52fe71ad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11385" - ], - "x-ms-request-id": [ - "d586ad72-d18e-4835-8bc7-efc3f8018088" - ], - "x-ms-correlation-request-id": [ - "d586ad72-d18e-4835-8bc7-efc3f8018088" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173044Z:d586ad72-d18e-4835-8bc7-efc3f8018088" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1b41b654-aa0e-40bb-81e7-909f34d707af" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11384" - ], - "x-ms-request-id": [ - "a7bbf5e4-9b39-4c8b-920f-ef8fd8f3e754" - ], - "x-ms-correlation-request-id": [ - "a7bbf5e4-9b39-4c8b-920f-ef8fd8f3e754" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173045Z:a7bbf5e4-9b39-4c8b-920f-ef8fd8f3e754" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "74ec9fad-3139-4f01-9b82-571baa22f78c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11383" - ], - "x-ms-request-id": [ - "b1518735-9ab5-4dde-beb0-26c7dfe0de41" - ], - "x-ms-correlation-request-id": [ - "b1518735-9ab5-4dde-beb0-26c7dfe0de41" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173045Z:b1518735-9ab5-4dde-beb0-26c7dfe0de41" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e96ac7e4-3e63-4122-9107-db8a31b131fc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11382" - ], - "x-ms-request-id": [ - "9b575b7d-e7fd-42c5-b5c3-b0118aaa4bce" - ], - "x-ms-correlation-request-id": [ - "9b575b7d-e7fd-42c5-b5c3-b0118aaa4bce" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173045Z:9b575b7d-e7fd-42c5-b5c3-b0118aaa4bce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fe031a0a-c902-4ae4-860b-1dc7eacdbf36" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11381" - ], - "x-ms-request-id": [ - "63504023-eb2c-4931-a66f-df2d7162e733" - ], - "x-ms-correlation-request-id": [ - "63504023-eb2c-4931-a66f-df2d7162e733" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173045Z:63504023-eb2c-4931-a66f-df2d7162e733" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "22176445-783f-4e33-a1df-3d6cf94b36d4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11380" - ], - "x-ms-request-id": [ - "ea5e7d84-ee9e-4c65-bb99-cee94e2b4338" - ], - "x-ms-correlation-request-id": [ - "ea5e7d84-ee9e-4c65-bb99-cee94e2b4338" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173046Z:ea5e7d84-ee9e-4c65-bb99-cee94e2b4338" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c8c491a-3faf-4cc9-a41c-450c14290a41" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11379" - ], - "x-ms-request-id": [ - "edba1f36-9e38-4dc1-b551-7cb638dd0d75" - ], - "x-ms-correlation-request-id": [ - "edba1f36-9e38-4dc1-b551-7cb638dd0d75" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173046Z:edba1f36-9e38-4dc1-b551-7cb638dd0d75" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8a4bf682-a2c1-48dc-a539-6a2e62d78459" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11378" - ], - "x-ms-request-id": [ - "4c01e80d-1aad-435a-8088-afb714421114" - ], - "x-ms-correlation-request-id": [ - "4c01e80d-1aad-435a-8088-afb714421114" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173046Z:4c01e80d-1aad-435a-8088-afb714421114" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e651c309-3c03-441f-be22-cf78dd248963" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11377" - ], - "x-ms-request-id": [ - "f05696d1-8395-4a1d-81d3-6b49f54fcc61" - ], - "x-ms-correlation-request-id": [ - "f05696d1-8395-4a1d-81d3-6b49f54fcc61" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173047Z:f05696d1-8395-4a1d-81d3-6b49f54fcc61" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "91892dee-1145-45c0-a3cf-bc97632a08ba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11376" - ], - "x-ms-request-id": [ - "b0026c01-ef9a-49ab-beec-35ce588bea40" - ], - "x-ms-correlation-request-id": [ - "b0026c01-ef9a-49ab-beec-35ce588bea40" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173047Z:b0026c01-ef9a-49ab-beec-35ce588bea40" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f568c67b-c2a1-4374-8a64-89a10a3cb87e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11375" - ], - "x-ms-request-id": [ - "392450af-be7d-4b34-8c6d-f6f08d857665" - ], - "x-ms-correlation-request-id": [ - "392450af-be7d-4b34-8c6d-f6f08d857665" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173047Z:392450af-be7d-4b34-8c6d-f6f08d857665" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ce83e23-782f-4490-8389-03a0c05807ef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11374" - ], - "x-ms-request-id": [ - "9134218b-e1bd-446b-b49e-be675793431b" - ], - "x-ms-correlation-request-id": [ - "9134218b-e1bd-446b-b49e-be675793431b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173047Z:9134218b-e1bd-446b-b49e-be675793431b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "46d40f9f-2c95-48c0-9f1a-bb7754b6a24e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11373" - ], - "x-ms-request-id": [ - "01a7c683-bf12-41de-82ab-face05e7444a" - ], - "x-ms-correlation-request-id": [ - "01a7c683-bf12-41de-82ab-face05e7444a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173048Z:01a7c683-bf12-41de-82ab-face05e7444a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "86778bf7-022a-4183-87d0-ccca2b043e7a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11372" - ], - "x-ms-request-id": [ - "240ce717-5c73-4196-a40c-2b318117053e" - ], - "x-ms-correlation-request-id": [ - "240ce717-5c73-4196-a40c-2b318117053e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173048Z:240ce717-5c73-4196-a40c-2b318117053e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0f73829e-06c5-45e9-ada7-17d89a0b76f0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11371" - ], - "x-ms-request-id": [ - "828ca9f4-644e-4fc8-8a99-2ddec0ea4aae" - ], - "x-ms-correlation-request-id": [ - "828ca9f4-644e-4fc8-8a99-2ddec0ea4aae" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173048Z:828ca9f4-644e-4fc8-8a99-2ddec0ea4aae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71642081-8c61-417d-a1c2-3f153ba38943" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11370" - ], - "x-ms-request-id": [ - "b7a4c6ed-ffa4-4aff-86be-e5ff06f61402" - ], - "x-ms-correlation-request-id": [ - "b7a4c6ed-ffa4-4aff-86be-e5ff06f61402" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173048Z:b7a4c6ed-ffa4-4aff-86be-e5ff06f61402" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d51a597f-5d2e-4201-902c-bac80e10e253" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11369" - ], - "x-ms-request-id": [ - "f4de2259-146e-4193-bdf1-39a4b43b5ed9" - ], - "x-ms-correlation-request-id": [ - "f4de2259-146e-4193-bdf1-39a4b43b5ed9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173049Z:f4de2259-146e-4193-bdf1-39a4b43b5ed9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5db1bd0-9caa-49ec-a715-0e132d61224f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11368" - ], - "x-ms-request-id": [ - "f47a79fe-268c-4b79-8e57-b9f955e77eed" - ], - "x-ms-correlation-request-id": [ - "f47a79fe-268c-4b79-8e57-b9f955e77eed" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173049Z:f47a79fe-268c-4b79-8e57-b9f955e77eed" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b6b28fd5-cb9c-4d42-a951-24f5dfcc7c09" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11367" - ], - "x-ms-request-id": [ - "e66771e0-4dac-4037-8f90-781f2043b764" - ], - "x-ms-correlation-request-id": [ - "e66771e0-4dac-4037-8f90-781f2043b764" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173049Z:e66771e0-4dac-4037-8f90-781f2043b764" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c23f91f-9eb4-47ff-9e79-b2e3617b2acf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11366" - ], - "x-ms-request-id": [ - "9855ee84-4b44-4a64-9a74-b65635fdf213" - ], - "x-ms-correlation-request-id": [ - "9855ee84-4b44-4a64-9a74-b65635fdf213" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173049Z:9855ee84-4b44-4a64-9a74-b65635fdf213" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "96c1e316-c162-4b71-8508-0a8f2b27ee57" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11365" - ], - "x-ms-request-id": [ - "fe7d3c4a-541e-48e7-a4b8-6665d2a9ecdb" - ], - "x-ms-correlation-request-id": [ - "fe7d3c4a-541e-48e7-a4b8-6665d2a9ecdb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173050Z:fe7d3c4a-541e-48e7-a4b8-6665d2a9ecdb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "856240bc-818b-448e-a9da-23c26df26bcb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11364" - ], - "x-ms-request-id": [ - "1222a1b3-9601-4dc2-9324-e6b75860e319" - ], - "x-ms-correlation-request-id": [ - "1222a1b3-9601-4dc2-9324-e6b75860e319" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173050Z:1222a1b3-9601-4dc2-9324-e6b75860e319" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "54e3a42c-7550-46b0-9da0-e347df7f171e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11363" - ], - "x-ms-request-id": [ - "2ab13e83-3e0a-4818-b4f9-810a2fbdbe32" - ], - "x-ms-correlation-request-id": [ - "2ab13e83-3e0a-4818-b4f9-810a2fbdbe32" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173050Z:2ab13e83-3e0a-4818-b4f9-810a2fbdbe32" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "037d3dc6-cb14-4234-8fd1-c4fd8cb2f9fa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11362" - ], - "x-ms-request-id": [ - "3de221cb-57fc-485f-a45e-228cd17c6ca8" - ], - "x-ms-correlation-request-id": [ - "3de221cb-57fc-485f-a45e-228cd17c6ca8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173051Z:3de221cb-57fc-485f-a45e-228cd17c6ca8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "611ca23e-c342-4783-9101-afc165a9c8c1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11361" - ], - "x-ms-request-id": [ - "36e8dd58-5115-4097-b000-f4e87db1c1b4" - ], - "x-ms-correlation-request-id": [ - "36e8dd58-5115-4097-b000-f4e87db1c1b4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173051Z:36e8dd58-5115-4097-b000-f4e87db1c1b4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6bfe0a60-caa5-4dec-9521-b4bea958a889" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11360" - ], - "x-ms-request-id": [ - "e6bbcc3d-50e3-4bd3-879b-1f2e79a90452" - ], - "x-ms-correlation-request-id": [ - "e6bbcc3d-50e3-4bd3-879b-1f2e79a90452" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173051Z:e6bbcc3d-50e3-4bd3-879b-1f2e79a90452" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c2f8702b-8af1-46d0-bef4-318c3015e54d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11359" - ], - "x-ms-request-id": [ - "314fce66-b9d9-4940-9543-fcd29d9c7d91" - ], - "x-ms-correlation-request-id": [ - "314fce66-b9d9-4940-9543-fcd29d9c7d91" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173051Z:314fce66-b9d9-4940-9543-fcd29d9c7d91" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1221434e-395e-495c-89f8-519944f4f6fa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11358" - ], - "x-ms-request-id": [ - "03d8400a-3220-4260-bd7d-38597ed5e95c" - ], - "x-ms-correlation-request-id": [ - "03d8400a-3220-4260-bd7d-38597ed5e95c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173052Z:03d8400a-3220-4260-bd7d-38597ed5e95c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4350af64-547e-4d2c-a3a8-cf661a392ede" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11357" - ], - "x-ms-request-id": [ - "9933a0c7-50a2-4488-aca1-aa6a434cd754" - ], - "x-ms-correlation-request-id": [ - "9933a0c7-50a2-4488-aca1-aa6a434cd754" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173052Z:9933a0c7-50a2-4488-aca1-aa6a434cd754" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffedb5f8-9677-48f7-ae57-cb4855464f64" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11356" - ], - "x-ms-request-id": [ - "d44f047b-174c-44cd-b511-b0acdcf7221f" - ], - "x-ms-correlation-request-id": [ - "d44f047b-174c-44cd-b511-b0acdcf7221f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173052Z:d44f047b-174c-44cd-b511-b0acdcf7221f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eef55f8e-f2c8-4a79-b204-011d25434671" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11355" - ], - "x-ms-request-id": [ - "a07ec248-fc5a-4a23-b188-85708f573944" - ], - "x-ms-correlation-request-id": [ - "a07ec248-fc5a-4a23-b188-85708f573944" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173052Z:a07ec248-fc5a-4a23-b188-85708f573944" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5695d2a2-c6f9-417d-89f0-584b8676166a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11354" - ], - "x-ms-request-id": [ - "b7e50d25-bfc5-425f-8978-540983beebbc" - ], - "x-ms-correlation-request-id": [ - "b7e50d25-bfc5-425f-8978-540983beebbc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173053Z:b7e50d25-bfc5-425f-8978-540983beebbc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31b088d0-4d31-43bd-8c99-e3bec890c4c7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11353" - ], - "x-ms-request-id": [ - "0fc1382c-b548-467b-bafa-d4771ab996bc" - ], - "x-ms-correlation-request-id": [ - "0fc1382c-b548-467b-bafa-d4771ab996bc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173053Z:0fc1382c-b548-467b-bafa-d4771ab996bc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bd4b7835-c3d7-4b3e-a5b5-9c950da07a3b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11352" - ], - "x-ms-request-id": [ - "47cb76cf-4766-434c-bcfb-70ea2011feb0" - ], - "x-ms-correlation-request-id": [ - "47cb76cf-4766-434c-bcfb-70ea2011feb0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173053Z:47cb76cf-4766-434c-bcfb-70ea2011feb0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d187732-42e6-4a84-bc73-3112dfe19590" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11351" - ], - "x-ms-request-id": [ - "28344e57-29dd-42c3-82b3-ca48126d8a62" - ], - "x-ms-correlation-request-id": [ - "28344e57-29dd-42c3-82b3-ca48126d8a62" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173054Z:28344e57-29dd-42c3-82b3-ca48126d8a62" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88a54002-e615-40f9-8bdd-7760d572f924" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11350" - ], - "x-ms-request-id": [ - "6a5bfb97-2f64-4c67-b8ef-6da96a9c7f65" - ], - "x-ms-correlation-request-id": [ - "6a5bfb97-2f64-4c67-b8ef-6da96a9c7f65" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173054Z:6a5bfb97-2f64-4c67-b8ef-6da96a9c7f65" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75068ca8-627f-440b-b6dd-53db46ff5da3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11349" - ], - "x-ms-request-id": [ - "4c603842-8d8c-4876-9986-4e619e1037db" - ], - "x-ms-correlation-request-id": [ - "4c603842-8d8c-4876-9986-4e619e1037db" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173054Z:4c603842-8d8c-4876-9986-4e619e1037db" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb0da592-56e2-4505-a0a1-f999333c7cc2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11348" - ], - "x-ms-request-id": [ - "7542f0a8-cb54-4383-91c3-8fe76c9ebf3f" - ], - "x-ms-correlation-request-id": [ - "7542f0a8-cb54-4383-91c3-8fe76c9ebf3f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173054Z:7542f0a8-cb54-4383-91c3-8fe76c9ebf3f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49bc2aaa-367c-4962-9d35-78dd1022987b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11347" - ], - "x-ms-request-id": [ - "2d8d274c-7acb-47f9-b658-d81836284fdc" - ], - "x-ms-correlation-request-id": [ - "2d8d274c-7acb-47f9-b658-d81836284fdc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173055Z:2d8d274c-7acb-47f9-b658-d81836284fdc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f61414bd-048c-46c9-b0e1-223750e53597" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11346" - ], - "x-ms-request-id": [ - "fdcbb51a-1999-4e9d-9047-54cbd05934b3" - ], - "x-ms-correlation-request-id": [ - "fdcbb51a-1999-4e9d-9047-54cbd05934b3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173055Z:fdcbb51a-1999-4e9d-9047-54cbd05934b3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ac10f17-883e-47b2-9324-68b0b492726d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11345" - ], - "x-ms-request-id": [ - "6483158f-1c8b-4dbc-946b-02ee132f8644" - ], - "x-ms-correlation-request-id": [ - "6483158f-1c8b-4dbc-946b-02ee132f8644" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173055Z:6483158f-1c8b-4dbc-946b-02ee132f8644" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0dcd6b67-1303-4590-a20c-c7484d46b51c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11344" - ], - "x-ms-request-id": [ - "d21593f5-98a3-49bf-a269-66b126cf35b0" - ], - "x-ms-correlation-request-id": [ - "d21593f5-98a3-49bf-a269-66b126cf35b0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173055Z:d21593f5-98a3-49bf-a269-66b126cf35b0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c37d5a5-97a4-4df5-8058-402d1cd4d784" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11343" - ], - "x-ms-request-id": [ - "66e0266d-cfb5-4f03-a3c8-91fdc1a08563" - ], - "x-ms-correlation-request-id": [ - "66e0266d-cfb5-4f03-a3c8-91fdc1a08563" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173056Z:66e0266d-cfb5-4f03-a3c8-91fdc1a08563" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6fa4f67-85c8-4c30-8902-ea149011cfa6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11342" - ], - "x-ms-request-id": [ - "4bd674cf-cede-4be2-9252-7b4217e7ba71" - ], - "x-ms-correlation-request-id": [ - "4bd674cf-cede-4be2-9252-7b4217e7ba71" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173056Z:4bd674cf-cede-4be2-9252-7b4217e7ba71" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5574f615-01ea-48e1-b98b-f48a66dd50b6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11341" - ], - "x-ms-request-id": [ - "712e0ca4-e0c6-4496-b48f-c50f487e64da" - ], - "x-ms-correlation-request-id": [ - "712e0ca4-e0c6-4496-b48f-c50f487e64da" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173056Z:712e0ca4-e0c6-4496-b48f-c50f487e64da" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c3a6b196-269a-4c65-a095-490177f79b32" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11340" - ], - "x-ms-request-id": [ - "e22f47c4-a158-4bbc-8e4a-d0a9aacde779" - ], - "x-ms-correlation-request-id": [ - "e22f47c4-a158-4bbc-8e4a-d0a9aacde779" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173057Z:e22f47c4-a158-4bbc-8e4a-d0a9aacde779" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "781f4eea-eb5c-4a81-939d-db045a333bb2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11339" - ], - "x-ms-request-id": [ - "27038ab2-ba56-4e57-ad9f-ed32c63407b5" - ], - "x-ms-correlation-request-id": [ - "27038ab2-ba56-4e57-ad9f-ed32c63407b5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173057Z:27038ab2-ba56-4e57-ad9f-ed32c63407b5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9693736-0f7c-4a4e-9295-919d9e4ba094" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11338" - ], - "x-ms-request-id": [ - "0b3bc889-c367-4698-87cd-685d43f9867c" - ], - "x-ms-correlation-request-id": [ - "0b3bc889-c367-4698-87cd-685d43f9867c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173057Z:0b3bc889-c367-4698-87cd-685d43f9867c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "493974d1-6f38-4579-8544-7323fb8637da" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11337" - ], - "x-ms-request-id": [ - "5a7fc134-554b-4e9c-8045-c01addbe6167" - ], - "x-ms-correlation-request-id": [ - "5a7fc134-554b-4e9c-8045-c01addbe6167" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173057Z:5a7fc134-554b-4e9c-8045-c01addbe6167" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e54818fb-6632-4070-bcd4-bc2463ea1b94" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11336" - ], - "x-ms-request-id": [ - "74798ebf-786a-4fb4-948f-882254cb97f2" - ], - "x-ms-correlation-request-id": [ - "74798ebf-786a-4fb4-948f-882254cb97f2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173058Z:74798ebf-786a-4fb4-948f-882254cb97f2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3d99f789-ce79-4ea1-b61d-69aff04d3359" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11335" - ], - "x-ms-request-id": [ - "b5940fb9-0453-4dac-ba80-a0b417c19c34" - ], - "x-ms-correlation-request-id": [ - "b5940fb9-0453-4dac-ba80-a0b417c19c34" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173058Z:b5940fb9-0453-4dac-ba80-a0b417c19c34" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "698b56de-899d-4f0e-811d-63fa896fc0f3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11334" - ], - "x-ms-request-id": [ - "7caab85b-b723-4b12-89e8-150b1ce9a6a0" - ], - "x-ms-correlation-request-id": [ - "7caab85b-b723-4b12-89e8-150b1ce9a6a0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173058Z:7caab85b-b723-4b12-89e8-150b1ce9a6a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "89ea0f4a-7fb4-4041-964a-455d6a3bea32" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11333" - ], - "x-ms-request-id": [ - "43f67a9d-0685-4d47-9704-189ca58d89cf" - ], - "x-ms-correlation-request-id": [ - "43f67a9d-0685-4d47-9704-189ca58d89cf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173058Z:43f67a9d-0685-4d47-9704-189ca58d89cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f0d33c22-f603-4758-b859-d5e83f54c8e1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11332" - ], - "x-ms-request-id": [ - "554fa641-dcc3-4545-a394-92259356d689" - ], - "x-ms-correlation-request-id": [ - "554fa641-dcc3-4545-a394-92259356d689" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173059Z:554fa641-dcc3-4545-a394-92259356d689" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "53990d5f-a833-44b9-b02c-5760e73ab999" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11331" - ], - "x-ms-request-id": [ - "6f3e6021-5ec4-4d5c-8d8b-911e9210af8a" - ], - "x-ms-correlation-request-id": [ - "6f3e6021-5ec4-4d5c-8d8b-911e9210af8a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173059Z:6f3e6021-5ec4-4d5c-8d8b-911e9210af8a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1f3161f5-d373-40ee-8c78-1b05624a67f8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11330" - ], - "x-ms-request-id": [ - "15834aae-5148-47e3-85d6-1781a0f86cd3" - ], - "x-ms-correlation-request-id": [ - "15834aae-5148-47e3-85d6-1781a0f86cd3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173059Z:15834aae-5148-47e3-85d6-1781a0f86cd3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98b179a8-fb2d-42fe-820c-4af8a5e13c9b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11329" - ], - "x-ms-request-id": [ - "f6085554-39c9-49ea-8f30-e2b6a9e91f5f" - ], - "x-ms-correlation-request-id": [ - "f6085554-39c9-49ea-8f30-e2b6a9e91f5f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173059Z:f6085554-39c9-49ea-8f30-e2b6a9e91f5f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "276917f5-1351-4a46-9946-dddccedd3fda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11328" - ], - "x-ms-request-id": [ - "2fb11d9e-2c94-465e-a847-6c2f3171cd1c" - ], - "x-ms-correlation-request-id": [ - "2fb11d9e-2c94-465e-a847-6c2f3171cd1c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173100Z:2fb11d9e-2c94-465e-a847-6c2f3171cd1c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:30:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "598ea2ba-993f-481a-9dc2-04a7ffdf6b89" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11327" - ], - "x-ms-request-id": [ - "17ce1aae-ee14-4c72-b96c-0100b84bb832" - ], - "x-ms-correlation-request-id": [ - "17ce1aae-ee14-4c72-b96c-0100b84bb832" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173100Z:17ce1aae-ee14-4c72-b96c-0100b84bb832" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88140234-2bf1-4628-be54-c74256e7e520" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11326" - ], - "x-ms-request-id": [ - "c09f2f58-5092-4002-b7a3-a80e0cfe27b1" - ], - "x-ms-correlation-request-id": [ - "c09f2f58-5092-4002-b7a3-a80e0cfe27b1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173100Z:c09f2f58-5092-4002-b7a3-a80e0cfe27b1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d568f9ce-5f8b-4f5a-9537-c401b47e08be" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11325" - ], - "x-ms-request-id": [ - "8ecf4e26-8786-402e-9c70-9cbe37efb30f" - ], - "x-ms-correlation-request-id": [ - "8ecf4e26-8786-402e-9c70-9cbe37efb30f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173101Z:8ecf4e26-8786-402e-9c70-9cbe37efb30f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2468b3c0-712d-47cc-aea8-922402b36ef5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11324" - ], - "x-ms-request-id": [ - "ea5cd0f1-452f-4953-96f6-9019d3c26262" - ], - "x-ms-correlation-request-id": [ - "ea5cd0f1-452f-4953-96f6-9019d3c26262" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173101Z:ea5cd0f1-452f-4953-96f6-9019d3c26262" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "22a6d053-58f7-4531-a0f2-8ea3b5083318" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11323" - ], - "x-ms-request-id": [ - "5b082fd8-4603-4384-81ba-b172f193296a" - ], - "x-ms-correlation-request-id": [ - "5b082fd8-4603-4384-81ba-b172f193296a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173101Z:5b082fd8-4603-4384-81ba-b172f193296a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9300108d-67de-49fe-bea6-ab9c21e895b8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11322" - ], - "x-ms-request-id": [ - "a705d046-4f54-48be-9229-5c950f28d089" - ], - "x-ms-correlation-request-id": [ - "a705d046-4f54-48be-9229-5c950f28d089" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173101Z:a705d046-4f54-48be-9229-5c950f28d089" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "db6af810-358b-48e9-9f95-63e4200d4c8d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11321" - ], - "x-ms-request-id": [ - "134baa2f-8905-4c22-ad88-ee8df2326d0a" - ], - "x-ms-correlation-request-id": [ - "134baa2f-8905-4c22-ad88-ee8df2326d0a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173102Z:134baa2f-8905-4c22-ad88-ee8df2326d0a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "268729ae-fc5d-4740-8374-4b2db37122d4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11320" - ], - "x-ms-request-id": [ - "7488de57-052a-4bb9-87c8-1767306d60df" - ], - "x-ms-correlation-request-id": [ - "7488de57-052a-4bb9-87c8-1767306d60df" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173102Z:7488de57-052a-4bb9-87c8-1767306d60df" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b8b19b0a-141a-4027-8cdf-8d032476ca72" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11319" - ], - "x-ms-request-id": [ - "50965a25-61aa-4c56-9ebb-b793d4266195" - ], - "x-ms-correlation-request-id": [ - "50965a25-61aa-4c56-9ebb-b793d4266195" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173102Z:50965a25-61aa-4c56-9ebb-b793d4266195" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "17878d03-70da-4eee-9bec-9731a909872b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11318" - ], - "x-ms-request-id": [ - "4084d6fe-c565-4501-80e3-8d6041781631" - ], - "x-ms-correlation-request-id": [ - "4084d6fe-c565-4501-80e3-8d6041781631" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173102Z:4084d6fe-c565-4501-80e3-8d6041781631" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "626d2299-a4a5-4743-97b2-8c5456b050fe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11317" - ], - "x-ms-request-id": [ - "9299b621-6dec-490a-b771-3c56a7a2fd22" - ], - "x-ms-correlation-request-id": [ - "9299b621-6dec-490a-b771-3c56a7a2fd22" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173103Z:9299b621-6dec-490a-b771-3c56a7a2fd22" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc5634f8-e44e-42ff-876e-fcb8290bfca9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11316" - ], - "x-ms-request-id": [ - "8f052ec8-db23-4682-8b70-9f6d71ad2cb2" - ], - "x-ms-correlation-request-id": [ - "8f052ec8-db23-4682-8b70-9f6d71ad2cb2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173103Z:8f052ec8-db23-4682-8b70-9f6d71ad2cb2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e1ad5c98-f280-46b5-a9bd-c10586992bae" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11315" - ], - "x-ms-request-id": [ - "0b267b27-5f0a-4814-9e4f-cafd908a9715" - ], - "x-ms-correlation-request-id": [ - "0b267b27-5f0a-4814-9e4f-cafd908a9715" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173103Z:0b267b27-5f0a-4814-9e4f-cafd908a9715" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc9cac86-5113-4445-b5a5-b250d890dfab" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11314" - ], - "x-ms-request-id": [ - "bdde057a-2c04-4d50-b948-ccdfeb657a26" - ], - "x-ms-correlation-request-id": [ - "bdde057a-2c04-4d50-b948-ccdfeb657a26" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173104Z:bdde057a-2c04-4d50-b948-ccdfeb657a26" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "813c10e9-ef02-47b0-b4f7-8d68b5ed8e7c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11313" - ], - "x-ms-request-id": [ - "3dc1306c-401e-41d9-a154-c57df86a616f" - ], - "x-ms-correlation-request-id": [ - "3dc1306c-401e-41d9-a154-c57df86a616f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173104Z:3dc1306c-401e-41d9-a154-c57df86a616f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "af9ce2ca-52ca-4c54-9d1a-623bb2654379" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11312" - ], - "x-ms-request-id": [ - "2e769d47-e23b-428a-910f-0acae05be36e" - ], - "x-ms-correlation-request-id": [ - "2e769d47-e23b-428a-910f-0acae05be36e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173104Z:2e769d47-e23b-428a-910f-0acae05be36e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c1eb544-d36e-4e75-a048-d4458fdfeb2d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11311" - ], - "x-ms-request-id": [ - "270875ef-01d9-4552-8bfe-0f1771a0da9f" - ], - "x-ms-correlation-request-id": [ - "270875ef-01d9-4552-8bfe-0f1771a0da9f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173104Z:270875ef-01d9-4552-8bfe-0f1771a0da9f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "068e9a76-ad39-48e6-afaa-cb0e475e784c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11310" - ], - "x-ms-request-id": [ - "78a4c00e-a797-4022-921c-b9d33faac795" - ], - "x-ms-correlation-request-id": [ - "78a4c00e-a797-4022-921c-b9d33faac795" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173105Z:78a4c00e-a797-4022-921c-b9d33faac795" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eca003fe-3fb9-415b-b2b0-98b11340e525" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11309" - ], - "x-ms-request-id": [ - "d2ecdafb-03fe-4931-a827-c60eaf0a0ccd" - ], - "x-ms-correlation-request-id": [ - "d2ecdafb-03fe-4931-a827-c60eaf0a0ccd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173105Z:d2ecdafb-03fe-4931-a827-c60eaf0a0ccd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c6496ced-d2f6-436b-82aa-751bb8bf78db" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11308" - ], - "x-ms-request-id": [ - "c81997f4-33a3-46f1-8f45-35fb4d0a8e2d" - ], - "x-ms-correlation-request-id": [ - "c81997f4-33a3-46f1-8f45-35fb4d0a8e2d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173105Z:c81997f4-33a3-46f1-8f45-35fb4d0a8e2d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70a90f21-2f30-4408-b303-a78f95ff63ec" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11307" - ], - "x-ms-request-id": [ - "fe6e657c-da6a-4c85-a5c9-8492212fd518" - ], - "x-ms-correlation-request-id": [ - "fe6e657c-da6a-4c85-a5c9-8492212fd518" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173105Z:fe6e657c-da6a-4c85-a5c9-8492212fd518" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "97cffc0e-5ec9-4fb4-8451-5391cb57e87d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11306" - ], - "x-ms-request-id": [ - "f24364bc-e60b-429b-ad05-dee9e2d26e04" - ], - "x-ms-correlation-request-id": [ - "f24364bc-e60b-429b-ad05-dee9e2d26e04" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173106Z:f24364bc-e60b-429b-ad05-dee9e2d26e04" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f7cbed5-070a-4298-b07b-6b63f46e6bfa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11305" - ], - "x-ms-request-id": [ - "b4771966-aaa8-4ee9-b998-269ca3c1bf81" - ], - "x-ms-correlation-request-id": [ - "b4771966-aaa8-4ee9-b998-269ca3c1bf81" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173106Z:b4771966-aaa8-4ee9-b998-269ca3c1bf81" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "66e09b5d-6f2a-440e-891e-0be81e70430e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11304" - ], - "x-ms-request-id": [ - "1c0679ab-285e-4baa-9dba-1101fc0c47ae" - ], - "x-ms-correlation-request-id": [ - "1c0679ab-285e-4baa-9dba-1101fc0c47ae" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173106Z:1c0679ab-285e-4baa-9dba-1101fc0c47ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58b71e70-2986-4375-bdfd-660c3489742f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11303" - ], - "x-ms-request-id": [ - "f8247cce-d7a7-41cc-885b-0075697a19ef" - ], - "x-ms-correlation-request-id": [ - "f8247cce-d7a7-41cc-885b-0075697a19ef" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173107Z:f8247cce-d7a7-41cc-885b-0075697a19ef" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ebeee021-e86d-4c60-840c-5ed9b9dee2da" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11302" - ], - "x-ms-request-id": [ - "199a97c3-4ab8-4f42-a40d-6c6877c3f89a" - ], - "x-ms-correlation-request-id": [ - "199a97c3-4ab8-4f42-a40d-6c6877c3f89a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173107Z:199a97c3-4ab8-4f42-a40d-6c6877c3f89a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1e3ba1fc-43f0-4863-b071-32842592fae9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11301" - ], - "x-ms-request-id": [ - "f6df155c-8d6c-459e-826c-458f27af463c" - ], - "x-ms-correlation-request-id": [ - "f6df155c-8d6c-459e-826c-458f27af463c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173107Z:f6df155c-8d6c-459e-826c-458f27af463c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d13d3e76-c97c-4fda-b5e0-aaf52e6c57d2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11300" - ], - "x-ms-request-id": [ - "9d6097c8-3648-42e4-89ce-b2de7b7ef05f" - ], - "x-ms-correlation-request-id": [ - "9d6097c8-3648-42e4-89ce-b2de7b7ef05f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173107Z:9d6097c8-3648-42e4-89ce-b2de7b7ef05f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "86f79cb3-e47b-427f-9c8e-7164abcaae4c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11299" - ], - "x-ms-request-id": [ - "fb643b99-510c-4935-be18-9a9f659239c8" - ], - "x-ms-correlation-request-id": [ - "fb643b99-510c-4935-be18-9a9f659239c8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173108Z:fb643b99-510c-4935-be18-9a9f659239c8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6e7d692c-d714-4adc-8f76-bd20e4e81c0a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11298" - ], - "x-ms-request-id": [ - "28f89509-93a4-43cf-af37-98281d1e1bc3" - ], - "x-ms-correlation-request-id": [ - "28f89509-93a4-43cf-af37-98281d1e1bc3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173108Z:28f89509-93a4-43cf-af37-98281d1e1bc3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3452f032-3ef8-44b0-a43c-7a3c6b980bd3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11297" - ], - "x-ms-request-id": [ - "21a9b750-7699-4235-85e5-fae297886b4a" - ], - "x-ms-correlation-request-id": [ - "21a9b750-7699-4235-85e5-fae297886b4a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173108Z:21a9b750-7699-4235-85e5-fae297886b4a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "199e0a5e-64a2-435c-9737-445cbcc699d2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11296" - ], - "x-ms-request-id": [ - "7d192ab4-126d-4d76-bff7-c941edf8c89d" - ], - "x-ms-correlation-request-id": [ - "7d192ab4-126d-4d76-bff7-c941edf8c89d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173108Z:7d192ab4-126d-4d76-bff7-c941edf8c89d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41a84483-4497-479f-8211-beb782ab28bc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11295" - ], - "x-ms-request-id": [ - "cc733762-cd2c-49ba-b953-bce43b938161" - ], - "x-ms-correlation-request-id": [ - "cc733762-cd2c-49ba-b953-bce43b938161" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173109Z:cc733762-cd2c-49ba-b953-bce43b938161" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ef2a3a8-85c6-4a7c-9d7f-8004def9571c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11294" - ], - "x-ms-request-id": [ - "4f5de5f4-ef21-4b32-af0b-2d2db2aa3206" - ], - "x-ms-correlation-request-id": [ - "4f5de5f4-ef21-4b32-af0b-2d2db2aa3206" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173109Z:4f5de5f4-ef21-4b32-af0b-2d2db2aa3206" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "625a8e9f-5e82-474b-9ee5-cfd3148d5c84" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11293" - ], - "x-ms-request-id": [ - "d6826bdb-530e-4357-8df2-eaf7030cf132" - ], - "x-ms-correlation-request-id": [ - "d6826bdb-530e-4357-8df2-eaf7030cf132" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173109Z:d6826bdb-530e-4357-8df2-eaf7030cf132" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6bfa13e6-ea6f-48d4-bb07-791bc6c9f8b0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11292" - ], - "x-ms-request-id": [ - "d6f337fd-c09a-41a0-9486-eebc1c75fe64" - ], - "x-ms-correlation-request-id": [ - "d6f337fd-c09a-41a0-9486-eebc1c75fe64" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173109Z:d6f337fd-c09a-41a0-9486-eebc1c75fe64" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a87480e0-492c-441e-b817-32ebc32eb64d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11291" - ], - "x-ms-request-id": [ - "6ae06fd3-3e94-4461-b5e7-b720b7358667" - ], - "x-ms-correlation-request-id": [ - "6ae06fd3-3e94-4461-b5e7-b720b7358667" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173110Z:6ae06fd3-3e94-4461-b5e7-b720b7358667" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e8b339b8-c322-4491-a4b2-cbbaf95d3d4d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11290" - ], - "x-ms-request-id": [ - "4ceb4564-e4f3-4216-988c-2177aae92667" - ], - "x-ms-correlation-request-id": [ - "4ceb4564-e4f3-4216-988c-2177aae92667" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173110Z:4ceb4564-e4f3-4216-988c-2177aae92667" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd888b87-7fc3-42ab-8d42-b8badbc59986" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11289" - ], - "x-ms-request-id": [ - "ed9aa66f-f1df-43ba-a2d8-7be23ebdce04" - ], - "x-ms-correlation-request-id": [ - "ed9aa66f-f1df-43ba-a2d8-7be23ebdce04" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173110Z:ed9aa66f-f1df-43ba-a2d8-7be23ebdce04" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3461a16f-3a8c-4a8a-a79d-5849760f5c11" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11288" - ], - "x-ms-request-id": [ - "dfddfe16-c5cb-4ddd-9283-fae0e864a9b6" - ], - "x-ms-correlation-request-id": [ - "dfddfe16-c5cb-4ddd-9283-fae0e864a9b6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173111Z:dfddfe16-c5cb-4ddd-9283-fae0e864a9b6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f7c55d3c-5c9e-45fd-bf3b-89a55dc0d4b4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11287" - ], - "x-ms-request-id": [ - "dd2b6566-9a78-4ba0-8f38-1f5fea61aae9" - ], - "x-ms-correlation-request-id": [ - "dd2b6566-9a78-4ba0-8f38-1f5fea61aae9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173111Z:dd2b6566-9a78-4ba0-8f38-1f5fea61aae9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d6f3863-ba34-4e50-99ed-ca9a5d5c3e67" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11286" - ], - "x-ms-request-id": [ - "abeb6ee3-530f-495e-8731-7db3081a427e" - ], - "x-ms-correlation-request-id": [ - "abeb6ee3-530f-495e-8731-7db3081a427e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173111Z:abeb6ee3-530f-495e-8731-7db3081a427e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "faf26dbf-6aeb-4265-b64f-7f34713f1594" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11285" - ], - "x-ms-request-id": [ - "541f43b0-d323-4ec5-9ff4-a3432d714a55" - ], - "x-ms-correlation-request-id": [ - "541f43b0-d323-4ec5-9ff4-a3432d714a55" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173111Z:541f43b0-d323-4ec5-9ff4-a3432d714a55" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ea6b77a-bfc3-4212-9d4a-a9f8e8dee64c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11284" - ], - "x-ms-request-id": [ - "333c81a3-39e5-4c06-b425-9ecae6f53cb9" - ], - "x-ms-correlation-request-id": [ - "333c81a3-39e5-4c06-b425-9ecae6f53cb9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173112Z:333c81a3-39e5-4c06-b425-9ecae6f53cb9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ad5c1879-718a-489a-b2e6-e54f15c5ffb3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11283" - ], - "x-ms-request-id": [ - "630fccd9-40b0-4485-8aa6-47b255035855" - ], - "x-ms-correlation-request-id": [ - "630fccd9-40b0-4485-8aa6-47b255035855" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173112Z:630fccd9-40b0-4485-8aa6-47b255035855" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "36ada9ca-88f1-417f-9d83-eb831560b14c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11282" - ], - "x-ms-request-id": [ - "14466f6e-94ca-4618-9838-63700a09ce86" - ], - "x-ms-correlation-request-id": [ - "14466f6e-94ca-4618-9838-63700a09ce86" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173112Z:14466f6e-94ca-4618-9838-63700a09ce86" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88ca4dd0-bd46-4a90-91a8-473e78405861" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11281" - ], - "x-ms-request-id": [ - "95726b83-f18e-4ff6-a757-4b4262815087" - ], - "x-ms-correlation-request-id": [ - "95726b83-f18e-4ff6-a757-4b4262815087" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173112Z:95726b83-f18e-4ff6-a757-4b4262815087" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1901eb6e-c1c9-49e9-8bd9-f14b08d58cc7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11280" - ], - "x-ms-request-id": [ - "96f66d89-6115-4290-bb5f-995b88ba5d22" - ], - "x-ms-correlation-request-id": [ - "96f66d89-6115-4290-bb5f-995b88ba5d22" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173113Z:96f66d89-6115-4290-bb5f-995b88ba5d22" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "74cb7b81-669d-46d7-b585-558667e7de39" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11279" - ], - "x-ms-request-id": [ - "490b03ca-add3-431f-b20e-7202ea340d70" - ], - "x-ms-correlation-request-id": [ - "490b03ca-add3-431f-b20e-7202ea340d70" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173113Z:490b03ca-add3-431f-b20e-7202ea340d70" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b4b42e2-6536-4a09-83a7-6ec386c62d55" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11278" - ], - "x-ms-request-id": [ - "bf4f0408-2e1e-47d0-8fa3-bc21e52ccd41" - ], - "x-ms-correlation-request-id": [ - "bf4f0408-2e1e-47d0-8fa3-bc21e52ccd41" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173113Z:bf4f0408-2e1e-47d0-8fa3-bc21e52ccd41" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59967676-00d8-483e-a9a3-8991e3436613" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11277" - ], - "x-ms-request-id": [ - "c0685007-9713-4129-b322-d16c8ac9dc71" - ], - "x-ms-correlation-request-id": [ - "c0685007-9713-4129-b322-d16c8ac9dc71" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173113Z:c0685007-9713-4129-b322-d16c8ac9dc71" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a590528-9f6f-477b-8a18-e881620d4dda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11276" - ], - "x-ms-request-id": [ - "cf15cd5d-5fba-41bc-ad23-033bd44349d9" - ], - "x-ms-correlation-request-id": [ - "cf15cd5d-5fba-41bc-ad23-033bd44349d9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173114Z:cf15cd5d-5fba-41bc-ad23-033bd44349d9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5c383990-fad2-4edd-a6da-5383fdd21686" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11275" - ], - "x-ms-request-id": [ - "cc6c78bc-9eb5-48c6-8818-2e017de55c48" - ], - "x-ms-correlation-request-id": [ - "cc6c78bc-9eb5-48c6-8818-2e017de55c48" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173114Z:cc6c78bc-9eb5-48c6-8818-2e017de55c48" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "76adad64-b4e8-4e7d-8ac8-493e2451f1d4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11274" - ], - "x-ms-request-id": [ - "820becdd-80a1-446a-beb4-acd722df0973" - ], - "x-ms-correlation-request-id": [ - "820becdd-80a1-446a-beb4-acd722df0973" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173114Z:820becdd-80a1-446a-beb4-acd722df0973" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "62408c54-d882-4cb9-a527-448bb8efbbf9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11273" - ], - "x-ms-request-id": [ - "5e7d347b-a246-4160-90eb-a66014c73562" - ], - "x-ms-correlation-request-id": [ - "5e7d347b-a246-4160-90eb-a66014c73562" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173115Z:5e7d347b-a246-4160-90eb-a66014c73562" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3398196e-e675-419e-a39b-217b6e00b3f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11272" - ], - "x-ms-request-id": [ - "67f58d64-ad05-4f6d-befc-a0dc0e7ec54f" - ], - "x-ms-correlation-request-id": [ - "67f58d64-ad05-4f6d-befc-a0dc0e7ec54f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173115Z:67f58d64-ad05-4f6d-befc-a0dc0e7ec54f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fb64e79f-cd5f-473c-9d4b-751a04ba78b9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11271" - ], - "x-ms-request-id": [ - "6792ecc9-c218-4ee5-b66e-62a5248fe196" - ], - "x-ms-correlation-request-id": [ - "6792ecc9-c218-4ee5-b66e-62a5248fe196" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173115Z:6792ecc9-c218-4ee5-b66e-62a5248fe196" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "deb8fd05-9ba1-4bfd-9838-bcfce5775984" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11270" - ], - "x-ms-request-id": [ - "143a2d0e-6c7f-4c9f-9a70-9e6d6a6454e1" - ], - "x-ms-correlation-request-id": [ - "143a2d0e-6c7f-4c9f-9a70-9e6d6a6454e1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173115Z:143a2d0e-6c7f-4c9f-9a70-9e6d6a6454e1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffdc5422-d8fd-4e17-8f2b-1ef482af3f4f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11269" - ], - "x-ms-request-id": [ - "aaef76d2-9eac-4c7f-900a-53596b71bb2e" - ], - "x-ms-correlation-request-id": [ - "aaef76d2-9eac-4c7f-900a-53596b71bb2e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173116Z:aaef76d2-9eac-4c7f-900a-53596b71bb2e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd7489ec-a1e9-4a5d-82b2-42cb36481b25" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11268" - ], - "x-ms-request-id": [ - "2650be12-93cd-41d6-9406-cdd70d28e657" - ], - "x-ms-correlation-request-id": [ - "2650be12-93cd-41d6-9406-cdd70d28e657" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173116Z:2650be12-93cd-41d6-9406-cdd70d28e657" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13968127-76a5-45f9-8841-8c5a912ee748" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11267" - ], - "x-ms-request-id": [ - "66fb5d14-3ccb-4f00-9899-79ea55d71436" - ], - "x-ms-correlation-request-id": [ - "66fb5d14-3ccb-4f00-9899-79ea55d71436" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173116Z:66fb5d14-3ccb-4f00-9899-79ea55d71436" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "692c3a16-9adf-4e66-8a13-a9e6aa4e1b72" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11266" - ], - "x-ms-request-id": [ - "3be9af61-cb3a-4a40-9562-04e79e4550c9" - ], - "x-ms-correlation-request-id": [ - "3be9af61-cb3a-4a40-9562-04e79e4550c9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173116Z:3be9af61-cb3a-4a40-9562-04e79e4550c9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "008edfad-2441-48bf-b812-a2a9d7a09c5c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11265" - ], - "x-ms-request-id": [ - "ce34a3bd-bb99-45ea-8536-0b10762d1074" - ], - "x-ms-correlation-request-id": [ - "ce34a3bd-bb99-45ea-8536-0b10762d1074" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173117Z:ce34a3bd-bb99-45ea-8536-0b10762d1074" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d60606b4-cc06-408a-a001-2b642d4f8c34" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11264" - ], - "x-ms-request-id": [ - "39733df9-39b0-48cf-ba4c-210376967f5f" - ], - "x-ms-correlation-request-id": [ - "39733df9-39b0-48cf-ba4c-210376967f5f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173117Z:39733df9-39b0-48cf-ba4c-210376967f5f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3dd37ad5-039d-43ed-858f-e018517c4eef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11263" - ], - "x-ms-request-id": [ - "d5def621-7f1e-42ae-be44-9a74127b7ead" - ], - "x-ms-correlation-request-id": [ - "d5def621-7f1e-42ae-be44-9a74127b7ead" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173117Z:d5def621-7f1e-42ae-be44-9a74127b7ead" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "54bea069-7411-4e72-9b34-f7099de858e6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11262" - ], - "x-ms-request-id": [ - "0c971ca4-4f58-4961-a406-9aaba3e7f18c" - ], - "x-ms-correlation-request-id": [ - "0c971ca4-4f58-4961-a406-9aaba3e7f18c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173118Z:0c971ca4-4f58-4961-a406-9aaba3e7f18c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "29298760-847b-4af1-a376-f32856e6f32d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11261" - ], - "x-ms-request-id": [ - "aa407a69-aa89-4159-9067-8bcae01bec80" - ], - "x-ms-correlation-request-id": [ - "aa407a69-aa89-4159-9067-8bcae01bec80" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173118Z:aa407a69-aa89-4159-9067-8bcae01bec80" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d3b792d9-6c93-4a72-96ab-d332fdc3f83e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11260" - ], - "x-ms-request-id": [ - "2d1202d4-ae7c-4151-9bb0-d4266a63c7cf" - ], - "x-ms-correlation-request-id": [ - "2d1202d4-ae7c-4151-9bb0-d4266a63c7cf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173118Z:2d1202d4-ae7c-4151-9bb0-d4266a63c7cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "caea6148-361b-4d7f-9c19-f665eec89f36" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11259" - ], - "x-ms-request-id": [ - "ca30afa8-6956-4418-891b-6fc44bed3d0d" - ], - "x-ms-correlation-request-id": [ - "ca30afa8-6956-4418-891b-6fc44bed3d0d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173118Z:ca30afa8-6956-4418-891b-6fc44bed3d0d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d017363f-4245-4077-b7d0-e55d88a505f7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11258" - ], - "x-ms-request-id": [ - "cd35bc8a-54a0-48b3-b0f7-85eb8ce8a21a" - ], - "x-ms-correlation-request-id": [ - "cd35bc8a-54a0-48b3-b0f7-85eb8ce8a21a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173119Z:cd35bc8a-54a0-48b3-b0f7-85eb8ce8a21a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ffdd348-a811-4f1f-9618-381516c870d4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11257" - ], - "x-ms-request-id": [ - "f9f6a09a-729a-4bda-a3d6-1d87e65c3f2c" - ], - "x-ms-correlation-request-id": [ - "f9f6a09a-729a-4bda-a3d6-1d87e65c3f2c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173119Z:f9f6a09a-729a-4bda-a3d6-1d87e65c3f2c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "08073449-3e49-4d61-b354-e0dd9152c305" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11256" - ], - "x-ms-request-id": [ - "cd17be4e-11ea-4a2c-b453-b922b7c33f39" - ], - "x-ms-correlation-request-id": [ - "cd17be4e-11ea-4a2c-b453-b922b7c33f39" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173119Z:cd17be4e-11ea-4a2c-b453-b922b7c33f39" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bfc7c319-216d-4c66-ac03-82b3a4bea263" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11255" - ], - "x-ms-request-id": [ - "91939439-90d9-4d33-897a-edf31ac52ff4" - ], - "x-ms-correlation-request-id": [ - "91939439-90d9-4d33-897a-edf31ac52ff4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173119Z:91939439-90d9-4d33-897a-edf31ac52ff4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "be5076ac-d2da-48f7-8286-8a9b36573158" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11254" - ], - "x-ms-request-id": [ - "f687704c-3fb5-4e4c-95e2-83b94c07c1df" - ], - "x-ms-correlation-request-id": [ - "f687704c-3fb5-4e4c-95e2-83b94c07c1df" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173120Z:f687704c-3fb5-4e4c-95e2-83b94c07c1df" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98115116-df86-46d0-93c1-828b1834c6da" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11253" - ], - "x-ms-request-id": [ - "a57ffa26-15bf-4f74-ba69-e0e642624905" - ], - "x-ms-correlation-request-id": [ - "a57ffa26-15bf-4f74-ba69-e0e642624905" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173120Z:a57ffa26-15bf-4f74-ba69-e0e642624905" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e8b0009-ae8c-4b91-b68d-ac34f90f0903" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11252" - ], - "x-ms-request-id": [ - "532d1a4e-5715-46b2-aa45-af81ff646806" - ], - "x-ms-correlation-request-id": [ - "532d1a4e-5715-46b2-aa45-af81ff646806" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173120Z:532d1a4e-5715-46b2-aa45-af81ff646806" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33f8f360-6ccd-4c54-bd05-1d535281bdc5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11251" - ], - "x-ms-request-id": [ - "7089cc49-15e3-451a-8e22-9a19c60084fb" - ], - "x-ms-correlation-request-id": [ - "7089cc49-15e3-451a-8e22-9a19c60084fb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173120Z:7089cc49-15e3-451a-8e22-9a19c60084fb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "150648e9-7743-4248-bcec-afebdfc2a86c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11250" - ], - "x-ms-request-id": [ - "c07501ae-72b2-4b0d-8c59-4fc7bbac84cf" - ], - "x-ms-correlation-request-id": [ - "c07501ae-72b2-4b0d-8c59-4fc7bbac84cf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173121Z:c07501ae-72b2-4b0d-8c59-4fc7bbac84cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3a2708c-098a-4a86-b2ad-14d6194cc305" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11249" - ], - "x-ms-request-id": [ - "9d3f5336-b485-4ae3-840c-710ef0b82f9f" - ], - "x-ms-correlation-request-id": [ - "9d3f5336-b485-4ae3-840c-710ef0b82f9f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173121Z:9d3f5336-b485-4ae3-840c-710ef0b82f9f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1543e252-b368-46cf-8a74-d84d8ae66b8b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11248" - ], - "x-ms-request-id": [ - "6b8a60cc-c96c-4f2e-9eff-113fc54972b6" - ], - "x-ms-correlation-request-id": [ - "6b8a60cc-c96c-4f2e-9eff-113fc54972b6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173121Z:6b8a60cc-c96c-4f2e-9eff-113fc54972b6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ce8674d-0874-4933-97f4-75968b247fc4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11247" - ], - "x-ms-request-id": [ - "8c5aaf0a-eb59-4f0c-9620-1acf57e1057c" - ], - "x-ms-correlation-request-id": [ - "8c5aaf0a-eb59-4f0c-9620-1acf57e1057c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173122Z:8c5aaf0a-eb59-4f0c-9620-1acf57e1057c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "868235a0-1069-46b1-b078-b3b25c1abb63" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11246" - ], - "x-ms-request-id": [ - "7787b36f-b62c-4452-9e13-a802fd338b49" - ], - "x-ms-correlation-request-id": [ - "7787b36f-b62c-4452-9e13-a802fd338b49" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173122Z:7787b36f-b62c-4452-9e13-a802fd338b49" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "97ef6886-d6f9-4459-bd92-85e690cc3020" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11245" - ], - "x-ms-request-id": [ - "97ac02da-62ae-4f05-953a-e00cd65501b7" - ], - "x-ms-correlation-request-id": [ - "97ac02da-62ae-4f05-953a-e00cd65501b7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173122Z:97ac02da-62ae-4f05-953a-e00cd65501b7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8b99dd67-a125-4f04-9ac0-6703f18b0cb7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11244" - ], - "x-ms-request-id": [ - "f6d932fa-a588-42db-be10-968af292368e" - ], - "x-ms-correlation-request-id": [ - "f6d932fa-a588-42db-be10-968af292368e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173122Z:f6d932fa-a588-42db-be10-968af292368e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a83cee11-4f09-4245-a50e-1fc9935e361f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11243" - ], - "x-ms-request-id": [ - "f9e38665-abf2-4ffe-ad33-d934c0743a58" - ], - "x-ms-correlation-request-id": [ - "f9e38665-abf2-4ffe-ad33-d934c0743a58" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173123Z:f9e38665-abf2-4ffe-ad33-d934c0743a58" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5d15d895-cff6-42bc-80ca-78124863c9de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11242" - ], - "x-ms-request-id": [ - "b49acdcf-809d-471f-9914-d78ffd4f2ecd" - ], - "x-ms-correlation-request-id": [ - "b49acdcf-809d-471f-9914-d78ffd4f2ecd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173123Z:b49acdcf-809d-471f-9914-d78ffd4f2ecd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a30deb2-71c1-44d3-928b-24b2e874d721" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11241" - ], - "x-ms-request-id": [ - "19bd48ab-48a9-42c4-850f-24b7c9841159" - ], - "x-ms-correlation-request-id": [ - "19bd48ab-48a9-42c4-850f-24b7c9841159" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173123Z:19bd48ab-48a9-42c4-850f-24b7c9841159" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ad2e01f-a79a-4049-a39b-2d4b11d06522" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11240" - ], - "x-ms-request-id": [ - "55b84363-32c2-4331-bc1f-fe38b3d7b472" - ], - "x-ms-correlation-request-id": [ - "55b84363-32c2-4331-bc1f-fe38b3d7b472" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173124Z:55b84363-32c2-4331-bc1f-fe38b3d7b472" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5fa7bfe3-2603-4936-9bff-fd7951bdf5f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11239" - ], - "x-ms-request-id": [ - "f6fcb2d4-9b80-4452-b431-fad154ef8087" - ], - "x-ms-correlation-request-id": [ - "f6fcb2d4-9b80-4452-b431-fad154ef8087" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173124Z:f6fcb2d4-9b80-4452-b431-fad154ef8087" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "696de370-3cd9-46f3-aee2-98c83cf8cd35" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11238" - ], - "x-ms-request-id": [ - "d7eedacf-178d-46ac-b2d6-82d9bc540443" - ], - "x-ms-correlation-request-id": [ - "d7eedacf-178d-46ac-b2d6-82d9bc540443" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173124Z:d7eedacf-178d-46ac-b2d6-82d9bc540443" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "93d6f629-d552-470a-aa90-59623d64ff43" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11237" - ], - "x-ms-request-id": [ - "d9809338-5ca6-4dd5-9814-12060c495ecd" - ], - "x-ms-correlation-request-id": [ - "d9809338-5ca6-4dd5-9814-12060c495ecd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173124Z:d9809338-5ca6-4dd5-9814-12060c495ecd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a29228b-c3a7-4f17-a700-04ae830d105a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11236" - ], - "x-ms-request-id": [ - "20c396f0-a635-4af7-bfc5-838440f5a671" - ], - "x-ms-correlation-request-id": [ - "20c396f0-a635-4af7-bfc5-838440f5a671" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173125Z:20c396f0-a635-4af7-bfc5-838440f5a671" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7b7acb42-b614-4477-8f00-2e4c6fb5aad5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11235" - ], - "x-ms-request-id": [ - "076ec391-1fc0-4478-96bc-77f0e4c80c53" - ], - "x-ms-correlation-request-id": [ - "076ec391-1fc0-4478-96bc-77f0e4c80c53" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173125Z:076ec391-1fc0-4478-96bc-77f0e4c80c53" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f47545d1-f793-4ce9-889b-de18b0490f48" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11234" - ], - "x-ms-request-id": [ - "9f88c18b-e0c5-404c-86c3-c5bf3644811f" - ], - "x-ms-correlation-request-id": [ - "9f88c18b-e0c5-404c-86c3-c5bf3644811f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173125Z:9f88c18b-e0c5-404c-86c3-c5bf3644811f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3cd8d065-9418-42f9-a101-fe9dc660b538" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11233" - ], - "x-ms-request-id": [ - "b5022325-7e75-41f9-85d6-1f442aa15b88" - ], - "x-ms-correlation-request-id": [ - "b5022325-7e75-41f9-85d6-1f442aa15b88" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173125Z:b5022325-7e75-41f9-85d6-1f442aa15b88" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e346334-abe1-48c2-adb3-0e40afcacfc0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11232" - ], - "x-ms-request-id": [ - "6bfa5e0b-321c-41f9-a564-07ec027fb2e3" - ], - "x-ms-correlation-request-id": [ - "6bfa5e0b-321c-41f9-a564-07ec027fb2e3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173126Z:6bfa5e0b-321c-41f9-a564-07ec027fb2e3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2be9a777-ee8e-4342-80c2-ffa3b4ea514a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11231" - ], - "x-ms-request-id": [ - "746a9e69-d1f7-4186-9955-0cd3f127e17f" - ], - "x-ms-correlation-request-id": [ - "746a9e69-d1f7-4186-9955-0cd3f127e17f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173126Z:746a9e69-d1f7-4186-9955-0cd3f127e17f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "462aa8c9-0436-456a-96cc-89e53b86e620" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11230" - ], - "x-ms-request-id": [ - "b601069d-6572-40f5-9f5e-e9791ca837cb" - ], - "x-ms-correlation-request-id": [ - "b601069d-6572-40f5-9f5e-e9791ca837cb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173126Z:b601069d-6572-40f5-9f5e-e9791ca837cb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a1d4da6-8aca-4268-9804-cfc51af9b5fd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11229" - ], - "x-ms-request-id": [ - "9fcac19a-0013-4827-a5f7-36e2d09d5203" - ], - "x-ms-correlation-request-id": [ - "9fcac19a-0013-4827-a5f7-36e2d09d5203" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173127Z:9fcac19a-0013-4827-a5f7-36e2d09d5203" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "22fd5dc7-62b6-420e-a2d3-e0f0f911cf6b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11228" - ], - "x-ms-request-id": [ - "887a51ce-8501-4fa5-8a12-92b5f0dbb0eb" - ], - "x-ms-correlation-request-id": [ - "887a51ce-8501-4fa5-8a12-92b5f0dbb0eb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173127Z:887a51ce-8501-4fa5-8a12-92b5f0dbb0eb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2ad44cf8-c239-49e6-a2e4-cc63a0d741d0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11227" - ], - "x-ms-request-id": [ - "20215a8b-83f6-45de-b05d-e744cc3465fd" - ], - "x-ms-correlation-request-id": [ - "20215a8b-83f6-45de-b05d-e744cc3465fd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173127Z:20215a8b-83f6-45de-b05d-e744cc3465fd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a0dc9975-e8af-458f-be8b-5397144127f0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11226" - ], - "x-ms-request-id": [ - "e879acc4-b6b6-4e9d-b613-752ebb00d256" - ], - "x-ms-correlation-request-id": [ - "e879acc4-b6b6-4e9d-b613-752ebb00d256" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173127Z:e879acc4-b6b6-4e9d-b613-752ebb00d256" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "df690d08-5c04-4990-896a-a44d9ba97858" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11225" - ], - "x-ms-request-id": [ - "ce1314a6-e116-4965-9ebf-e550f0af83a5" - ], - "x-ms-correlation-request-id": [ - "ce1314a6-e116-4965-9ebf-e550f0af83a5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173128Z:ce1314a6-e116-4965-9ebf-e550f0af83a5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a23cafb2-8861-4686-bf69-02f31601664c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11224" - ], - "x-ms-request-id": [ - "a2da9887-e0b6-4706-9dbb-9d7b6690daca" - ], - "x-ms-correlation-request-id": [ - "a2da9887-e0b6-4706-9dbb-9d7b6690daca" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173128Z:a2da9887-e0b6-4706-9dbb-9d7b6690daca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf5e19cb-9a53-4b15-bf66-27083b4b28ad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11223" - ], - "x-ms-request-id": [ - "f514f312-94c6-40a1-bb3a-c3afe18ea4bb" - ], - "x-ms-correlation-request-id": [ - "f514f312-94c6-40a1-bb3a-c3afe18ea4bb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173128Z:f514f312-94c6-40a1-bb3a-c3afe18ea4bb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37e588ff-819f-48f7-9683-65799cc13ecc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11222" - ], - "x-ms-request-id": [ - "efad16b0-bbef-43e8-ab28-10147c5c1d79" - ], - "x-ms-correlation-request-id": [ - "efad16b0-bbef-43e8-ab28-10147c5c1d79" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173128Z:efad16b0-bbef-43e8-ab28-10147c5c1d79" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ba23794-8202-413c-8690-44d4890e7e42" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11221" - ], - "x-ms-request-id": [ - "5042264c-6f61-4e9d-8b04-c05dc4776f33" - ], - "x-ms-correlation-request-id": [ - "5042264c-6f61-4e9d-8b04-c05dc4776f33" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173129Z:5042264c-6f61-4e9d-8b04-c05dc4776f33" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "af8d95f5-cdb8-403b-ae4a-d6c0cf5795ad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11220" - ], - "x-ms-request-id": [ - "79983c6f-15d5-4acf-b464-08fb3b9505f3" - ], - "x-ms-correlation-request-id": [ - "79983c6f-15d5-4acf-b464-08fb3b9505f3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173129Z:79983c6f-15d5-4acf-b464-08fb3b9505f3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ebfee189-22f1-4ea4-a263-32a45d980663" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11219" - ], - "x-ms-request-id": [ - "1f726a08-a21a-468b-a073-cbc636772507" - ], - "x-ms-correlation-request-id": [ - "1f726a08-a21a-468b-a073-cbc636772507" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173129Z:1f726a08-a21a-468b-a073-cbc636772507" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e984b24-eb30-45c4-ba78-1741a304380e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11218" - ], - "x-ms-request-id": [ - "a24c573f-9167-4e8d-87c8-3ad99fe1ae28" - ], - "x-ms-correlation-request-id": [ - "a24c573f-9167-4e8d-87c8-3ad99fe1ae28" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173129Z:a24c573f-9167-4e8d-87c8-3ad99fe1ae28" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5ce33ddd-bce9-461c-9fbf-50c615038b35" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11217" - ], - "x-ms-request-id": [ - "4ead18d8-2e4e-4082-8dde-e4a62fbd379b" - ], - "x-ms-correlation-request-id": [ - "4ead18d8-2e4e-4082-8dde-e4a62fbd379b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173130Z:4ead18d8-2e4e-4082-8dde-e4a62fbd379b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "601156f9-e9fc-4022-9ff0-d64a762ad07c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11216" - ], - "x-ms-request-id": [ - "e99d6673-7e45-4339-b723-267257b41c43" - ], - "x-ms-correlation-request-id": [ - "e99d6673-7e45-4339-b723-267257b41c43" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173130Z:e99d6673-7e45-4339-b723-267257b41c43" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b18c1105-e15b-4fc6-ad78-f20651ac5eef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11215" - ], - "x-ms-request-id": [ - "fc902629-0503-49df-98f6-93a9713f4da2" - ], - "x-ms-correlation-request-id": [ - "fc902629-0503-49df-98f6-93a9713f4da2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173130Z:fc902629-0503-49df-98f6-93a9713f4da2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ff8b883-52a0-4839-a58f-99bcfb42c2f4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11214" - ], - "x-ms-request-id": [ - "dcb238b6-efe0-40da-9c97-2c77d5f1d6ad" - ], - "x-ms-correlation-request-id": [ - "dcb238b6-efe0-40da-9c97-2c77d5f1d6ad" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173131Z:dcb238b6-efe0-40da-9c97-2c77d5f1d6ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7716b297-5c5f-4029-b1f8-da8d66b24d9f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11213" - ], - "x-ms-request-id": [ - "d3894c29-9381-48a1-a4a8-b2480c098dc6" - ], - "x-ms-correlation-request-id": [ - "d3894c29-9381-48a1-a4a8-b2480c098dc6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173131Z:d3894c29-9381-48a1-a4a8-b2480c098dc6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffefa249-6764-4476-9569-284094ae4887" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11212" - ], - "x-ms-request-id": [ - "2f2c7bb8-8e85-476c-a116-05687508aba8" - ], - "x-ms-correlation-request-id": [ - "2f2c7bb8-8e85-476c-a116-05687508aba8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173131Z:2f2c7bb8-8e85-476c-a116-05687508aba8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b870f454-0549-4f40-acdb-83144b8c170b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11211" - ], - "x-ms-request-id": [ - "8f984c4d-0668-42b2-a05a-ed72727c17e1" - ], - "x-ms-correlation-request-id": [ - "8f984c4d-0668-42b2-a05a-ed72727c17e1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173131Z:8f984c4d-0668-42b2-a05a-ed72727c17e1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e6692f64-bd8c-42eb-9fd4-fee486f196e8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11210" - ], - "x-ms-request-id": [ - "49c5ed35-55ee-4ee7-a3d2-a229f00d3ee3" - ], - "x-ms-correlation-request-id": [ - "49c5ed35-55ee-4ee7-a3d2-a229f00d3ee3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173132Z:49c5ed35-55ee-4ee7-a3d2-a229f00d3ee3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8fd3355a-99d7-4678-ad39-4aee92fad329" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11209" - ], - "x-ms-request-id": [ - "a4d24b5d-05e5-4f7a-a26a-3e2caf543588" - ], - "x-ms-correlation-request-id": [ - "a4d24b5d-05e5-4f7a-a26a-3e2caf543588" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173132Z:a4d24b5d-05e5-4f7a-a26a-3e2caf543588" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1f32c808-39dd-4bd6-83da-7b52334f374b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11208" - ], - "x-ms-request-id": [ - "ab4b6c3e-e38b-4519-82da-e311b0e0ca8a" - ], - "x-ms-correlation-request-id": [ - "ab4b6c3e-e38b-4519-82da-e311b0e0ca8a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173132Z:ab4b6c3e-e38b-4519-82da-e311b0e0ca8a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "29ddb76a-beac-4569-8dd3-6c4d96f409ed" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11207" - ], - "x-ms-request-id": [ - "f86a9a96-1246-463d-b61b-4037a7e456d1" - ], - "x-ms-correlation-request-id": [ - "f86a9a96-1246-463d-b61b-4037a7e456d1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173132Z:f86a9a96-1246-463d-b61b-4037a7e456d1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c3f0c71b-c31e-4707-a126-c7994ab02d24" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11206" - ], - "x-ms-request-id": [ - "f09e0d01-9f10-4814-bdb3-6dbad9a7552b" - ], - "x-ms-correlation-request-id": [ - "f09e0d01-9f10-4814-bdb3-6dbad9a7552b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173133Z:f09e0d01-9f10-4814-bdb3-6dbad9a7552b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0e57ce8b-240d-481a-a514-c2babc25902d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11205" - ], - "x-ms-request-id": [ - "c3c6079d-7a61-47b1-94e1-d1efd13eef53" - ], - "x-ms-correlation-request-id": [ - "c3c6079d-7a61-47b1-94e1-d1efd13eef53" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173133Z:c3c6079d-7a61-47b1-94e1-d1efd13eef53" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e9c651a3-9c00-471c-b350-714808711095" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11204" - ], - "x-ms-request-id": [ - "841e153b-3953-4ea2-831b-863313eaf55d" - ], - "x-ms-correlation-request-id": [ - "841e153b-3953-4ea2-831b-863313eaf55d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173133Z:841e153b-3953-4ea2-831b-863313eaf55d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "17d5c91d-6388-4382-b2df-f34e19d09127" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11203" - ], - "x-ms-request-id": [ - "f71a1a53-dc6b-4165-9ff5-469906cdb804" - ], - "x-ms-correlation-request-id": [ - "f71a1a53-dc6b-4165-9ff5-469906cdb804" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173133Z:f71a1a53-dc6b-4165-9ff5-469906cdb804" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4718f722-6efc-42d6-a81d-4841b4d4a5dc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11202" - ], - "x-ms-request-id": [ - "7b05d7c4-c88e-4e9f-8ba7-7da6e585afbd" - ], - "x-ms-correlation-request-id": [ - "7b05d7c4-c88e-4e9f-8ba7-7da6e585afbd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173134Z:7b05d7c4-c88e-4e9f-8ba7-7da6e585afbd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41982b0c-5081-446d-b31e-7b2f83e43454" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11201" - ], - "x-ms-request-id": [ - "d5cf3637-4f46-4468-aef2-fb9a99528929" - ], - "x-ms-correlation-request-id": [ - "d5cf3637-4f46-4468-aef2-fb9a99528929" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173134Z:d5cf3637-4f46-4468-aef2-fb9a99528929" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1d7f775b-d2bd-4aae-b520-18b29cbec912" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11200" - ], - "x-ms-request-id": [ - "7fffa90e-de56-4d75-9ba7-b146839347de" - ], - "x-ms-correlation-request-id": [ - "7fffa90e-de56-4d75-9ba7-b146839347de" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173134Z:7fffa90e-de56-4d75-9ba7-b146839347de" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3f60751-6193-4c56-adcc-bea1ca0acaad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11199" - ], - "x-ms-request-id": [ - "765f6eb7-a2c2-40a5-94cb-25e8e52ce341" - ], - "x-ms-correlation-request-id": [ - "765f6eb7-a2c2-40a5-94cb-25e8e52ce341" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173135Z:765f6eb7-a2c2-40a5-94cb-25e8e52ce341" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "de3f09da-0668-4fee-b9d8-73c7bd29cd17" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11198" - ], - "x-ms-request-id": [ - "8e531eee-725d-402a-bb1f-eb31335c0b13" - ], - "x-ms-correlation-request-id": [ - "8e531eee-725d-402a-bb1f-eb31335c0b13" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173135Z:8e531eee-725d-402a-bb1f-eb31335c0b13" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a2cfb26d-0e5f-4db4-94c7-c5e42380e51f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11197" - ], - "x-ms-request-id": [ - "302ffe9a-929c-4f70-8d78-0173e0c6f1ab" - ], - "x-ms-correlation-request-id": [ - "302ffe9a-929c-4f70-8d78-0173e0c6f1ab" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173135Z:302ffe9a-929c-4f70-8d78-0173e0c6f1ab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c942150c-5b45-432a-932c-7a8ef922fcbc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11196" - ], - "x-ms-request-id": [ - "db5629f8-0526-4f20-b150-56fd39b30df7" - ], - "x-ms-correlation-request-id": [ - "db5629f8-0526-4f20-b150-56fd39b30df7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173135Z:db5629f8-0526-4f20-b150-56fd39b30df7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a77288a3-0efa-4f46-869c-73f7fd1928de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11195" - ], - "x-ms-request-id": [ - "b0dd23de-6065-4354-8a4f-eaaf5c06c551" - ], - "x-ms-correlation-request-id": [ - "b0dd23de-6065-4354-8a4f-eaaf5c06c551" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173136Z:b0dd23de-6065-4354-8a4f-eaaf5c06c551" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d4345760-b849-4850-84d8-5a158e83a89e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11194" - ], - "x-ms-request-id": [ - "16e81204-5a4b-419b-9596-0d40d121dea4" - ], - "x-ms-correlation-request-id": [ - "16e81204-5a4b-419b-9596-0d40d121dea4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173136Z:16e81204-5a4b-419b-9596-0d40d121dea4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d7f7d605-7bee-4942-ba78-7c3a0daf4e43" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11193" - ], - "x-ms-request-id": [ - "8658edb3-10c6-47fb-b22e-1892fd12e741" - ], - "x-ms-correlation-request-id": [ - "8658edb3-10c6-47fb-b22e-1892fd12e741" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173136Z:8658edb3-10c6-47fb-b22e-1892fd12e741" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eb986a50-e1d5-4b17-8f55-6d9dea9e3452" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11192" - ], - "x-ms-request-id": [ - "a004962f-8f3a-470c-b185-8a6950ef9463" - ], - "x-ms-correlation-request-id": [ - "a004962f-8f3a-470c-b185-8a6950ef9463" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173136Z:a004962f-8f3a-470c-b185-8a6950ef9463" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "be55652c-5530-4599-8aa2-5946041eed86" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11191" - ], - "x-ms-request-id": [ - "f9456f3e-a379-4fdc-a2cf-9ce034c891b4" - ], - "x-ms-correlation-request-id": [ - "f9456f3e-a379-4fdc-a2cf-9ce034c891b4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173137Z:f9456f3e-a379-4fdc-a2cf-9ce034c891b4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9794a9f2-7358-4f5c-833c-0d27c4c28e06" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11190" - ], - "x-ms-request-id": [ - "0773bc06-f48e-4a96-9252-8502e7ff08d3" - ], - "x-ms-correlation-request-id": [ - "0773bc06-f48e-4a96-9252-8502e7ff08d3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173137Z:0773bc06-f48e-4a96-9252-8502e7ff08d3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55729514-b2ae-465a-9720-01da571966de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11189" - ], - "x-ms-request-id": [ - "7de98781-777e-471d-a817-6e89e5ba8d43" - ], - "x-ms-correlation-request-id": [ - "7de98781-777e-471d-a817-6e89e5ba8d43" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173137Z:7de98781-777e-471d-a817-6e89e5ba8d43" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81919165-d8fd-4be0-8ab2-f9b488e0b300" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11188" - ], - "x-ms-request-id": [ - "016ac567-5bb0-4701-9f9b-85181086f1a6" - ], - "x-ms-correlation-request-id": [ - "016ac567-5bb0-4701-9f9b-85181086f1a6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173137Z:016ac567-5bb0-4701-9f9b-85181086f1a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e33a869-5bbc-4110-a515-e55d83ffbd34" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11187" - ], - "x-ms-request-id": [ - "4e8583cf-6a7a-4868-9d96-a38a8a6194b5" - ], - "x-ms-correlation-request-id": [ - "4e8583cf-6a7a-4868-9d96-a38a8a6194b5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173138Z:4e8583cf-6a7a-4868-9d96-a38a8a6194b5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f4faad5a-6303-4453-895c-4838ccf434c3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11186" - ], - "x-ms-request-id": [ - "a4c11e8c-3725-4883-8c31-215a838c5809" - ], - "x-ms-correlation-request-id": [ - "a4c11e8c-3725-4883-8c31-215a838c5809" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173138Z:a4c11e8c-3725-4883-8c31-215a838c5809" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "10aeaab8-20ce-4cc5-b0b3-d9c9d536c9fe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11185" - ], - "x-ms-request-id": [ - "8311bf51-7540-4f81-bc6f-3a17a84c8d4b" - ], - "x-ms-correlation-request-id": [ - "8311bf51-7540-4f81-bc6f-3a17a84c8d4b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173138Z:8311bf51-7540-4f81-bc6f-3a17a84c8d4b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eec29a6b-351f-47f0-bdf7-3528920992cc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11184" - ], - "x-ms-request-id": [ - "c07056d9-7587-430e-b5b5-b06090fd9fca" - ], - "x-ms-correlation-request-id": [ - "c07056d9-7587-430e-b5b5-b06090fd9fca" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173139Z:c07056d9-7587-430e-b5b5-b06090fd9fca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f1f75923-5869-4c55-8459-d86dc2eef5c1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11183" - ], - "x-ms-request-id": [ - "7c8bc84a-49b2-40d9-b6aa-08e04fcf70b6" - ], - "x-ms-correlation-request-id": [ - "7c8bc84a-49b2-40d9-b6aa-08e04fcf70b6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173139Z:7c8bc84a-49b2-40d9-b6aa-08e04fcf70b6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6e2a564-d2df-4e25-aa21-65247d53cd23" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11182" - ], - "x-ms-request-id": [ - "38956fd4-339a-40d9-9c1d-f21aac29f032" - ], - "x-ms-correlation-request-id": [ - "38956fd4-339a-40d9-9c1d-f21aac29f032" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173139Z:38956fd4-339a-40d9-9c1d-f21aac29f032" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "78f750d1-1ddc-4542-98cb-5d0dce0dc7bd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11181" - ], - "x-ms-request-id": [ - "53639c3b-2332-4ad7-9b83-7b4899da55a0" - ], - "x-ms-correlation-request-id": [ - "53639c3b-2332-4ad7-9b83-7b4899da55a0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173139Z:53639c3b-2332-4ad7-9b83-7b4899da55a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d474236-ba98-4150-9215-aaab9ec23f0b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11180" - ], - "x-ms-request-id": [ - "b5ccfca7-a99f-4f1f-b31b-d00eb880584d" - ], - "x-ms-correlation-request-id": [ - "b5ccfca7-a99f-4f1f-b31b-d00eb880584d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173140Z:b5ccfca7-a99f-4f1f-b31b-d00eb880584d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f265c0d5-dfa4-42d2-a1db-6408e53a29dd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11179" - ], - "x-ms-request-id": [ - "f7e8b8c3-87ac-45af-a7f1-d2a8cf2af7fb" - ], - "x-ms-correlation-request-id": [ - "f7e8b8c3-87ac-45af-a7f1-d2a8cf2af7fb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173140Z:f7e8b8c3-87ac-45af-a7f1-d2a8cf2af7fb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ea11f0b-ef4e-4151-9a37-d51977519109" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11178" - ], - "x-ms-request-id": [ - "d1ceb7cc-392b-497f-9baa-0e41a0098c09" - ], - "x-ms-correlation-request-id": [ - "d1ceb7cc-392b-497f-9baa-0e41a0098c09" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173140Z:d1ceb7cc-392b-497f-9baa-0e41a0098c09" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6739004c-eb6e-4366-8617-f466d97dab97" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11177" - ], - "x-ms-request-id": [ - "cd18fa56-43ee-4806-a5d9-99b526435b35" - ], - "x-ms-correlation-request-id": [ - "cd18fa56-43ee-4806-a5d9-99b526435b35" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173140Z:cd18fa56-43ee-4806-a5d9-99b526435b35" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cce6b5e3-1038-4828-af73-142cbf73f2d5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11176" - ], - "x-ms-request-id": [ - "88dd4d03-307a-41c9-985a-e3dce8dd5f6c" - ], - "x-ms-correlation-request-id": [ - "88dd4d03-307a-41c9-985a-e3dce8dd5f6c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173141Z:88dd4d03-307a-41c9-985a-e3dce8dd5f6c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e9f5e03f-42e6-4a77-8ea0-d2c072b5b24d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11175" - ], - "x-ms-request-id": [ - "0680af39-a581-4706-91e3-a9efce76cf36" - ], - "x-ms-correlation-request-id": [ - "0680af39-a581-4706-91e3-a9efce76cf36" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173141Z:0680af39-a581-4706-91e3-a9efce76cf36" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5eeeb6a4-1540-46ab-9bbe-7c81f9f8c64d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11174" - ], - "x-ms-request-id": [ - "7798e179-00ac-4ed3-8a76-0c26fe78cd8a" - ], - "x-ms-correlation-request-id": [ - "7798e179-00ac-4ed3-8a76-0c26fe78cd8a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173141Z:7798e179-00ac-4ed3-8a76-0c26fe78cd8a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "44c30f9e-9f1f-4a06-ae6a-1bb98e08e0fe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11173" - ], - "x-ms-request-id": [ - "69217570-598c-4fa1-8f18-519300c6b165" - ], - "x-ms-correlation-request-id": [ - "69217570-598c-4fa1-8f18-519300c6b165" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173142Z:69217570-598c-4fa1-8f18-519300c6b165" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7fdb296a-a0d3-4ad6-b776-a400f8cd81d9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11172" - ], - "x-ms-request-id": [ - "6307261b-c709-4f96-9593-4a0d599c6a16" - ], - "x-ms-correlation-request-id": [ - "6307261b-c709-4f96-9593-4a0d599c6a16" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173142Z:6307261b-c709-4f96-9593-4a0d599c6a16" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f198227e-e699-452c-a09d-182f3c6112d6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11171" - ], - "x-ms-request-id": [ - "f5193a67-a526-4ac1-8472-82f303abb61e" - ], - "x-ms-correlation-request-id": [ - "f5193a67-a526-4ac1-8472-82f303abb61e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173142Z:f5193a67-a526-4ac1-8472-82f303abb61e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a477587-1317-4066-bed6-bbdf65874058" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11170" - ], - "x-ms-request-id": [ - "796c326b-b39f-4eed-9589-b61bf6204808" - ], - "x-ms-correlation-request-id": [ - "796c326b-b39f-4eed-9589-b61bf6204808" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173142Z:796c326b-b39f-4eed-9589-b61bf6204808" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d1aebb40-f8ad-4eec-bd94-f735ce1096d4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11169" - ], - "x-ms-request-id": [ - "8204f105-d1f7-4ad2-8883-4173e30383ce" - ], - "x-ms-correlation-request-id": [ - "8204f105-d1f7-4ad2-8883-4173e30383ce" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173143Z:8204f105-d1f7-4ad2-8883-4173e30383ce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c763eb0a-dd95-460e-b531-9fbf269d3630" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11168" - ], - "x-ms-request-id": [ - "2f0f266c-bb04-4aac-867a-a186f94e131c" - ], - "x-ms-correlation-request-id": [ - "2f0f266c-bb04-4aac-867a-a186f94e131c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173143Z:2f0f266c-bb04-4aac-867a-a186f94e131c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "592fd81f-8329-49dc-8fc7-3614beee9591" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11167" - ], - "x-ms-request-id": [ - "d427c661-06e5-4eb0-bdea-9491deabe0b5" - ], - "x-ms-correlation-request-id": [ - "d427c661-06e5-4eb0-bdea-9491deabe0b5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173143Z:d427c661-06e5-4eb0-bdea-9491deabe0b5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ec15117b-7d13-4105-b47f-4185f324da56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11166" - ], - "x-ms-request-id": [ - "34849a3d-1f79-482c-aeff-27435bfdd67e" - ], - "x-ms-correlation-request-id": [ - "34849a3d-1f79-482c-aeff-27435bfdd67e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173143Z:34849a3d-1f79-482c-aeff-27435bfdd67e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9126c101-8d97-42de-936a-b62628016475" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11165" - ], - "x-ms-request-id": [ - "f2df8c02-466d-4e2f-a517-f9d7a37e6c7b" - ], - "x-ms-correlation-request-id": [ - "f2df8c02-466d-4e2f-a517-f9d7a37e6c7b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173144Z:f2df8c02-466d-4e2f-a517-f9d7a37e6c7b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "759dc238-85c6-4505-9034-71350d87f538" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11164" - ], - "x-ms-request-id": [ - "ae73e4db-4e46-4950-8d7e-f77f538147f6" - ], - "x-ms-correlation-request-id": [ - "ae73e4db-4e46-4950-8d7e-f77f538147f6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173144Z:ae73e4db-4e46-4950-8d7e-f77f538147f6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ce4fdf5-90ef-4870-b3f5-463414c3d494" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11163" - ], - "x-ms-request-id": [ - "c5d994ce-4321-4e76-80fd-33a7a5bdd5ff" - ], - "x-ms-correlation-request-id": [ - "c5d994ce-4321-4e76-80fd-33a7a5bdd5ff" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173144Z:c5d994ce-4321-4e76-80fd-33a7a5bdd5ff" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "65d390b3-a2cb-43ee-8178-693366308951" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11162" - ], - "x-ms-request-id": [ - "35626538-77c3-4177-8984-43bc6523e931" - ], - "x-ms-correlation-request-id": [ - "35626538-77c3-4177-8984-43bc6523e931" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173144Z:35626538-77c3-4177-8984-43bc6523e931" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8f5547a9-b996-4150-9157-6a0137e306d5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11161" - ], - "x-ms-request-id": [ - "84afa760-eabe-4cde-83e0-44e052afa9fc" - ], - "x-ms-correlation-request-id": [ - "84afa760-eabe-4cde-83e0-44e052afa9fc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173145Z:84afa760-eabe-4cde-83e0-44e052afa9fc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c69a1321-9dc4-4345-b7a5-9251d2ca0446" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11160" - ], - "x-ms-request-id": [ - "119d18a1-0382-4ee1-949d-136e39cdf0dd" - ], - "x-ms-correlation-request-id": [ - "119d18a1-0382-4ee1-949d-136e39cdf0dd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173145Z:119d18a1-0382-4ee1-949d-136e39cdf0dd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9a13b2c4-ff85-40fe-834a-43431e14766e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11159" - ], - "x-ms-request-id": [ - "9640308d-a79b-46b5-993c-139667c66f46" - ], - "x-ms-correlation-request-id": [ - "9640308d-a79b-46b5-993c-139667c66f46" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173145Z:9640308d-a79b-46b5-993c-139667c66f46" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3e26dfed-c03e-4632-b505-52abdc51aa64" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11158" - ], - "x-ms-request-id": [ - "38277b5c-5637-48ba-9afb-a3365f011c05" - ], - "x-ms-correlation-request-id": [ - "38277b5c-5637-48ba-9afb-a3365f011c05" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173146Z:38277b5c-5637-48ba-9afb-a3365f011c05" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a46c8d7-f184-46c9-b51e-ba7e50e36085" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11157" - ], - "x-ms-request-id": [ - "0a1b5dfa-dcd8-47e6-8186-9eb269d0107a" - ], - "x-ms-correlation-request-id": [ - "0a1b5dfa-dcd8-47e6-8186-9eb269d0107a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173146Z:0a1b5dfa-dcd8-47e6-8186-9eb269d0107a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a2c1514-68e8-48d6-ae02-d353ffb44fe7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11156" - ], - "x-ms-request-id": [ - "0db089f1-bd8b-4e64-849d-07893d690a66" - ], - "x-ms-correlation-request-id": [ - "0db089f1-bd8b-4e64-849d-07893d690a66" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173146Z:0db089f1-bd8b-4e64-849d-07893d690a66" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d4c02b5-e7c2-4d1a-94c4-cf5bec71ea63" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11155" - ], - "x-ms-request-id": [ - "639ab59a-543e-46c6-9519-c4577c5e4a10" - ], - "x-ms-correlation-request-id": [ - "639ab59a-543e-46c6-9519-c4577c5e4a10" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173146Z:639ab59a-543e-46c6-9519-c4577c5e4a10" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "69c8b949-0090-4fc4-bd5d-0f7cda32b6c7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11154" - ], - "x-ms-request-id": [ - "4180adaf-4551-45c1-bdf9-b25bf3c9e9c4" - ], - "x-ms-correlation-request-id": [ - "4180adaf-4551-45c1-bdf9-b25bf3c9e9c4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173147Z:4180adaf-4551-45c1-bdf9-b25bf3c9e9c4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d910c15-9d71-4c11-a170-70872b54fd60" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11153" - ], - "x-ms-request-id": [ - "5a6c0aa9-e09a-4e47-b766-9eba03b1aec4" - ], - "x-ms-correlation-request-id": [ - "5a6c0aa9-e09a-4e47-b766-9eba03b1aec4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173147Z:5a6c0aa9-e09a-4e47-b766-9eba03b1aec4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09e85376-a7a9-4137-a0e3-0be7c089bd7b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11152" - ], - "x-ms-request-id": [ - "f4a46d77-7c8d-4559-8c77-078d993110d8" - ], - "x-ms-correlation-request-id": [ - "f4a46d77-7c8d-4559-8c77-078d993110d8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173147Z:f4a46d77-7c8d-4559-8c77-078d993110d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dfdde567-bc37-425f-b599-283c1bba70f4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11151" - ], - "x-ms-request-id": [ - "bce566cf-dfbd-4ddb-beae-4a87267b7c7a" - ], - "x-ms-correlation-request-id": [ - "bce566cf-dfbd-4ddb-beae-4a87267b7c7a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173147Z:bce566cf-dfbd-4ddb-beae-4a87267b7c7a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "36f3e049-3798-48b8-ae7c-2b590ddcd18e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11150" - ], - "x-ms-request-id": [ - "d2de8f58-1111-4d09-8fd6-73c7338c61ff" - ], - "x-ms-correlation-request-id": [ - "d2de8f58-1111-4d09-8fd6-73c7338c61ff" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173148Z:d2de8f58-1111-4d09-8fd6-73c7338c61ff" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d5f6c149-9da8-41a2-8dc1-18ae4b5424bf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11149" - ], - "x-ms-request-id": [ - "92859c18-a956-4b36-87af-0914831edfdd" - ], - "x-ms-correlation-request-id": [ - "92859c18-a956-4b36-87af-0914831edfdd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173148Z:92859c18-a956-4b36-87af-0914831edfdd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23795638-f02c-461e-ad29-05e591430d78" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11148" - ], - "x-ms-request-id": [ - "ebd09f92-3c2d-48d8-82c8-49f3462a0996" - ], - "x-ms-correlation-request-id": [ - "ebd09f92-3c2d-48d8-82c8-49f3462a0996" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173148Z:ebd09f92-3c2d-48d8-82c8-49f3462a0996" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "639dcd7b-c5c9-4267-bb05-4d51585cfc0a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11147" - ], - "x-ms-request-id": [ - "5221aed1-7117-4d04-9809-e49d7b41c702" - ], - "x-ms-correlation-request-id": [ - "5221aed1-7117-4d04-9809-e49d7b41c702" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173149Z:5221aed1-7117-4d04-9809-e49d7b41c702" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f430b03c-8907-4725-b5c3-3aee855c62ca" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11146" - ], - "x-ms-request-id": [ - "ac61dd1c-4721-4333-acf6-ae7cf879b459" - ], - "x-ms-correlation-request-id": [ - "ac61dd1c-4721-4333-acf6-ae7cf879b459" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173149Z:ac61dd1c-4721-4333-acf6-ae7cf879b459" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1d13a1e5-4c90-4de4-bab2-538bd8b1e39d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11145" - ], - "x-ms-request-id": [ - "4a3a97a4-10e9-4d4f-b145-82e6fe4af667" - ], - "x-ms-correlation-request-id": [ - "4a3a97a4-10e9-4d4f-b145-82e6fe4af667" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173149Z:4a3a97a4-10e9-4d4f-b145-82e6fe4af667" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8cd296ae-1b36-488d-a4ba-e0d00ddf89e3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11144" - ], - "x-ms-request-id": [ - "6efc7e7c-d7f3-4578-b5a4-ee4d82e3d2fa" - ], - "x-ms-correlation-request-id": [ - "6efc7e7c-d7f3-4578-b5a4-ee4d82e3d2fa" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173149Z:6efc7e7c-d7f3-4578-b5a4-ee4d82e3d2fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "128797d8-1e26-445d-9054-8a81e3087cf0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11143" - ], - "x-ms-request-id": [ - "a1a75949-43fd-4f69-b47b-a0901cbf0b71" - ], - "x-ms-correlation-request-id": [ - "a1a75949-43fd-4f69-b47b-a0901cbf0b71" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173150Z:a1a75949-43fd-4f69-b47b-a0901cbf0b71" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e901b7ed-e079-4084-8019-7a2c0e24f026" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11142" - ], - "x-ms-request-id": [ - "3f551dca-dafb-471d-a5fc-1dddfe8cfcf0" - ], - "x-ms-correlation-request-id": [ - "3f551dca-dafb-471d-a5fc-1dddfe8cfcf0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173150Z:3f551dca-dafb-471d-a5fc-1dddfe8cfcf0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ab9aa1a-e02f-4874-baf3-19e3fb356cde" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11141" - ], - "x-ms-request-id": [ - "2ecc882a-0011-4aa4-95d4-77488e78febc" - ], - "x-ms-correlation-request-id": [ - "2ecc882a-0011-4aa4-95d4-77488e78febc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173150Z:2ecc882a-0011-4aa4-95d4-77488e78febc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9fa19e40-16ce-4ecd-a1a6-a7cd36152df6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11140" - ], - "x-ms-request-id": [ - "56dc0f64-cf98-4508-ac63-9ea799eec0a1" - ], - "x-ms-correlation-request-id": [ - "56dc0f64-cf98-4508-ac63-9ea799eec0a1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173150Z:56dc0f64-cf98-4508-ac63-9ea799eec0a1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7133a700-a79b-4f88-aa06-6d9330b68c37" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11139" - ], - "x-ms-request-id": [ - "e7a0fbbd-10ba-4352-9143-7e854e8a4024" - ], - "x-ms-correlation-request-id": [ - "e7a0fbbd-10ba-4352-9143-7e854e8a4024" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173151Z:e7a0fbbd-10ba-4352-9143-7e854e8a4024" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52a55f38-6127-4405-9b2b-c8432b526992" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11138" - ], - "x-ms-request-id": [ - "b6ab092d-e96f-43cb-93e6-864660287301" - ], - "x-ms-correlation-request-id": [ - "b6ab092d-e96f-43cb-93e6-864660287301" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173151Z:b6ab092d-e96f-43cb-93e6-864660287301" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "54cfd7b0-f6f5-4c04-ab66-4dfc7bc4e0e8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11137" - ], - "x-ms-request-id": [ - "f996a458-e73b-474e-b85c-0eea944b0b4b" - ], - "x-ms-correlation-request-id": [ - "f996a458-e73b-474e-b85c-0eea944b0b4b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173151Z:f996a458-e73b-474e-b85c-0eea944b0b4b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4f1b71b1-2ceb-48e4-9407-395674ca2c33" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11136" - ], - "x-ms-request-id": [ - "0be257f7-f1c1-40f2-961b-f234ba2bcf56" - ], - "x-ms-correlation-request-id": [ - "0be257f7-f1c1-40f2-961b-f234ba2bcf56" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173152Z:0be257f7-f1c1-40f2-961b-f234ba2bcf56" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f5f59a62-e623-4c3b-bf53-ba425f7697b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11135" - ], - "x-ms-request-id": [ - "da3a3362-5f24-475a-aeff-c591db3b16a2" - ], - "x-ms-correlation-request-id": [ - "da3a3362-5f24-475a-aeff-c591db3b16a2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173152Z:da3a3362-5f24-475a-aeff-c591db3b16a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1eb971f0-d4e6-432c-a050-804ab77c89ea" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11134" - ], - "x-ms-request-id": [ - "d4856cf3-e5eb-4d55-8010-4defb77d10a0" - ], - "x-ms-correlation-request-id": [ - "d4856cf3-e5eb-4d55-8010-4defb77d10a0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173152Z:d4856cf3-e5eb-4d55-8010-4defb77d10a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "954844b1-9986-4bef-9583-ff94d1942373" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11133" - ], - "x-ms-request-id": [ - "ccb6368b-7d45-47a1-b725-928996e5dc8e" - ], - "x-ms-correlation-request-id": [ - "ccb6368b-7d45-47a1-b725-928996e5dc8e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173152Z:ccb6368b-7d45-47a1-b725-928996e5dc8e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5dc7cfff-7087-491e-860d-068f0ea5091e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11132" - ], - "x-ms-request-id": [ - "507d4411-6417-43a3-abaf-00a222ea5fb2" - ], - "x-ms-correlation-request-id": [ - "507d4411-6417-43a3-abaf-00a222ea5fb2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173153Z:507d4411-6417-43a3-abaf-00a222ea5fb2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "df6de5d6-65b0-4ebc-899e-60369c709001" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11131" - ], - "x-ms-request-id": [ - "2a126354-4fd2-4ad8-bb85-e896b55e3ef4" - ], - "x-ms-correlation-request-id": [ - "2a126354-4fd2-4ad8-bb85-e896b55e3ef4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173153Z:2a126354-4fd2-4ad8-bb85-e896b55e3ef4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "690422c6-1d7b-4573-bfcb-d892222be504" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11130" - ], - "x-ms-request-id": [ - "0201cefd-83d6-4d37-9d8b-b59515e0709a" - ], - "x-ms-correlation-request-id": [ - "0201cefd-83d6-4d37-9d8b-b59515e0709a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173153Z:0201cefd-83d6-4d37-9d8b-b59515e0709a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "04e26568-9606-447d-82fc-1098a6549996" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11129" - ], - "x-ms-request-id": [ - "4aff69cf-50fc-46e4-8345-be81b98fe28b" - ], - "x-ms-correlation-request-id": [ - "4aff69cf-50fc-46e4-8345-be81b98fe28b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173153Z:4aff69cf-50fc-46e4-8345-be81b98fe28b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a7a7919f-dcff-49cc-b202-620298a49264" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11128" - ], - "x-ms-request-id": [ - "ed9d5711-cdb1-416f-a158-ae9f1e51b74d" - ], - "x-ms-correlation-request-id": [ - "ed9d5711-cdb1-416f-a158-ae9f1e51b74d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173154Z:ed9d5711-cdb1-416f-a158-ae9f1e51b74d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f051f14-0078-49e7-869e-71096c1b4fc8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11127" - ], - "x-ms-request-id": [ - "6666178a-a2ea-432c-ad33-fbc0c8237542" - ], - "x-ms-correlation-request-id": [ - "6666178a-a2ea-432c-ad33-fbc0c8237542" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173154Z:6666178a-a2ea-432c-ad33-fbc0c8237542" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c94a211-0072-4ecd-801e-ca069c9e1bf4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11126" - ], - "x-ms-request-id": [ - "730bb0b7-d951-423c-bce7-bfee25b01b0e" - ], - "x-ms-correlation-request-id": [ - "730bb0b7-d951-423c-bce7-bfee25b01b0e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173154Z:730bb0b7-d951-423c-bce7-bfee25b01b0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9a41b487-c3c6-458d-9b3e-83854c743695" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11125" - ], - "x-ms-request-id": [ - "2f7b6e69-4432-4c77-be4e-1af6da8dbaa5" - ], - "x-ms-correlation-request-id": [ - "2f7b6e69-4432-4c77-be4e-1af6da8dbaa5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173154Z:2f7b6e69-4432-4c77-be4e-1af6da8dbaa5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5dbc0202-3142-4a2d-9e89-7236b6fe123d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11124" - ], - "x-ms-request-id": [ - "f019d743-b202-4329-b7bb-ca11495315e8" - ], - "x-ms-correlation-request-id": [ - "f019d743-b202-4329-b7bb-ca11495315e8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173155Z:f019d743-b202-4329-b7bb-ca11495315e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c696ba1d-12dc-4c2b-bfdc-badbcba54e6f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11123" - ], - "x-ms-request-id": [ - "ebd3d159-4654-4665-82f5-fec54b0a5af0" - ], - "x-ms-correlation-request-id": [ - "ebd3d159-4654-4665-82f5-fec54b0a5af0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173155Z:ebd3d159-4654-4665-82f5-fec54b0a5af0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6949a782-c0f5-49b5-b0c2-91f292c3a81f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11122" - ], - "x-ms-request-id": [ - "9f5702b0-daf5-4eb5-aa36-b171a711f40a" - ], - "x-ms-correlation-request-id": [ - "9f5702b0-daf5-4eb5-aa36-b171a711f40a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173155Z:9f5702b0-daf5-4eb5-aa36-b171a711f40a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "73952de4-fe5b-41e3-b79d-b0f9abafd12a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11121" - ], - "x-ms-request-id": [ - "fdcecd3c-165e-413a-9f1a-a67e701fbec1" - ], - "x-ms-correlation-request-id": [ - "fdcecd3c-165e-413a-9f1a-a67e701fbec1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173156Z:fdcecd3c-165e-413a-9f1a-a67e701fbec1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "32c7e8b7-8f2f-4aa6-8f65-b026c2c3af0a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11120" - ], - "x-ms-request-id": [ - "e043116b-5400-4253-8bba-2b4d7913252d" - ], - "x-ms-correlation-request-id": [ - "e043116b-5400-4253-8bba-2b4d7913252d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173156Z:e043116b-5400-4253-8bba-2b4d7913252d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "14a887fc-b860-400d-99f9-865ee1eb97aa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11119" - ], - "x-ms-request-id": [ - "f8a2548b-0150-4f4d-a0fc-0794a2f5dd15" - ], - "x-ms-correlation-request-id": [ - "f8a2548b-0150-4f4d-a0fc-0794a2f5dd15" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173156Z:f8a2548b-0150-4f4d-a0fc-0794a2f5dd15" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9476093a-058a-4656-8747-d6b699f6fb39" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11118" - ], - "x-ms-request-id": [ - "3e572cda-576b-4ee9-a39e-8a2596ed644e" - ], - "x-ms-correlation-request-id": [ - "3e572cda-576b-4ee9-a39e-8a2596ed644e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173156Z:3e572cda-576b-4ee9-a39e-8a2596ed644e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c26c6005-5f1e-4f4b-9e57-607679df0963" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11117" - ], - "x-ms-request-id": [ - "eb5c591b-66b7-4c96-803a-408cabc0b173" - ], - "x-ms-correlation-request-id": [ - "eb5c591b-66b7-4c96-803a-408cabc0b173" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173157Z:eb5c591b-66b7-4c96-803a-408cabc0b173" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f98ebb95-36c6-4342-9ba9-ba148940d0c7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11116" - ], - "x-ms-request-id": [ - "0957413a-252a-49bf-a730-7f0d9299068f" - ], - "x-ms-correlation-request-id": [ - "0957413a-252a-49bf-a730-7f0d9299068f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173157Z:0957413a-252a-49bf-a730-7f0d9299068f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "157930d1-4403-42b9-9c3a-9a88e0a7786f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11115" - ], - "x-ms-request-id": [ - "fa7a37f3-52ec-4178-a55d-3adf47d28613" - ], - "x-ms-correlation-request-id": [ - "fa7a37f3-52ec-4178-a55d-3adf47d28613" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173157Z:fa7a37f3-52ec-4178-a55d-3adf47d28613" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "df9bdaa1-5ba7-4b0b-bb9b-5642fa93858c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11114" - ], - "x-ms-request-id": [ - "a3ad1c7d-62f8-41f9-bdba-f4d80c81b83e" - ], - "x-ms-correlation-request-id": [ - "a3ad1c7d-62f8-41f9-bdba-f4d80c81b83e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173157Z:a3ad1c7d-62f8-41f9-bdba-f4d80c81b83e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fb2cb5ab-91ca-4ba2-a382-f91fa6f70fee" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11113" - ], - "x-ms-request-id": [ - "32109f95-2751-431a-a6f3-fc7efb287e2c" - ], - "x-ms-correlation-request-id": [ - "32109f95-2751-431a-a6f3-fc7efb287e2c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173158Z:32109f95-2751-431a-a6f3-fc7efb287e2c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e5d2fba9-eaeb-484d-9755-307951d54025" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11112" - ], - "x-ms-request-id": [ - "6e683017-0fd1-4228-8c5b-67b991f9f6f2" - ], - "x-ms-correlation-request-id": [ - "6e683017-0fd1-4228-8c5b-67b991f9f6f2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173158Z:6e683017-0fd1-4228-8c5b-67b991f9f6f2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d076b5cf-2baf-482c-a173-087a5a49ba2e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11111" - ], - "x-ms-request-id": [ - "1b09f55f-adf1-411a-8a2a-6d1fc8248aee" - ], - "x-ms-correlation-request-id": [ - "1b09f55f-adf1-411a-8a2a-6d1fc8248aee" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173158Z:1b09f55f-adf1-411a-8a2a-6d1fc8248aee" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4abedbb6-738d-4fe4-88b4-345ed967221d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11110" - ], - "x-ms-request-id": [ - "0f4613ad-765b-46c2-b40a-077682bd0231" - ], - "x-ms-correlation-request-id": [ - "0f4613ad-765b-46c2-b40a-077682bd0231" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173158Z:0f4613ad-765b-46c2-b40a-077682bd0231" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "479168d6-f0c5-4968-b996-d83afe326d73" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11109" - ], - "x-ms-request-id": [ - "4704a4d9-03e3-482d-ad00-f96ca94ee9c1" - ], - "x-ms-correlation-request-id": [ - "4704a4d9-03e3-482d-ad00-f96ca94ee9c1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173159Z:4704a4d9-03e3-482d-ad00-f96ca94ee9c1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41086e81-c094-45aa-967e-afb12fcb9e2c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11108" - ], - "x-ms-request-id": [ - "b4bcdf07-fce5-4aa9-8cf2-62c9b2045470" - ], - "x-ms-correlation-request-id": [ - "b4bcdf07-fce5-4aa9-8cf2-62c9b2045470" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173159Z:b4bcdf07-fce5-4aa9-8cf2-62c9b2045470" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ae663e04-7b5d-4cb4-a377-1e3a8708c295" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11107" - ], - "x-ms-request-id": [ - "e4e38379-d48f-461e-a729-f2262d1bfa61" - ], - "x-ms-correlation-request-id": [ - "e4e38379-d48f-461e-a729-f2262d1bfa61" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173159Z:e4e38379-d48f-461e-a729-f2262d1bfa61" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "512a4337-bb14-4de3-8478-a347a766854f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11106" - ], - "x-ms-request-id": [ - "c0eaa6a8-7a7c-49a5-8922-2c2803f5466e" - ], - "x-ms-correlation-request-id": [ - "c0eaa6a8-7a7c-49a5-8922-2c2803f5466e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173200Z:c0eaa6a8-7a7c-49a5-8922-2c2803f5466e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c2df421e-cd9a-4a66-b213-0941e39c1b09" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11105" - ], - "x-ms-request-id": [ - "d49d9363-22bf-466e-a932-7a76eadfd468" - ], - "x-ms-correlation-request-id": [ - "d49d9363-22bf-466e-a932-7a76eadfd468" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173200Z:d49d9363-22bf-466e-a932-7a76eadfd468" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:31:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59e16629-6991-4d75-b5d5-d2f12744cf5a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11104" - ], - "x-ms-request-id": [ - "d6d63c62-d3ea-4386-9d9f-1ebb3b372831" - ], - "x-ms-correlation-request-id": [ - "d6d63c62-d3ea-4386-9d9f-1ebb3b372831" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173200Z:d6d63c62-d3ea-4386-9d9f-1ebb3b372831" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d06349a0-7927-4d2c-bdcf-e273790f027a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11103" - ], - "x-ms-request-id": [ - "061c72ed-1210-4b44-818b-d68005f7654c" - ], - "x-ms-correlation-request-id": [ - "061c72ed-1210-4b44-818b-d68005f7654c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173200Z:061c72ed-1210-4b44-818b-d68005f7654c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "759c8d01-617c-4c76-bd44-eab824eefd3d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11102" - ], - "x-ms-request-id": [ - "3cfacc21-df6f-49e4-89ec-bb09e82a76b9" - ], - "x-ms-correlation-request-id": [ - "3cfacc21-df6f-49e4-89ec-bb09e82a76b9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173201Z:3cfacc21-df6f-49e4-89ec-bb09e82a76b9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "39e33eed-62ad-479b-a271-7214fcabc762" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11101" - ], - "x-ms-request-id": [ - "5c994923-861a-4efd-99ca-5ae6172f195e" - ], - "x-ms-correlation-request-id": [ - "5c994923-861a-4efd-99ca-5ae6172f195e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173201Z:5c994923-861a-4efd-99ca-5ae6172f195e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b0691fb-1090-48e4-adac-377d43a225d0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11100" - ], - "x-ms-request-id": [ - "006f0795-081d-4289-ab68-a85c31dbd943" - ], - "x-ms-correlation-request-id": [ - "006f0795-081d-4289-ab68-a85c31dbd943" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173201Z:006f0795-081d-4289-ab68-a85c31dbd943" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1699601e-d9c4-4c03-839a-cef37e92e07c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11099" - ], - "x-ms-request-id": [ - "138d6839-fffc-4649-a98e-a0299ff63406" - ], - "x-ms-correlation-request-id": [ - "138d6839-fffc-4649-a98e-a0299ff63406" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173201Z:138d6839-fffc-4649-a98e-a0299ff63406" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ec1c8aa3-5d02-429d-a7ee-8ee169a045dc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11098" - ], - "x-ms-request-id": [ - "75b237df-c03d-4987-a5cc-7a21d25a9b7c" - ], - "x-ms-correlation-request-id": [ - "75b237df-c03d-4987-a5cc-7a21d25a9b7c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173202Z:75b237df-c03d-4987-a5cc-7a21d25a9b7c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dbad0076-4c5d-48e0-90f8-c1cba27e55de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11097" - ], - "x-ms-request-id": [ - "d558969f-47bd-4b0f-83c2-1822bccb3167" - ], - "x-ms-correlation-request-id": [ - "d558969f-47bd-4b0f-83c2-1822bccb3167" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173202Z:d558969f-47bd-4b0f-83c2-1822bccb3167" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cba80e1d-c2e2-429f-b904-c23f39e191be" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11096" - ], - "x-ms-request-id": [ - "73285780-9f37-4a2b-968f-ee3dbe6cd3cc" - ], - "x-ms-correlation-request-id": [ - "73285780-9f37-4a2b-968f-ee3dbe6cd3cc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173202Z:73285780-9f37-4a2b-968f-ee3dbe6cd3cc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c1ee1a4-baa4-43a2-94e7-1557b3de6cd4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11095" - ], - "x-ms-request-id": [ - "e958aa42-0884-4645-8643-997dbf901eb0" - ], - "x-ms-correlation-request-id": [ - "e958aa42-0884-4645-8643-997dbf901eb0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173202Z:e958aa42-0884-4645-8643-997dbf901eb0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b6a24b43-a918-4a23-b549-3dcbd044ac25" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11094" - ], - "x-ms-request-id": [ - "bc459710-5942-4d07-b067-134ddf0c5250" - ], - "x-ms-correlation-request-id": [ - "bc459710-5942-4d07-b067-134ddf0c5250" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173203Z:bc459710-5942-4d07-b067-134ddf0c5250" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c17bcbd-ad0e-410b-aaf4-88e449f9a3d9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11093" - ], - "x-ms-request-id": [ - "aad0581c-c057-4be4-8dfe-264df35ff559" - ], - "x-ms-correlation-request-id": [ - "aad0581c-c057-4be4-8dfe-264df35ff559" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173203Z:aad0581c-c057-4be4-8dfe-264df35ff559" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6b8d677c-dd0a-48f8-a462-0784270c60ad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11092" - ], - "x-ms-request-id": [ - "a96dc5c2-2091-456c-a371-7f6b4f9b8dd6" - ], - "x-ms-correlation-request-id": [ - "a96dc5c2-2091-456c-a371-7f6b4f9b8dd6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173203Z:a96dc5c2-2091-456c-a371-7f6b4f9b8dd6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "24f74a4e-1044-4f30-a124-5c8b4dafa356" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11091" - ], - "x-ms-request-id": [ - "d9b4399b-d4bf-40ee-aef4-7b9c70236846" - ], - "x-ms-correlation-request-id": [ - "d9b4399b-d4bf-40ee-aef4-7b9c70236846" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173204Z:d9b4399b-d4bf-40ee-aef4-7b9c70236846" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "572ee025-5461-40bd-b9c5-3092c696ae4d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11090" - ], - "x-ms-request-id": [ - "407b9063-0aac-43f8-b99f-9cd6c77493ac" - ], - "x-ms-correlation-request-id": [ - "407b9063-0aac-43f8-b99f-9cd6c77493ac" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173204Z:407b9063-0aac-43f8-b99f-9cd6c77493ac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "56d071e4-ee5f-4b4a-8a7e-14cd4a1f782f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11089" - ], - "x-ms-request-id": [ - "4e06f79a-a9a0-4031-be65-092e76239357" - ], - "x-ms-correlation-request-id": [ - "4e06f79a-a9a0-4031-be65-092e76239357" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173204Z:4e06f79a-a9a0-4031-be65-092e76239357" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c90f6185-134b-4e9c-ab66-37a4ac2c78a5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11088" - ], - "x-ms-request-id": [ - "8bab528f-dd00-4287-9ab8-e8b49d061688" - ], - "x-ms-correlation-request-id": [ - "8bab528f-dd00-4287-9ab8-e8b49d061688" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173204Z:8bab528f-dd00-4287-9ab8-e8b49d061688" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b2ef6fc6-197c-417e-96c0-ffa6a39162cc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11087" - ], - "x-ms-request-id": [ - "c9042e2a-ddd8-45fc-bb15-228bd728eb68" - ], - "x-ms-correlation-request-id": [ - "c9042e2a-ddd8-45fc-bb15-228bd728eb68" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173205Z:c9042e2a-ddd8-45fc-bb15-228bd728eb68" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a9da685b-8dfb-4883-a6ee-8743202f7241" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11086" - ], - "x-ms-request-id": [ - "2d0ddeba-c70a-43b6-960b-19aec15f2d5a" - ], - "x-ms-correlation-request-id": [ - "2d0ddeba-c70a-43b6-960b-19aec15f2d5a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173205Z:2d0ddeba-c70a-43b6-960b-19aec15f2d5a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "398474b8-8475-4e3b-a8d8-607284bd0695" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11085" - ], - "x-ms-request-id": [ - "5f1efb75-4f87-4176-90eb-e5ef97be866a" - ], - "x-ms-correlation-request-id": [ - "5f1efb75-4f87-4176-90eb-e5ef97be866a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173205Z:5f1efb75-4f87-4176-90eb-e5ef97be866a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d07e8d1-d55d-416c-b070-df306119c3ab" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11084" - ], - "x-ms-request-id": [ - "f82604e9-877f-4951-a33a-3b8da9d9dd64" - ], - "x-ms-correlation-request-id": [ - "f82604e9-877f-4951-a33a-3b8da9d9dd64" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173205Z:f82604e9-877f-4951-a33a-3b8da9d9dd64" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8898d426-ab8b-4d50-adc3-ce41606157b8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11083" - ], - "x-ms-request-id": [ - "e483d792-1782-4c2d-988f-9908c21e21ea" - ], - "x-ms-correlation-request-id": [ - "e483d792-1782-4c2d-988f-9908c21e21ea" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173206Z:e483d792-1782-4c2d-988f-9908c21e21ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ae44a8b-94a2-4a46-af5a-c1e78f456225" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11082" - ], - "x-ms-request-id": [ - "908592f3-148c-4d66-9daa-de2c0db19b3f" - ], - "x-ms-correlation-request-id": [ - "908592f3-148c-4d66-9daa-de2c0db19b3f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173206Z:908592f3-148c-4d66-9daa-de2c0db19b3f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ddc885d-2dc5-48cc-817c-cb28e17c1658" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11081" - ], - "x-ms-request-id": [ - "aed2a2c2-3a4b-4040-8fab-b729f40a67d0" - ], - "x-ms-correlation-request-id": [ - "aed2a2c2-3a4b-4040-8fab-b729f40a67d0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173206Z:aed2a2c2-3a4b-4040-8fab-b729f40a67d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6c00350-5e0a-402c-ab67-f73a86238992" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11080" - ], - "x-ms-request-id": [ - "1512aa0c-7477-4d9b-819b-70d7cc577b80" - ], - "x-ms-correlation-request-id": [ - "1512aa0c-7477-4d9b-819b-70d7cc577b80" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173206Z:1512aa0c-7477-4d9b-819b-70d7cc577b80" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "57b538fb-552c-4a13-9e0a-442ded15d999" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11079" - ], - "x-ms-request-id": [ - "190e8bbd-8231-4d19-a8c8-4a125784e3eb" - ], - "x-ms-correlation-request-id": [ - "190e8bbd-8231-4d19-a8c8-4a125784e3eb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173207Z:190e8bbd-8231-4d19-a8c8-4a125784e3eb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f0e77887-f7d8-4b76-b7c4-b703373daf75" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11078" - ], - "x-ms-request-id": [ - "136d3760-af33-4085-984f-cd306388392a" - ], - "x-ms-correlation-request-id": [ - "136d3760-af33-4085-984f-cd306388392a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173207Z:136d3760-af33-4085-984f-cd306388392a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e30e22e7-5c9d-40b0-9327-e5a243a680c1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11077" - ], - "x-ms-request-id": [ - "2200f618-4a94-489d-b385-674230918876" - ], - "x-ms-correlation-request-id": [ - "2200f618-4a94-489d-b385-674230918876" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173208Z:2200f618-4a94-489d-b385-674230918876" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c9cc42ec-b64e-4dca-8cd8-ea5c6ba812e7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11076" - ], - "x-ms-request-id": [ - "8ac0215c-046c-4af2-9f42-93b933c16bee" - ], - "x-ms-correlation-request-id": [ - "8ac0215c-046c-4af2-9f42-93b933c16bee" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173208Z:8ac0215c-046c-4af2-9f42-93b933c16bee" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "af435ab3-8f83-4098-af21-8dbee13b39da" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11075" - ], - "x-ms-request-id": [ - "7a92e350-82c8-407e-954f-64ca18af9102" - ], - "x-ms-correlation-request-id": [ - "7a92e350-82c8-407e-954f-64ca18af9102" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173208Z:7a92e350-82c8-407e-954f-64ca18af9102" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c23a7b15-5388-4614-9da4-d15c584e3d3c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11074" - ], - "x-ms-request-id": [ - "28f7c9dd-02fb-4f7b-a281-5bd900bcaff2" - ], - "x-ms-correlation-request-id": [ - "28f7c9dd-02fb-4f7b-a281-5bd900bcaff2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173209Z:28f7c9dd-02fb-4f7b-a281-5bd900bcaff2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a11a9f4-dc39-46f5-8807-e239d9752739" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11073" - ], - "x-ms-request-id": [ - "b23a5b44-17d8-4115-8a44-5eeb336189d8" - ], - "x-ms-correlation-request-id": [ - "b23a5b44-17d8-4115-8a44-5eeb336189d8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173209Z:b23a5b44-17d8-4115-8a44-5eeb336189d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "94891de7-7640-4f18-a646-005bb77dc9e3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11072" - ], - "x-ms-request-id": [ - "ba878eb1-ff53-4733-a21c-f66c0e47c8e1" - ], - "x-ms-correlation-request-id": [ - "ba878eb1-ff53-4733-a21c-f66c0e47c8e1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173209Z:ba878eb1-ff53-4733-a21c-f66c0e47c8e1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc1b86a0-fd49-42f6-a8cb-ddc43546bc0f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11071" - ], - "x-ms-request-id": [ - "6ebcc8a9-46bd-4149-9a76-08f0276ad4b3" - ], - "x-ms-correlation-request-id": [ - "6ebcc8a9-46bd-4149-9a76-08f0276ad4b3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173209Z:6ebcc8a9-46bd-4149-9a76-08f0276ad4b3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e253d819-8b80-4a5d-b360-66e4cd2e7799" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11070" - ], - "x-ms-request-id": [ - "7e78825d-4874-4e82-8f3e-d82b71165022" - ], - "x-ms-correlation-request-id": [ - "7e78825d-4874-4e82-8f3e-d82b71165022" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173210Z:7e78825d-4874-4e82-8f3e-d82b71165022" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c86c2d38-5e5a-492a-b5d1-6b7de96f1d26" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11069" - ], - "x-ms-request-id": [ - "8879b910-8225-46fa-8d17-83028ca2604f" - ], - "x-ms-correlation-request-id": [ - "8879b910-8225-46fa-8d17-83028ca2604f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173210Z:8879b910-8225-46fa-8d17-83028ca2604f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1bf6f6ed-9a8b-4e49-beaa-1a9fb0dec89d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11068" - ], - "x-ms-request-id": [ - "bc200896-7751-4b0d-9e65-0021010bf130" - ], - "x-ms-correlation-request-id": [ - "bc200896-7751-4b0d-9e65-0021010bf130" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173210Z:bc200896-7751-4b0d-9e65-0021010bf130" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "76bb0a67-7e8f-4adc-b161-0745b1109f56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11067" - ], - "x-ms-request-id": [ - "fd84dc27-358f-4010-b2fd-357569b76bc1" - ], - "x-ms-correlation-request-id": [ - "fd84dc27-358f-4010-b2fd-357569b76bc1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173210Z:fd84dc27-358f-4010-b2fd-357569b76bc1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49a20b90-bda5-4bd5-917c-cb61954fa733" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11066" - ], - "x-ms-request-id": [ - "b6e4ca7a-1233-4027-9e03-416f2c16b794" - ], - "x-ms-correlation-request-id": [ - "b6e4ca7a-1233-4027-9e03-416f2c16b794" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173211Z:b6e4ca7a-1233-4027-9e03-416f2c16b794" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "618b7d3e-02d2-49b9-b131-7c36208121d1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11065" - ], - "x-ms-request-id": [ - "c089a433-9ae7-4c84-878c-c2823bf63782" - ], - "x-ms-correlation-request-id": [ - "c089a433-9ae7-4c84-878c-c2823bf63782" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173211Z:c089a433-9ae7-4c84-878c-c2823bf63782" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "932c72ae-b2e4-4ea0-95a4-befd8af54120" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11064" - ], - "x-ms-request-id": [ - "7ffbab78-3090-4634-b7fc-9531c9c4cc0e" - ], - "x-ms-correlation-request-id": [ - "7ffbab78-3090-4634-b7fc-9531c9c4cc0e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173211Z:7ffbab78-3090-4634-b7fc-9531c9c4cc0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f8bf2553-dc9a-492a-ac2f-88f931bb4478" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11063" - ], - "x-ms-request-id": [ - "7ea400e0-181f-4818-91a0-0210900c9fdb" - ], - "x-ms-correlation-request-id": [ - "7ea400e0-181f-4818-91a0-0210900c9fdb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173211Z:7ea400e0-181f-4818-91a0-0210900c9fdb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4923ce12-2ae9-4063-a5a2-aecab448b757" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11062" - ], - "x-ms-request-id": [ - "309052ab-7c43-4cc8-9c3b-839e14f7e152" - ], - "x-ms-correlation-request-id": [ - "309052ab-7c43-4cc8-9c3b-839e14f7e152" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173212Z:309052ab-7c43-4cc8-9c3b-839e14f7e152" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1fcfaee3-4286-4da2-a3d7-8075a5d99986" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11061" - ], - "x-ms-request-id": [ - "af1b33d5-8bf2-4b77-894d-b3fd3e7baa3f" - ], - "x-ms-correlation-request-id": [ - "af1b33d5-8bf2-4b77-894d-b3fd3e7baa3f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173212Z:af1b33d5-8bf2-4b77-894d-b3fd3e7baa3f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0336e67e-3449-41e3-9bf8-dd1a50551c05" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11060" - ], - "x-ms-request-id": [ - "3c27853f-d766-4fcd-8539-dcf5bea52ec4" - ], - "x-ms-correlation-request-id": [ - "3c27853f-d766-4fcd-8539-dcf5bea52ec4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173212Z:3c27853f-d766-4fcd-8539-dcf5bea52ec4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa2dc59c-9b69-4253-b123-03037b5ca4cb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11059" - ], - "x-ms-request-id": [ - "28805246-12de-4932-8518-a39ecb779fb8" - ], - "x-ms-correlation-request-id": [ - "28805246-12de-4932-8518-a39ecb779fb8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173213Z:28805246-12de-4932-8518-a39ecb779fb8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fda76228-2088-4935-988f-4477bf23935e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11058" - ], - "x-ms-request-id": [ - "c59e60e1-c199-4d89-9169-b0a67cff7e39" - ], - "x-ms-correlation-request-id": [ - "c59e60e1-c199-4d89-9169-b0a67cff7e39" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173213Z:c59e60e1-c199-4d89-9169-b0a67cff7e39" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a26add2-09c5-4e40-8bd4-3429f8e4fc48" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11057" - ], - "x-ms-request-id": [ - "39cf5940-f3cf-4a6b-8d30-ca1ac7964bf1" - ], - "x-ms-correlation-request-id": [ - "39cf5940-f3cf-4a6b-8d30-ca1ac7964bf1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173213Z:39cf5940-f3cf-4a6b-8d30-ca1ac7964bf1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fbdabc08-b5c8-45d8-bee6-6c8a4a1e0a41" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11056" - ], - "x-ms-request-id": [ - "5c65c5cf-61c7-47bd-a798-d900f5df85f4" - ], - "x-ms-correlation-request-id": [ - "5c65c5cf-61c7-47bd-a798-d900f5df85f4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173213Z:5c65c5cf-61c7-47bd-a798-d900f5df85f4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8c4abd6f-5b1b-41be-bf6d-8a18ed4cc242" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11055" - ], - "x-ms-request-id": [ - "977c750a-2f86-4cfd-be05-c9ce538d1c58" - ], - "x-ms-correlation-request-id": [ - "977c750a-2f86-4cfd-be05-c9ce538d1c58" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173214Z:977c750a-2f86-4cfd-be05-c9ce538d1c58" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ccf4006-c015-4db3-956c-e310273c5050" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11054" - ], - "x-ms-request-id": [ - "c3867920-73b2-491a-a281-6265140ad3d1" - ], - "x-ms-correlation-request-id": [ - "c3867920-73b2-491a-a281-6265140ad3d1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173214Z:c3867920-73b2-491a-a281-6265140ad3d1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "703876d9-03cc-4fc2-a757-7e942b62c508" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11053" - ], - "x-ms-request-id": [ - "cc9290d3-b0f3-4000-8b38-9cb0d9907b5b" - ], - "x-ms-correlation-request-id": [ - "cc9290d3-b0f3-4000-8b38-9cb0d9907b5b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173214Z:cc9290d3-b0f3-4000-8b38-9cb0d9907b5b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2249a5b7-fd1b-4440-ae28-237e8ae94042" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11052" - ], - "x-ms-request-id": [ - "e484398e-56a3-48ce-9408-632c8471a336" - ], - "x-ms-correlation-request-id": [ - "e484398e-56a3-48ce-9408-632c8471a336" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173214Z:e484398e-56a3-48ce-9408-632c8471a336" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8e254ecd-e3f8-409f-a0d0-fde8618dd897" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11051" - ], - "x-ms-request-id": [ - "eafbc694-01d5-4cec-b291-c04d0621c131" - ], - "x-ms-correlation-request-id": [ - "eafbc694-01d5-4cec-b291-c04d0621c131" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173215Z:eafbc694-01d5-4cec-b291-c04d0621c131" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5301bf35-d1d1-4607-83f0-371be519be67" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11050" - ], - "x-ms-request-id": [ - "bce12951-41f6-4c44-b14c-8890d8aa28e4" - ], - "x-ms-correlation-request-id": [ - "bce12951-41f6-4c44-b14c-8890d8aa28e4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173215Z:bce12951-41f6-4c44-b14c-8890d8aa28e4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "de86ad5f-60bc-449c-adc0-ff548aaedc56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11049" - ], - "x-ms-request-id": [ - "3cf8edee-d45b-41a3-a9a2-0c7cf6638e1f" - ], - "x-ms-correlation-request-id": [ - "3cf8edee-d45b-41a3-a9a2-0c7cf6638e1f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173215Z:3cf8edee-d45b-41a3-a9a2-0c7cf6638e1f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "64cd78bd-130f-4bf8-80b7-0806596cfdcf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11048" - ], - "x-ms-request-id": [ - "0d3c605f-06f1-4355-a0f4-1cf1d3714100" - ], - "x-ms-correlation-request-id": [ - "0d3c605f-06f1-4355-a0f4-1cf1d3714100" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173216Z:0d3c605f-06f1-4355-a0f4-1cf1d3714100" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "61c083d6-72ac-4785-a8b4-c8d3b12b19d0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11047" - ], - "x-ms-request-id": [ - "350d1a02-5e77-4425-ae04-2fb474b6dc2a" - ], - "x-ms-correlation-request-id": [ - "350d1a02-5e77-4425-ae04-2fb474b6dc2a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173216Z:350d1a02-5e77-4425-ae04-2fb474b6dc2a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9b175b42-f2b6-46c3-93e5-f3d4a2adce1e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11046" - ], - "x-ms-request-id": [ - "fa0e4b39-36e6-4be3-93fc-15eff5910b10" - ], - "x-ms-correlation-request-id": [ - "fa0e4b39-36e6-4be3-93fc-15eff5910b10" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173216Z:fa0e4b39-36e6-4be3-93fc-15eff5910b10" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b75d2bed-8e95-4175-8744-5e2058b754fb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11045" - ], - "x-ms-request-id": [ - "56f68299-39d7-494e-8a65-b64a3863f451" - ], - "x-ms-correlation-request-id": [ - "56f68299-39d7-494e-8a65-b64a3863f451" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173216Z:56f68299-39d7-494e-8a65-b64a3863f451" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b92e9924-df5d-43ff-bd13-e65b32f817fb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11044" - ], - "x-ms-request-id": [ - "93972770-d279-45fe-9674-9ace0b8205d8" - ], - "x-ms-correlation-request-id": [ - "93972770-d279-45fe-9674-9ace0b8205d8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173217Z:93972770-d279-45fe-9674-9ace0b8205d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1d8c3717-fce3-43e7-90c6-c1001d673c55" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11043" - ], - "x-ms-request-id": [ - "9a2cf7cc-cef4-4863-a446-63306d599ee2" - ], - "x-ms-correlation-request-id": [ - "9a2cf7cc-cef4-4863-a446-63306d599ee2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173217Z:9a2cf7cc-cef4-4863-a446-63306d599ee2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55b95ad0-8b1c-45d4-b971-1907e2eba349" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11042" - ], - "x-ms-request-id": [ - "22de69cc-0205-4bab-83da-06fbf75f8dca" - ], - "x-ms-correlation-request-id": [ - "22de69cc-0205-4bab-83da-06fbf75f8dca" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173217Z:22de69cc-0205-4bab-83da-06fbf75f8dca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f219df0c-5a0d-451b-a639-30401a459e51" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11041" - ], - "x-ms-request-id": [ - "a4f5170b-604e-46f8-8ffc-5f5481ff307f" - ], - "x-ms-correlation-request-id": [ - "a4f5170b-604e-46f8-8ffc-5f5481ff307f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173217Z:a4f5170b-604e-46f8-8ffc-5f5481ff307f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2af52633-780d-4167-b9c5-24fb2314733f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11040" - ], - "x-ms-request-id": [ - "26806e03-0f09-41bf-a24c-62436516a30f" - ], - "x-ms-correlation-request-id": [ - "26806e03-0f09-41bf-a24c-62436516a30f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173218Z:26806e03-0f09-41bf-a24c-62436516a30f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce8c2d4d-123f-4e04-8922-ed50457ae18f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11039" - ], - "x-ms-request-id": [ - "8609bab6-22cc-4356-bc0d-40d792e206da" - ], - "x-ms-correlation-request-id": [ - "8609bab6-22cc-4356-bc0d-40d792e206da" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173218Z:8609bab6-22cc-4356-bc0d-40d792e206da" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ddd741ce-c779-4b68-9763-596ae2aaa1ad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11038" - ], - "x-ms-request-id": [ - "2863ef67-7262-4e17-a2b0-951e3a40eda2" - ], - "x-ms-correlation-request-id": [ - "2863ef67-7262-4e17-a2b0-951e3a40eda2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173218Z:2863ef67-7262-4e17-a2b0-951e3a40eda2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "45585bed-32cb-43b7-8b41-22e72ad7dcf5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11037" - ], - "x-ms-request-id": [ - "c118f07c-8a11-49e1-aed1-d1fa4abcda25" - ], - "x-ms-correlation-request-id": [ - "c118f07c-8a11-49e1-aed1-d1fa4abcda25" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173218Z:c118f07c-8a11-49e1-aed1-d1fa4abcda25" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2835a1c9-bd7a-4adb-b2a2-a88fa3b718e5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11036" - ], - "x-ms-request-id": [ - "ea5e7321-efef-4c17-a026-9ecc72a57557" - ], - "x-ms-correlation-request-id": [ - "ea5e7321-efef-4c17-a026-9ecc72a57557" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173219Z:ea5e7321-efef-4c17-a026-9ecc72a57557" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8b5f36e-c260-489e-b7e2-7a3c794ce112" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11035" - ], - "x-ms-request-id": [ - "ff8519ec-d6d2-412a-80bc-0d2057bcb9f2" - ], - "x-ms-correlation-request-id": [ - "ff8519ec-d6d2-412a-80bc-0d2057bcb9f2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173219Z:ff8519ec-d6d2-412a-80bc-0d2057bcb9f2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "beacc94b-4e82-4068-a43f-10de08df6c9d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11034" - ], - "x-ms-request-id": [ - "18ad6580-4ea7-4d6a-8ff4-f889f7113251" - ], - "x-ms-correlation-request-id": [ - "18ad6580-4ea7-4d6a-8ff4-f889f7113251" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173219Z:18ad6580-4ea7-4d6a-8ff4-f889f7113251" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41bfefa8-7d39-4218-b0e6-1f2c9971f895" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11033" - ], - "x-ms-request-id": [ - "6801b71b-66fb-4027-9395-596d99212fba" - ], - "x-ms-correlation-request-id": [ - "6801b71b-66fb-4027-9395-596d99212fba" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173220Z:6801b71b-66fb-4027-9395-596d99212fba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f606d045-7a22-443e-abfc-ab32862c4eaf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11032" - ], - "x-ms-request-id": [ - "f6de4555-1456-442f-902e-44a66e716b44" - ], - "x-ms-correlation-request-id": [ - "f6de4555-1456-442f-902e-44a66e716b44" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173220Z:f6de4555-1456-442f-902e-44a66e716b44" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bcd70816-6317-4db4-840b-4350428b27a1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11031" - ], - "x-ms-request-id": [ - "c5da5447-7af2-4474-b1cc-cd8222620163" - ], - "x-ms-correlation-request-id": [ - "c5da5447-7af2-4474-b1cc-cd8222620163" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173220Z:c5da5447-7af2-4474-b1cc-cd8222620163" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4756d191-7964-4b82-adfb-b3325a786601" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11030" - ], - "x-ms-request-id": [ - "e11e8c1e-3ee9-40d9-b0cf-6bdeb2d3631b" - ], - "x-ms-correlation-request-id": [ - "e11e8c1e-3ee9-40d9-b0cf-6bdeb2d3631b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173220Z:e11e8c1e-3ee9-40d9-b0cf-6bdeb2d3631b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8e33b8a-7501-4034-81c2-31a22747b0d8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11029" - ], - "x-ms-request-id": [ - "49d0357b-cf99-499f-b2ed-78842509d1ae" - ], - "x-ms-correlation-request-id": [ - "49d0357b-cf99-499f-b2ed-78842509d1ae" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173221Z:49d0357b-cf99-499f-b2ed-78842509d1ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "881700a2-6014-42b8-a658-4ff1ccde6c69" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11028" - ], - "x-ms-request-id": [ - "92ee6101-0c65-42b2-83a1-727f501c84ce" - ], - "x-ms-correlation-request-id": [ - "92ee6101-0c65-42b2-83a1-727f501c84ce" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173221Z:92ee6101-0c65-42b2-83a1-727f501c84ce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bbd86ba7-b597-4c84-b8b0-db7dced092fb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11027" - ], - "x-ms-request-id": [ - "bc328b19-5fec-4379-9ba2-be1ede2ecb9d" - ], - "x-ms-correlation-request-id": [ - "bc328b19-5fec-4379-9ba2-be1ede2ecb9d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173221Z:bc328b19-5fec-4379-9ba2-be1ede2ecb9d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8c413d2-8c43-45e6-9a37-67bddcdd082e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11026" - ], - "x-ms-request-id": [ - "5cd99b35-0018-463c-ad5f-514be7efc383" - ], - "x-ms-correlation-request-id": [ - "5cd99b35-0018-463c-ad5f-514be7efc383" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173221Z:5cd99b35-0018-463c-ad5f-514be7efc383" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2d01ca2-933d-45ad-b7e6-a78c958177dc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11025" - ], - "x-ms-request-id": [ - "f24c78d0-01e3-42d9-a159-0c7731978a70" - ], - "x-ms-correlation-request-id": [ - "f24c78d0-01e3-42d9-a159-0c7731978a70" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173222Z:f24c78d0-01e3-42d9-a159-0c7731978a70" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3f7a95c-9d09-4521-92e4-8fc05c1543f3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11024" - ], - "x-ms-request-id": [ - "ca7b3acf-e479-4eab-acd2-2a885136a569" - ], - "x-ms-correlation-request-id": [ - "ca7b3acf-e479-4eab-acd2-2a885136a569" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173222Z:ca7b3acf-e479-4eab-acd2-2a885136a569" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68044153-3f2b-4fbc-a227-32cbf35d41b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11023" - ], - "x-ms-request-id": [ - "574d934f-4971-4d0e-b784-d5304269dfb8" - ], - "x-ms-correlation-request-id": [ - "574d934f-4971-4d0e-b784-d5304269dfb8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173222Z:574d934f-4971-4d0e-b784-d5304269dfb8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa6e7f52-7fa8-4cdc-b053-d67c7d9368c8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11022" - ], - "x-ms-request-id": [ - "4ffc3d30-4ac1-4283-85e3-8ea238bd5f62" - ], - "x-ms-correlation-request-id": [ - "4ffc3d30-4ac1-4283-85e3-8ea238bd5f62" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173222Z:4ffc3d30-4ac1-4283-85e3-8ea238bd5f62" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c51c8976-d42e-4ba6-b516-be6db8be95cf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11021" - ], - "x-ms-request-id": [ - "73753d8e-2caa-4610-bb15-085d958f8462" - ], - "x-ms-correlation-request-id": [ - "73753d8e-2caa-4610-bb15-085d958f8462" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173223Z:73753d8e-2caa-4610-bb15-085d958f8462" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ea35585-8c56-4278-80e0-c86e822bb222" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11020" - ], - "x-ms-request-id": [ - "ce37fef5-68c5-4c7d-b761-c3e65da8f13c" - ], - "x-ms-correlation-request-id": [ - "ce37fef5-68c5-4c7d-b761-c3e65da8f13c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173223Z:ce37fef5-68c5-4c7d-b761-c3e65da8f13c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98122c03-efb1-470d-8aae-050b54dbdc5d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11019" - ], - "x-ms-request-id": [ - "9a0823af-86f8-42e1-8c0f-b62b0a34456b" - ], - "x-ms-correlation-request-id": [ - "9a0823af-86f8-42e1-8c0f-b62b0a34456b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173223Z:9a0823af-86f8-42e1-8c0f-b62b0a34456b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eaea3f52-66f4-4439-8785-e6d305eef8ac" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11018" - ], - "x-ms-request-id": [ - "ed047e81-7f16-4b25-a3d7-b3901a1cb85c" - ], - "x-ms-correlation-request-id": [ - "ed047e81-7f16-4b25-a3d7-b3901a1cb85c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173224Z:ed047e81-7f16-4b25-a3d7-b3901a1cb85c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9bafc5e8-e5d1-4710-aff7-590a931083ea" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11017" - ], - "x-ms-request-id": [ - "82c24bb3-93a0-42d8-816f-464516964a4d" - ], - "x-ms-correlation-request-id": [ - "82c24bb3-93a0-42d8-816f-464516964a4d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173224Z:82c24bb3-93a0-42d8-816f-464516964a4d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e3ae3cc5-a6d0-41b2-a740-98e484b93466" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11016" - ], - "x-ms-request-id": [ - "13c101b0-0a2a-4e1f-bd8d-8e3e58911074" - ], - "x-ms-correlation-request-id": [ - "13c101b0-0a2a-4e1f-bd8d-8e3e58911074" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173224Z:13c101b0-0a2a-4e1f-bd8d-8e3e58911074" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6baefc35-516f-4966-bff6-3dbde01413ec" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11015" - ], - "x-ms-request-id": [ - "d117b188-e38f-4a04-9552-54c76173b3ac" - ], - "x-ms-correlation-request-id": [ - "d117b188-e38f-4a04-9552-54c76173b3ac" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173224Z:d117b188-e38f-4a04-9552-54c76173b3ac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6e6da67-693f-4bd7-8b66-984901eecbb6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11014" - ], - "x-ms-request-id": [ - "b889050d-9bd4-4534-866e-29c3bad2d993" - ], - "x-ms-correlation-request-id": [ - "b889050d-9bd4-4534-866e-29c3bad2d993" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173225Z:b889050d-9bd4-4534-866e-29c3bad2d993" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75969b13-1600-492c-960a-e4c1e077531e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11013" - ], - "x-ms-request-id": [ - "8244bede-5a10-4cfe-a0c5-06b7bd063a75" - ], - "x-ms-correlation-request-id": [ - "8244bede-5a10-4cfe-a0c5-06b7bd063a75" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173225Z:8244bede-5a10-4cfe-a0c5-06b7bd063a75" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa95959e-1c37-4f53-8881-46b9526dabb3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11012" - ], - "x-ms-request-id": [ - "b6ebad3f-7600-4373-bddc-d379c1394c4c" - ], - "x-ms-correlation-request-id": [ - "b6ebad3f-7600-4373-bddc-d379c1394c4c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173225Z:b6ebad3f-7600-4373-bddc-d379c1394c4c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a39476cc-88ca-47ea-8eb1-c030bfbb0fba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11011" - ], - "x-ms-request-id": [ - "0931d73c-6754-43e2-9220-4d6b095f8efd" - ], - "x-ms-correlation-request-id": [ - "0931d73c-6754-43e2-9220-4d6b095f8efd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173225Z:0931d73c-6754-43e2-9220-4d6b095f8efd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b8e60b9d-ab63-44c5-8654-d298af116cf4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11010" - ], - "x-ms-request-id": [ - "06a1bd38-8374-46eb-bfb2-0f1d4214518a" - ], - "x-ms-correlation-request-id": [ - "06a1bd38-8374-46eb-bfb2-0f1d4214518a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173226Z:06a1bd38-8374-46eb-bfb2-0f1d4214518a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf6350eb-a291-4bb0-b907-f79e8d097be5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11009" - ], - "x-ms-request-id": [ - "fd959095-260f-40ee-9b1f-fa69b71a5d03" - ], - "x-ms-correlation-request-id": [ - "fd959095-260f-40ee-9b1f-fa69b71a5d03" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173226Z:fd959095-260f-40ee-9b1f-fa69b71a5d03" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5f0d0bc3-3685-4d8b-a2d3-e6631079056b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11008" - ], - "x-ms-request-id": [ - "fd86c451-c2f0-4ad3-be10-4c843189b042" - ], - "x-ms-correlation-request-id": [ - "fd86c451-c2f0-4ad3-be10-4c843189b042" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173226Z:fd86c451-c2f0-4ad3-be10-4c843189b042" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f39973fc-bd99-422f-802e-0e3640cd9d58" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11007" - ], - "x-ms-request-id": [ - "16ec76af-cefc-4d18-a0ff-a37061b20953" - ], - "x-ms-correlation-request-id": [ - "16ec76af-cefc-4d18-a0ff-a37061b20953" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173227Z:16ec76af-cefc-4d18-a0ff-a37061b20953" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "584b3378-e91f-40b1-8d8a-3b39d55046c1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11006" - ], - "x-ms-request-id": [ - "f3b2fbf7-5d1c-4a24-b20b-99b497ee58bd" - ], - "x-ms-correlation-request-id": [ - "f3b2fbf7-5d1c-4a24-b20b-99b497ee58bd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173227Z:f3b2fbf7-5d1c-4a24-b20b-99b497ee58bd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c890876d-41ca-445d-8c70-880554dfa0d3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11005" - ], - "x-ms-request-id": [ - "ebe47cb9-875e-4eab-acbd-40f93ca75925" - ], - "x-ms-correlation-request-id": [ - "ebe47cb9-875e-4eab-acbd-40f93ca75925" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173227Z:ebe47cb9-875e-4eab-acbd-40f93ca75925" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c1e3847a-1772-48a4-a2a8-563dd5e3afa8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11004" - ], - "x-ms-request-id": [ - "aacb1bd5-2ff8-419d-8369-d31fed9ce7c2" - ], - "x-ms-correlation-request-id": [ - "aacb1bd5-2ff8-419d-8369-d31fed9ce7c2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173227Z:aacb1bd5-2ff8-419d-8369-d31fed9ce7c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fff9055e-1147-424a-bb81-3271dcb9f127" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11003" - ], - "x-ms-request-id": [ - "f59bd0f9-d6c0-4403-8de3-9530e7c78d35" - ], - "x-ms-correlation-request-id": [ - "f59bd0f9-d6c0-4403-8de3-9530e7c78d35" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173228Z:f59bd0f9-d6c0-4403-8de3-9530e7c78d35" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f9460f99-266d-45a7-9465-88477ab8c395" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11002" - ], - "x-ms-request-id": [ - "ea72ef93-2bdb-44ed-b059-8c51e340f15f" - ], - "x-ms-correlation-request-id": [ - "ea72ef93-2bdb-44ed-b059-8c51e340f15f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173228Z:ea72ef93-2bdb-44ed-b059-8c51e340f15f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68c8d46c-4dc0-4ff2-a76a-27d09b65b759" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11001" - ], - "x-ms-request-id": [ - "ac4673cb-2a43-4940-869a-c5f867d94592" - ], - "x-ms-correlation-request-id": [ - "ac4673cb-2a43-4940-869a-c5f867d94592" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173228Z:ac4673cb-2a43-4940-869a-c5f867d94592" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b6d224d7-a1b4-4799-ae5c-e9739aff0a79" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11000" - ], - "x-ms-request-id": [ - "167e7e5a-d83f-42c3-90d9-ec7a115f8ab6" - ], - "x-ms-correlation-request-id": [ - "167e7e5a-d83f-42c3-90d9-ec7a115f8ab6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173228Z:167e7e5a-d83f-42c3-90d9-ec7a115f8ab6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "da789736-fcae-44ec-b7c0-fc4150ad96a5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10999" - ], - "x-ms-request-id": [ - "aeea781f-e0df-4b9f-83b5-29fd7ac5932f" - ], - "x-ms-correlation-request-id": [ - "aeea781f-e0df-4b9f-83b5-29fd7ac5932f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173229Z:aeea781f-e0df-4b9f-83b5-29fd7ac5932f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2ac66c00-c9c5-4068-8d2b-aa4141332bf3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10998" - ], - "x-ms-request-id": [ - "bc444ac8-e2cd-4f05-9f8a-2cf445fd3a80" - ], - "x-ms-correlation-request-id": [ - "bc444ac8-e2cd-4f05-9f8a-2cf445fd3a80" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173229Z:bc444ac8-e2cd-4f05-9f8a-2cf445fd3a80" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "933c0892-6ff1-4948-b0cf-3b958f00922d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10997" - ], - "x-ms-request-id": [ - "e7a26d7d-9b7d-4512-8ad9-b20f734a0a27" - ], - "x-ms-correlation-request-id": [ - "e7a26d7d-9b7d-4512-8ad9-b20f734a0a27" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173229Z:e7a26d7d-9b7d-4512-8ad9-b20f734a0a27" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ab97c15c-74d8-4d71-9bd3-45295c5dba00" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10996" - ], - "x-ms-request-id": [ - "5a474494-fdb1-4be0-80df-6490702a20e8" - ], - "x-ms-correlation-request-id": [ - "5a474494-fdb1-4be0-80df-6490702a20e8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173229Z:5a474494-fdb1-4be0-80df-6490702a20e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9534954e-211b-4cf4-95f9-f25e2ac4c82b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10995" - ], - "x-ms-request-id": [ - "02d445be-e60d-4d25-b2e8-3dfb7cab572c" - ], - "x-ms-correlation-request-id": [ - "02d445be-e60d-4d25-b2e8-3dfb7cab572c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173230Z:02d445be-e60d-4d25-b2e8-3dfb7cab572c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a45f8596-e4c0-4e17-85f1-d128f75ff497" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10994" - ], - "x-ms-request-id": [ - "18525a76-c181-42a2-afac-8e10d2c98c9f" - ], - "x-ms-correlation-request-id": [ - "18525a76-c181-42a2-afac-8e10d2c98c9f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173230Z:18525a76-c181-42a2-afac-8e10d2c98c9f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "716c30c5-b13d-490e-8903-3ed58b958c2a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10993" - ], - "x-ms-request-id": [ - "b8ced53f-4684-48e0-89e0-60e79b9d25d3" - ], - "x-ms-correlation-request-id": [ - "b8ced53f-4684-48e0-89e0-60e79b9d25d3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173230Z:b8ced53f-4684-48e0-89e0-60e79b9d25d3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "46752c4a-ce89-4a2a-85c0-440f42a855f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10992" - ], - "x-ms-request-id": [ - "80eaf11e-6fe2-4ea7-a242-36eec2c4addf" - ], - "x-ms-correlation-request-id": [ - "80eaf11e-6fe2-4ea7-a242-36eec2c4addf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173230Z:80eaf11e-6fe2-4ea7-a242-36eec2c4addf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "482e36b5-a0d9-4220-b721-74c20ea122b7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10991" - ], - "x-ms-request-id": [ - "909f97e8-2692-4ce4-9f50-cb15511771cf" - ], - "x-ms-correlation-request-id": [ - "909f97e8-2692-4ce4-9f50-cb15511771cf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173231Z:909f97e8-2692-4ce4-9f50-cb15511771cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c80e9d9-2cf3-42dc-be9e-2091c2aefa1f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10990" - ], - "x-ms-request-id": [ - "f463153a-9b4c-4309-8b9b-8c40a7962a9c" - ], - "x-ms-correlation-request-id": [ - "f463153a-9b4c-4309-8b9b-8c40a7962a9c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173231Z:f463153a-9b4c-4309-8b9b-8c40a7962a9c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c590375-ece1-444e-a4a6-ae35482a476a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10989" - ], - "x-ms-request-id": [ - "e9175be5-678c-4f53-a9a6-fca9e1e94d5b" - ], - "x-ms-correlation-request-id": [ - "e9175be5-678c-4f53-a9a6-fca9e1e94d5b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173231Z:e9175be5-678c-4f53-a9a6-fca9e1e94d5b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a44c6851-3eba-4048-baf6-00ec98662cfc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10988" - ], - "x-ms-request-id": [ - "1102dcd6-a671-4732-b24b-203ad4683e9d" - ], - "x-ms-correlation-request-id": [ - "1102dcd6-a671-4732-b24b-203ad4683e9d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173232Z:1102dcd6-a671-4732-b24b-203ad4683e9d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a79392c2-8e0a-4c99-8daf-4f5af4b4e12b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10987" - ], - "x-ms-request-id": [ - "87e8cb05-ebef-4865-8c6d-0069e4ce6b5a" - ], - "x-ms-correlation-request-id": [ - "87e8cb05-ebef-4865-8c6d-0069e4ce6b5a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173232Z:87e8cb05-ebef-4865-8c6d-0069e4ce6b5a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3aefd7d0-5b15-42ab-8683-f20d9340d2a6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10986" - ], - "x-ms-request-id": [ - "692ec636-c500-40c0-a85e-c8bc44be308c" - ], - "x-ms-correlation-request-id": [ - "692ec636-c500-40c0-a85e-c8bc44be308c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173232Z:692ec636-c500-40c0-a85e-c8bc44be308c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a8fbbbf1-a56d-47e1-8f4c-8cbb1179eaff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10985" - ], - "x-ms-request-id": [ - "0dda1cc3-ed3c-4cb5-9c66-ff6e395fa208" - ], - "x-ms-correlation-request-id": [ - "0dda1cc3-ed3c-4cb5-9c66-ff6e395fa208" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173232Z:0dda1cc3-ed3c-4cb5-9c66-ff6e395fa208" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f0378857-52b4-4f55-a6a9-a7c8f5015a1b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10984" - ], - "x-ms-request-id": [ - "e9571073-242f-406c-a8c9-c98fdf2132b0" - ], - "x-ms-correlation-request-id": [ - "e9571073-242f-406c-a8c9-c98fdf2132b0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173233Z:e9571073-242f-406c-a8c9-c98fdf2132b0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "978b46a4-709a-4df3-811a-1231c7bc885c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10983" - ], - "x-ms-request-id": [ - "1046225a-f16c-456c-8617-5f2924cd9281" - ], - "x-ms-correlation-request-id": [ - "1046225a-f16c-456c-8617-5f2924cd9281" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173233Z:1046225a-f16c-456c-8617-5f2924cd9281" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "22ed4871-39bb-4313-aeab-4c7aa0759d74" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10982" - ], - "x-ms-request-id": [ - "1171172e-1f1f-4176-a076-e025060c8e3f" - ], - "x-ms-correlation-request-id": [ - "1171172e-1f1f-4176-a076-e025060c8e3f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173233Z:1171172e-1f1f-4176-a076-e025060c8e3f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "895cf6fb-1575-4157-a925-3e7bf6256e14" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10981" - ], - "x-ms-request-id": [ - "9811983d-8d6b-44bf-848a-4816be308630" - ], - "x-ms-correlation-request-id": [ - "9811983d-8d6b-44bf-848a-4816be308630" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173233Z:9811983d-8d6b-44bf-848a-4816be308630" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37d81838-6b5c-4ca7-b140-98ecbe15f389" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10980" - ], - "x-ms-request-id": [ - "1cff1baf-a8df-43c0-9a64-fdd05a95f465" - ], - "x-ms-correlation-request-id": [ - "1cff1baf-a8df-43c0-9a64-fdd05a95f465" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173234Z:1cff1baf-a8df-43c0-9a64-fdd05a95f465" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf899d02-3e76-48a4-8c9f-80913a4b29be" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10979" - ], - "x-ms-request-id": [ - "75d06444-3ecf-44b5-bb4b-04b417654775" - ], - "x-ms-correlation-request-id": [ - "75d06444-3ecf-44b5-bb4b-04b417654775" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173234Z:75d06444-3ecf-44b5-bb4b-04b417654775" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "00705dde-d361-43a0-b776-081f84525572" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10978" - ], - "x-ms-request-id": [ - "9008ad22-48bb-4ce6-b7d3-d187cfeea0e7" - ], - "x-ms-correlation-request-id": [ - "9008ad22-48bb-4ce6-b7d3-d187cfeea0e7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173234Z:9008ad22-48bb-4ce6-b7d3-d187cfeea0e7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "21a8ba49-bed1-420b-b517-053d4465059c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10977" - ], - "x-ms-request-id": [ - "68f51b9b-ac14-43ba-9651-a77c2f0f6b05" - ], - "x-ms-correlation-request-id": [ - "68f51b9b-ac14-43ba-9651-a77c2f0f6b05" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173234Z:68f51b9b-ac14-43ba-9651-a77c2f0f6b05" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f93ea37f-2988-40a4-be45-ca796036d70b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10976" - ], - "x-ms-request-id": [ - "7e64a1b4-461c-41a7-9684-f73980c538c4" - ], - "x-ms-correlation-request-id": [ - "7e64a1b4-461c-41a7-9684-f73980c538c4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173235Z:7e64a1b4-461c-41a7-9684-f73980c538c4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a3d4ecc-e113-43f4-96d1-6e66f6803e44" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10975" - ], - "x-ms-request-id": [ - "502ae23d-5710-47f5-9b51-46389001d83d" - ], - "x-ms-correlation-request-id": [ - "502ae23d-5710-47f5-9b51-46389001d83d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173235Z:502ae23d-5710-47f5-9b51-46389001d83d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "83b8041d-acb5-402d-8e3d-f30c16baff22" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10974" - ], - "x-ms-request-id": [ - "95dfd84e-8098-4019-b6ed-a537a7cc39de" - ], - "x-ms-correlation-request-id": [ - "95dfd84e-8098-4019-b6ed-a537a7cc39de" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173235Z:95dfd84e-8098-4019-b6ed-a537a7cc39de" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c62727f0-3173-4a59-bd63-39eec860adae" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10973" - ], - "x-ms-request-id": [ - "b9291aa8-da0f-43e2-b292-ff04572062bd" - ], - "x-ms-correlation-request-id": [ - "b9291aa8-da0f-43e2-b292-ff04572062bd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173236Z:b9291aa8-da0f-43e2-b292-ff04572062bd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "462c446c-16c0-4d20-a221-dfa130cc73c3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10972" - ], - "x-ms-request-id": [ - "56a7d44e-0c3b-4a55-b50a-4e11aa09dc90" - ], - "x-ms-correlation-request-id": [ - "56a7d44e-0c3b-4a55-b50a-4e11aa09dc90" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173236Z:56a7d44e-0c3b-4a55-b50a-4e11aa09dc90" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9282ea4-1af7-4f38-b841-c478eacaa53d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10971" - ], - "x-ms-request-id": [ - "b7a19a2a-9ebc-421e-81e3-f7d904550e5c" - ], - "x-ms-correlation-request-id": [ - "b7a19a2a-9ebc-421e-81e3-f7d904550e5c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173236Z:b7a19a2a-9ebc-421e-81e3-f7d904550e5c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ec53f0c9-7a56-4d63-b864-8ba19ec49b63" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10970" - ], - "x-ms-request-id": [ - "ddbaad8d-edc7-4b7d-92c4-cb61180c153d" - ], - "x-ms-correlation-request-id": [ - "ddbaad8d-edc7-4b7d-92c4-cb61180c153d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173236Z:ddbaad8d-edc7-4b7d-92c4-cb61180c153d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6cdc3dd-1bbf-4e47-9388-04d7cd051f3e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10969" - ], - "x-ms-request-id": [ - "aa45b5b8-8040-4667-9735-93d465b837b1" - ], - "x-ms-correlation-request-id": [ - "aa45b5b8-8040-4667-9735-93d465b837b1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173237Z:aa45b5b8-8040-4667-9735-93d465b837b1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e0fa798e-3f6d-4b0b-b941-d55586c59389" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10968" - ], - "x-ms-request-id": [ - "9a3caab7-26d5-438c-b81e-0a4283d0cd41" - ], - "x-ms-correlation-request-id": [ - "9a3caab7-26d5-438c-b81e-0a4283d0cd41" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173237Z:9a3caab7-26d5-438c-b81e-0a4283d0cd41" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f719127d-9c8b-4b7c-9637-237e6df8840d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10967" - ], - "x-ms-request-id": [ - "1c7fe384-6772-4cbd-bcba-2852a3716b8e" - ], - "x-ms-correlation-request-id": [ - "1c7fe384-6772-4cbd-bcba-2852a3716b8e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173237Z:1c7fe384-6772-4cbd-bcba-2852a3716b8e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "481162d1-6ac5-4287-b4fe-6615e2b8c856" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10966" - ], - "x-ms-request-id": [ - "9362f0a6-74ab-4c0c-89b1-01d80c339e0e" - ], - "x-ms-correlation-request-id": [ - "9362f0a6-74ab-4c0c-89b1-01d80c339e0e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173237Z:9362f0a6-74ab-4c0c-89b1-01d80c339e0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c1465d48-18e4-4c5c-8437-c123b3a64bf5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10965" - ], - "x-ms-request-id": [ - "18972555-2395-45ea-9e27-bdf35f3dedcb" - ], - "x-ms-correlation-request-id": [ - "18972555-2395-45ea-9e27-bdf35f3dedcb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173238Z:18972555-2395-45ea-9e27-bdf35f3dedcb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ead22499-5c82-45c3-9d03-2281eb5f1d22" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10964" - ], - "x-ms-request-id": [ - "5ab99c94-39bc-4099-a927-4a63e21dead0" - ], - "x-ms-correlation-request-id": [ - "5ab99c94-39bc-4099-a927-4a63e21dead0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173238Z:5ab99c94-39bc-4099-a927-4a63e21dead0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1bd24be4-6f18-4817-94b6-c48e14ec67dc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10963" - ], - "x-ms-request-id": [ - "929c5eda-fb52-460b-80db-ff5479477c34" - ], - "x-ms-correlation-request-id": [ - "929c5eda-fb52-460b-80db-ff5479477c34" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173238Z:929c5eda-fb52-460b-80db-ff5479477c34" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a4fd48d7-f273-4fa2-b4fb-cf7528e19119" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10962" - ], - "x-ms-request-id": [ - "c86d422c-f73e-46ec-a8b3-b0c5e0f41792" - ], - "x-ms-correlation-request-id": [ - "c86d422c-f73e-46ec-a8b3-b0c5e0f41792" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173238Z:c86d422c-f73e-46ec-a8b3-b0c5e0f41792" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa4d1874-c3f7-4542-b854-c3a8200963d1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10961" - ], - "x-ms-request-id": [ - "e55462c0-5fcb-4350-b4d2-3c2c68d64856" - ], - "x-ms-correlation-request-id": [ - "e55462c0-5fcb-4350-b4d2-3c2c68d64856" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173239Z:e55462c0-5fcb-4350-b4d2-3c2c68d64856" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e159ae15-9b8a-449c-bb9b-1f286da39bc9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10960" - ], - "x-ms-request-id": [ - "b1a38f8a-46fc-4f9e-a6f0-918d08d0c4f7" - ], - "x-ms-correlation-request-id": [ - "b1a38f8a-46fc-4f9e-a6f0-918d08d0c4f7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173239Z:b1a38f8a-46fc-4f9e-a6f0-918d08d0c4f7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c5a9f8f3-0b09-4a20-a60e-22679a8e2079" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10959" - ], - "x-ms-request-id": [ - "f0c50c80-0f52-46fb-b10d-efe86c7e6ce8" - ], - "x-ms-correlation-request-id": [ - "f0c50c80-0f52-46fb-b10d-efe86c7e6ce8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173239Z:f0c50c80-0f52-46fb-b10d-efe86c7e6ce8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "151be616-3fcd-4576-ae72-404200734f78" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10958" - ], - "x-ms-request-id": [ - "41ff21e9-feab-4914-9fe7-f37ba9a5b75c" - ], - "x-ms-correlation-request-id": [ - "41ff21e9-feab-4914-9fe7-f37ba9a5b75c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173240Z:41ff21e9-feab-4914-9fe7-f37ba9a5b75c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f9b58ef2-0346-4f65-bea6-e725b2c331dc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10957" - ], - "x-ms-request-id": [ - "dee01867-2599-48ad-a124-541f91782d1f" - ], - "x-ms-correlation-request-id": [ - "dee01867-2599-48ad-a124-541f91782d1f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173240Z:dee01867-2599-48ad-a124-541f91782d1f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d6621254-c628-4166-836d-17670450fcad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10956" - ], - "x-ms-request-id": [ - "b8c84720-1a14-4a26-a868-4eb729b41a95" - ], - "x-ms-correlation-request-id": [ - "b8c84720-1a14-4a26-a868-4eb729b41a95" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173240Z:b8c84720-1a14-4a26-a868-4eb729b41a95" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "76876ade-be14-406f-8289-67c2e1443d97" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10955" - ], - "x-ms-request-id": [ - "2a35291b-d30e-4409-b3af-2b628241aaf9" - ], - "x-ms-correlation-request-id": [ - "2a35291b-d30e-4409-b3af-2b628241aaf9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173241Z:2a35291b-d30e-4409-b3af-2b628241aaf9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fde4106d-4ae4-45b6-8946-16d7f1b30b15" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10954" - ], - "x-ms-request-id": [ - "aaee4285-c726-4965-9ec7-4c62215f6040" - ], - "x-ms-correlation-request-id": [ - "aaee4285-c726-4965-9ec7-4c62215f6040" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173241Z:aaee4285-c726-4965-9ec7-4c62215f6040" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "df5f45dc-5aad-4c31-b302-eeb1474f089e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10953" - ], - "x-ms-request-id": [ - "99a0f0b1-9ef3-4142-ac8a-80f4b497de1d" - ], - "x-ms-correlation-request-id": [ - "99a0f0b1-9ef3-4142-ac8a-80f4b497de1d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173241Z:99a0f0b1-9ef3-4142-ac8a-80f4b497de1d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1546846f-c56a-4ef2-b343-f211878ba2bd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10952" - ], - "x-ms-request-id": [ - "e93d365e-fad9-4c70-95e9-817fa76e08a6" - ], - "x-ms-correlation-request-id": [ - "e93d365e-fad9-4c70-95e9-817fa76e08a6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173241Z:e93d365e-fad9-4c70-95e9-817fa76e08a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba197cdd-3634-4e36-8b6d-5ae82969a353" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10951" - ], - "x-ms-request-id": [ - "57ec4f7b-8632-4638-8fb7-8ecf637c3c8f" - ], - "x-ms-correlation-request-id": [ - "57ec4f7b-8632-4638-8fb7-8ecf637c3c8f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173242Z:57ec4f7b-8632-4638-8fb7-8ecf637c3c8f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a66fa2d-d0bb-462a-aa5d-aee9b6dcd0f1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10950" - ], - "x-ms-request-id": [ - "b0584b33-2a4b-44a4-9fb1-1f3767ee0e41" - ], - "x-ms-correlation-request-id": [ - "b0584b33-2a4b-44a4-9fb1-1f3767ee0e41" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173242Z:b0584b33-2a4b-44a4-9fb1-1f3767ee0e41" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1143d294-1040-474a-b506-c81eaf56b58a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10949" - ], - "x-ms-request-id": [ - "1b0edbdc-bdc9-474c-a3f5-1e53b10cc91d" - ], - "x-ms-correlation-request-id": [ - "1b0edbdc-bdc9-474c-a3f5-1e53b10cc91d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173242Z:1b0edbdc-bdc9-474c-a3f5-1e53b10cc91d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ebafac2-05d9-48a7-a18d-ac7b6e896353" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10948" - ], - "x-ms-request-id": [ - "f5d89ff9-6555-4a9e-86ba-22b15b047688" - ], - "x-ms-correlation-request-id": [ - "f5d89ff9-6555-4a9e-86ba-22b15b047688" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173242Z:f5d89ff9-6555-4a9e-86ba-22b15b047688" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ff01c3da-e312-4d56-83d4-e64244562a9b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10947" - ], - "x-ms-request-id": [ - "496959de-ef4c-426c-a725-4d3c4c01fd1c" - ], - "x-ms-correlation-request-id": [ - "496959de-ef4c-426c-a725-4d3c4c01fd1c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173243Z:496959de-ef4c-426c-a725-4d3c4c01fd1c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8b3f29a0-7067-438a-b9af-3d16b1292a19" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10946" - ], - "x-ms-request-id": [ - "a53aab55-b98a-433e-9e6b-a1cf9d26c7c2" - ], - "x-ms-correlation-request-id": [ - "a53aab55-b98a-433e-9e6b-a1cf9d26c7c2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173243Z:a53aab55-b98a-433e-9e6b-a1cf9d26c7c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b4e0bebf-967c-4b34-8465-4baa08eae60e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10945" - ], - "x-ms-request-id": [ - "fb83e6da-d9b8-4686-b201-2131ca27037f" - ], - "x-ms-correlation-request-id": [ - "fb83e6da-d9b8-4686-b201-2131ca27037f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173243Z:fb83e6da-d9b8-4686-b201-2131ca27037f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "07da71f7-3bb8-4710-bb25-e227a997bbf6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10944" - ], - "x-ms-request-id": [ - "d16082fb-f928-49ac-98ce-f6f0e8f1fbe1" - ], - "x-ms-correlation-request-id": [ - "d16082fb-f928-49ac-98ce-f6f0e8f1fbe1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173244Z:d16082fb-f928-49ac-98ce-f6f0e8f1fbe1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "79395b70-2a25-495d-9faf-ced650d0755a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10943" - ], - "x-ms-request-id": [ - "5c9ac688-7be0-4509-91d5-f6631b634a9e" - ], - "x-ms-correlation-request-id": [ - "5c9ac688-7be0-4509-91d5-f6631b634a9e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173244Z:5c9ac688-7be0-4509-91d5-f6631b634a9e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b2f90bb3-5475-4f16-bfab-a50b7841fef3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10942" - ], - "x-ms-request-id": [ - "4a3f8bfe-4f89-4b5a-802f-21c934e02cd9" - ], - "x-ms-correlation-request-id": [ - "4a3f8bfe-4f89-4b5a-802f-21c934e02cd9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173244Z:4a3f8bfe-4f89-4b5a-802f-21c934e02cd9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eaac6aa1-2c39-4e51-8bb2-c9b2b6bec124" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10941" - ], - "x-ms-request-id": [ - "0ce95131-e5ac-4de2-b571-80b387535e24" - ], - "x-ms-correlation-request-id": [ - "0ce95131-e5ac-4de2-b571-80b387535e24" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173244Z:0ce95131-e5ac-4de2-b571-80b387535e24" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8273d9bc-3427-418e-b2f6-eab9fee43c2c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10940" - ], - "x-ms-request-id": [ - "6c4f2048-31c1-4523-9707-1620aa25bac6" - ], - "x-ms-correlation-request-id": [ - "6c4f2048-31c1-4523-9707-1620aa25bac6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173245Z:6c4f2048-31c1-4523-9707-1620aa25bac6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "46cf683b-05ad-4b4b-9eae-ff52ba677ef1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10939" - ], - "x-ms-request-id": [ - "01b6444a-97e5-4183-b8a9-9173d7a53c68" - ], - "x-ms-correlation-request-id": [ - "01b6444a-97e5-4183-b8a9-9173d7a53c68" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173245Z:01b6444a-97e5-4183-b8a9-9173d7a53c68" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "417b6841-87b6-4b38-99c4-b377aa6dd41d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10938" - ], - "x-ms-request-id": [ - "b9302096-7d98-442b-8ee0-f29289ab5498" - ], - "x-ms-correlation-request-id": [ - "b9302096-7d98-442b-8ee0-f29289ab5498" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173245Z:b9302096-7d98-442b-8ee0-f29289ab5498" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef6bc0c1-f540-4020-8819-98c8b5f4dfa9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10937" - ], - "x-ms-request-id": [ - "af86aa5b-84ac-46a6-b0ba-d3f5925a3758" - ], - "x-ms-correlation-request-id": [ - "af86aa5b-84ac-46a6-b0ba-d3f5925a3758" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173245Z:af86aa5b-84ac-46a6-b0ba-d3f5925a3758" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4f278504-ee04-4664-9409-cc01f7d4575e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10936" - ], - "x-ms-request-id": [ - "aa78f9f5-5e4e-4f40-ac31-61e18d203a24" - ], - "x-ms-correlation-request-id": [ - "aa78f9f5-5e4e-4f40-ac31-61e18d203a24" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173246Z:aa78f9f5-5e4e-4f40-ac31-61e18d203a24" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "839a6c50-474d-4749-9181-e8c04bbadab5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10935" - ], - "x-ms-request-id": [ - "aa9959d6-3d3f-45f2-be07-fe4eb12e8d60" - ], - "x-ms-correlation-request-id": [ - "aa9959d6-3d3f-45f2-be07-fe4eb12e8d60" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173246Z:aa9959d6-3d3f-45f2-be07-fe4eb12e8d60" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a5c7b10d-6c02-473e-8f4a-e5fe03b4c5bd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10934" - ], - "x-ms-request-id": [ - "b161d7bc-79ca-4946-a13f-89434403d51a" - ], - "x-ms-correlation-request-id": [ - "b161d7bc-79ca-4946-a13f-89434403d51a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173246Z:b161d7bc-79ca-4946-a13f-89434403d51a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "869cc36c-49ce-4e1c-9648-da42c528b1e0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10933" - ], - "x-ms-request-id": [ - "f3290022-afca-455a-822b-599a509fcb95" - ], - "x-ms-correlation-request-id": [ - "f3290022-afca-455a-822b-599a509fcb95" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173247Z:f3290022-afca-455a-822b-599a509fcb95" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "288d93ed-4b16-48aa-b82e-9bf43ea1cf87" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10932" - ], - "x-ms-request-id": [ - "90fe118b-7e76-41ce-9881-3fa60c835b92" - ], - "x-ms-correlation-request-id": [ - "90fe118b-7e76-41ce-9881-3fa60c835b92" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173247Z:90fe118b-7e76-41ce-9881-3fa60c835b92" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d205638-dca1-441e-8a5a-d38518c0d386" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10931" - ], - "x-ms-request-id": [ - "0e19ffc8-fe04-4119-818d-071a872dc605" - ], - "x-ms-correlation-request-id": [ - "0e19ffc8-fe04-4119-818d-071a872dc605" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173247Z:0e19ffc8-fe04-4119-818d-071a872dc605" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "38469be6-e2d4-4ff4-96e7-8386d2cf0edb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10930" - ], - "x-ms-request-id": [ - "e12ac1db-0a42-443b-afd4-6f1d8e29288d" - ], - "x-ms-correlation-request-id": [ - "e12ac1db-0a42-443b-afd4-6f1d8e29288d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173247Z:e12ac1db-0a42-443b-afd4-6f1d8e29288d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c515fdd-2897-4acd-bfc6-935f17c3f314" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10929" - ], - "x-ms-request-id": [ - "acf26e4b-5394-469d-bc63-7d315547601e" - ], - "x-ms-correlation-request-id": [ - "acf26e4b-5394-469d-bc63-7d315547601e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173248Z:acf26e4b-5394-469d-bc63-7d315547601e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "167e11dc-a191-4596-bd79-3f3cca73701d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10928" - ], - "x-ms-request-id": [ - "35b90b94-b585-4214-9e55-fafd90097157" - ], - "x-ms-correlation-request-id": [ - "35b90b94-b585-4214-9e55-fafd90097157" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173248Z:35b90b94-b585-4214-9e55-fafd90097157" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0eb69f9a-dd49-44cf-bd8c-da47fdca65e2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10927" - ], - "x-ms-request-id": [ - "d7c901c5-e25b-4a34-93b3-bee9a03bda9d" - ], - "x-ms-correlation-request-id": [ - "d7c901c5-e25b-4a34-93b3-bee9a03bda9d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173248Z:d7c901c5-e25b-4a34-93b3-bee9a03bda9d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4427ef2b-5d62-4511-a4b1-2951da9c3615" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10926" - ], - "x-ms-request-id": [ - "a54e7100-53e4-4242-b99a-520f8b5eda5c" - ], - "x-ms-correlation-request-id": [ - "a54e7100-53e4-4242-b99a-520f8b5eda5c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173249Z:a54e7100-53e4-4242-b99a-520f8b5eda5c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "64c9a500-744e-4793-9dc3-b166d2b8655f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10925" - ], - "x-ms-request-id": [ - "e7084762-5abc-45e0-91f6-69bc6286b7f2" - ], - "x-ms-correlation-request-id": [ - "e7084762-5abc-45e0-91f6-69bc6286b7f2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173249Z:e7084762-5abc-45e0-91f6-69bc6286b7f2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6b8594e6-04ca-49ea-8764-db55b25234c4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10924" - ], - "x-ms-request-id": [ - "f982ea49-f20f-407e-9d72-8ea154c47041" - ], - "x-ms-correlation-request-id": [ - "f982ea49-f20f-407e-9d72-8ea154c47041" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173249Z:f982ea49-f20f-407e-9d72-8ea154c47041" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "647f2e9c-ef30-473a-87cc-b03c00bb5648" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10923" - ], - "x-ms-request-id": [ - "3861d39b-b3fe-40bc-9a9b-d01554387581" - ], - "x-ms-correlation-request-id": [ - "3861d39b-b3fe-40bc-9a9b-d01554387581" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173249Z:3861d39b-b3fe-40bc-9a9b-d01554387581" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b6f9324c-5e6b-4ac5-a69c-79cd385b8b82" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10922" - ], - "x-ms-request-id": [ - "2b08d7d1-4e28-4a25-a5c2-62383872eab9" - ], - "x-ms-correlation-request-id": [ - "2b08d7d1-4e28-4a25-a5c2-62383872eab9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173250Z:2b08d7d1-4e28-4a25-a5c2-62383872eab9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fca5bcd1-4abb-4068-896c-04fe848dbcdf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10921" - ], - "x-ms-request-id": [ - "96c37f75-2a55-442e-8a44-93b8da10c16f" - ], - "x-ms-correlation-request-id": [ - "96c37f75-2a55-442e-8a44-93b8da10c16f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173250Z:96c37f75-2a55-442e-8a44-93b8da10c16f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "251f6e37-3d41-4385-aa08-5a17a4da4da3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10920" - ], - "x-ms-request-id": [ - "c37c3dcb-75d8-4e6f-be41-d54e8f6cfd08" - ], - "x-ms-correlation-request-id": [ - "c37c3dcb-75d8-4e6f-be41-d54e8f6cfd08" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173250Z:c37c3dcb-75d8-4e6f-be41-d54e8f6cfd08" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c0ed379-1540-49fa-8f26-c545e9941db0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10919" - ], - "x-ms-request-id": [ - "198f5229-9bc7-4b09-a915-cbcd7451f039" - ], - "x-ms-correlation-request-id": [ - "198f5229-9bc7-4b09-a915-cbcd7451f039" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173250Z:198f5229-9bc7-4b09-a915-cbcd7451f039" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "774120e6-4919-48b8-8db7-2a76b02308b8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10918" - ], - "x-ms-request-id": [ - "d55878ae-a7cd-4e94-be6c-14707a26a75d" - ], - "x-ms-correlation-request-id": [ - "d55878ae-a7cd-4e94-be6c-14707a26a75d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173251Z:d55878ae-a7cd-4e94-be6c-14707a26a75d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "285f4fce-1fc1-4a57-ae51-0889621a92f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10917" - ], - "x-ms-request-id": [ - "07bd203e-1233-4b66-b535-82680cf7fe74" - ], - "x-ms-correlation-request-id": [ - "07bd203e-1233-4b66-b535-82680cf7fe74" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173251Z:07bd203e-1233-4b66-b535-82680cf7fe74" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "67c1dd2b-e68b-494b-9a3f-d78ef6efae0c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10916" - ], - "x-ms-request-id": [ - "81d24bf2-98f9-4c15-8875-3e0d5fc42630" - ], - "x-ms-correlation-request-id": [ - "81d24bf2-98f9-4c15-8875-3e0d5fc42630" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173251Z:81d24bf2-98f9-4c15-8875-3e0d5fc42630" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f7ae5b90-dc73-44a3-8aa0-edc973e9d900" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10915" - ], - "x-ms-request-id": [ - "bfe26b86-eefd-440e-8e0f-bb37a2705075" - ], - "x-ms-correlation-request-id": [ - "bfe26b86-eefd-440e-8e0f-bb37a2705075" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173252Z:bfe26b86-eefd-440e-8e0f-bb37a2705075" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0dd2c76d-b337-4288-b271-6876b0776c00" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10914" - ], - "x-ms-request-id": [ - "43caa9d9-953d-4279-9de6-b6bf1286ab8b" - ], - "x-ms-correlation-request-id": [ - "43caa9d9-953d-4279-9de6-b6bf1286ab8b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173252Z:43caa9d9-953d-4279-9de6-b6bf1286ab8b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "933f177f-9e1a-4005-97d2-da3bcaa5c2ec" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10913" - ], - "x-ms-request-id": [ - "a9a673a6-1522-4603-b02a-889ab7ec2d0c" - ], - "x-ms-correlation-request-id": [ - "a9a673a6-1522-4603-b02a-889ab7ec2d0c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173252Z:a9a673a6-1522-4603-b02a-889ab7ec2d0c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "256baae5-da62-4a4e-96d8-44ad19305c29" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10912" - ], - "x-ms-request-id": [ - "b22e3ae5-0c64-42bd-9564-b5e5a12cfad0" - ], - "x-ms-correlation-request-id": [ - "b22e3ae5-0c64-42bd-9564-b5e5a12cfad0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173252Z:b22e3ae5-0c64-42bd-9564-b5e5a12cfad0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "44c2f2ca-4663-4dd8-aeba-b5a0f8d0ca25" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10911" - ], - "x-ms-request-id": [ - "240059ae-370f-43c1-a645-b0872e45ea80" - ], - "x-ms-correlation-request-id": [ - "240059ae-370f-43c1-a645-b0872e45ea80" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173253Z:240059ae-370f-43c1-a645-b0872e45ea80" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "be8838e0-7399-4217-af6c-b59d960aa76d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10910" - ], - "x-ms-request-id": [ - "3f7d7ede-fe68-40ee-8acf-403850d88625" - ], - "x-ms-correlation-request-id": [ - "3f7d7ede-fe68-40ee-8acf-403850d88625" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173253Z:3f7d7ede-fe68-40ee-8acf-403850d88625" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "836ada86-3f8b-44d4-8faa-df1397d880c9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10909" - ], - "x-ms-request-id": [ - "301aee42-30bb-470a-b5e5-be4a6bf05b49" - ], - "x-ms-correlation-request-id": [ - "301aee42-30bb-470a-b5e5-be4a6bf05b49" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173253Z:301aee42-30bb-470a-b5e5-be4a6bf05b49" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5dda4a9-5366-4686-8d5b-a84a2d89838d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10908" - ], - "x-ms-request-id": [ - "40bc904b-848a-42b6-bd4a-05c66cde1593" - ], - "x-ms-correlation-request-id": [ - "40bc904b-848a-42b6-bd4a-05c66cde1593" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173253Z:40bc904b-848a-42b6-bd4a-05c66cde1593" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3556e301-d70f-413f-8abd-63ea25af3abc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10907" - ], - "x-ms-request-id": [ - "43078586-870b-476d-93ba-116e57d36bf4" - ], - "x-ms-correlation-request-id": [ - "43078586-870b-476d-93ba-116e57d36bf4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173254Z:43078586-870b-476d-93ba-116e57d36bf4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f3fb2a0-f32a-43e3-a726-94df3b1d482c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10906" - ], - "x-ms-request-id": [ - "257f9fab-b5ef-4c9c-bf3c-4ad3ef1a5575" - ], - "x-ms-correlation-request-id": [ - "257f9fab-b5ef-4c9c-bf3c-4ad3ef1a5575" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173254Z:257f9fab-b5ef-4c9c-bf3c-4ad3ef1a5575" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58487819-6f2e-482b-b3f4-e9f1e7f4df6f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10905" - ], - "x-ms-request-id": [ - "a0210184-b462-4198-8ad8-d16a4c590e2d" - ], - "x-ms-correlation-request-id": [ - "a0210184-b462-4198-8ad8-d16a4c590e2d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173254Z:a0210184-b462-4198-8ad8-d16a4c590e2d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9c93cd4-61e0-45b7-9e58-e481ad0a00d4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10904" - ], - "x-ms-request-id": [ - "9640631e-0198-483d-93e2-63925a37e79e" - ], - "x-ms-correlation-request-id": [ - "9640631e-0198-483d-93e2-63925a37e79e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173254Z:9640631e-0198-483d-93e2-63925a37e79e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c51389c5-2bce-48cf-8179-707d14410a5c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10903" - ], - "x-ms-request-id": [ - "5ad2e8f1-e8c0-41c0-8c83-777ae5ae90c7" - ], - "x-ms-correlation-request-id": [ - "5ad2e8f1-e8c0-41c0-8c83-777ae5ae90c7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173255Z:5ad2e8f1-e8c0-41c0-8c83-777ae5ae90c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "544217bf-ebc6-4ceb-8ebc-1dbeb354e4b9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10902" - ], - "x-ms-request-id": [ - "e42f2fc1-6892-4de2-a771-139dcec25211" - ], - "x-ms-correlation-request-id": [ - "e42f2fc1-6892-4de2-a771-139dcec25211" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173255Z:e42f2fc1-6892-4de2-a771-139dcec25211" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f31ba8d6-3410-4762-9adf-a572e98fe20c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10901" - ], - "x-ms-request-id": [ - "eeb866ea-5016-4efb-8800-e99357afbed2" - ], - "x-ms-correlation-request-id": [ - "eeb866ea-5016-4efb-8800-e99357afbed2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173255Z:eeb866ea-5016-4efb-8800-e99357afbed2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8772909-c27e-42b3-b285-cdd278eac23c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10900" - ], - "x-ms-request-id": [ - "93d69fe3-0ce1-4d7b-ba58-e3aacc515647" - ], - "x-ms-correlation-request-id": [ - "93d69fe3-0ce1-4d7b-ba58-e3aacc515647" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173256Z:93d69fe3-0ce1-4d7b-ba58-e3aacc515647" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dc07e351-5716-4f7b-85a8-1a4ae0473595" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10899" - ], - "x-ms-request-id": [ - "a336900d-b76e-45be-bb89-51d5771e1f68" - ], - "x-ms-correlation-request-id": [ - "a336900d-b76e-45be-bb89-51d5771e1f68" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173256Z:a336900d-b76e-45be-bb89-51d5771e1f68" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c85a28a0-9bdf-4f26-95b6-14509fc5eb50" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10898" - ], - "x-ms-request-id": [ - "6e249700-b77b-4233-b53d-6c1dff911d7d" - ], - "x-ms-correlation-request-id": [ - "6e249700-b77b-4233-b53d-6c1dff911d7d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173256Z:6e249700-b77b-4233-b53d-6c1dff911d7d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ee9d0b6-054e-48f4-b0d6-72de9410349b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10897" - ], - "x-ms-request-id": [ - "0684aefb-6fbc-49cb-9cb8-c9fe4b451e79" - ], - "x-ms-correlation-request-id": [ - "0684aefb-6fbc-49cb-9cb8-c9fe4b451e79" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173256Z:0684aefb-6fbc-49cb-9cb8-c9fe4b451e79" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6bc042bc-94a2-477b-9491-24b4c7299335" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10896" - ], - "x-ms-request-id": [ - "fc96b4b7-5341-4403-b5c0-1f6f77b532b2" - ], - "x-ms-correlation-request-id": [ - "fc96b4b7-5341-4403-b5c0-1f6f77b532b2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173257Z:fc96b4b7-5341-4403-b5c0-1f6f77b532b2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef4a0080-80ff-4ca2-8fdd-6f3a566689cc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10895" - ], - "x-ms-request-id": [ - "87073dd9-e459-4163-9516-a66535760c6b" - ], - "x-ms-correlation-request-id": [ - "87073dd9-e459-4163-9516-a66535760c6b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173257Z:87073dd9-e459-4163-9516-a66535760c6b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5a253e2-eb0c-4eb3-b249-bedc44416b3d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10894" - ], - "x-ms-request-id": [ - "77149ecd-322e-4bb5-afbe-d062f3cbb906" - ], - "x-ms-correlation-request-id": [ - "77149ecd-322e-4bb5-afbe-d062f3cbb906" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173257Z:77149ecd-322e-4bb5-afbe-d062f3cbb906" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ad871f9-c6e6-443b-89d4-d761a0b3aca2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10893" - ], - "x-ms-request-id": [ - "49d93b5b-9730-4a39-8564-eb788959a5c2" - ], - "x-ms-correlation-request-id": [ - "49d93b5b-9730-4a39-8564-eb788959a5c2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173257Z:49d93b5b-9730-4a39-8564-eb788959a5c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "af18c712-3ce0-4c52-9abe-166c14b0af13" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10892" - ], - "x-ms-request-id": [ - "e641c30f-1380-434d-a7fd-c07114594ced" - ], - "x-ms-correlation-request-id": [ - "e641c30f-1380-434d-a7fd-c07114594ced" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173258Z:e641c30f-1380-434d-a7fd-c07114594ced" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "259408e8-45e9-4430-b479-84deb376b924" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10891" - ], - "x-ms-request-id": [ - "3e4472b0-5a3a-484e-a4e6-18c04b9169e5" - ], - "x-ms-correlation-request-id": [ - "3e4472b0-5a3a-484e-a4e6-18c04b9169e5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173258Z:3e4472b0-5a3a-484e-a4e6-18c04b9169e5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "caba2ae7-703b-4b60-a244-cf943e1aabb2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10890" - ], - "x-ms-request-id": [ - "1d90da7f-8d88-4d8d-8507-4ff38f18cbe8" - ], - "x-ms-correlation-request-id": [ - "1d90da7f-8d88-4d8d-8507-4ff38f18cbe8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173258Z:1d90da7f-8d88-4d8d-8507-4ff38f18cbe8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "01831707-6bcd-4f46-b239-6ee2aeb1a0b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10889" - ], - "x-ms-request-id": [ - "656307a1-c3f2-4bb4-9df3-a5fa171bc8a0" - ], - "x-ms-correlation-request-id": [ - "656307a1-c3f2-4bb4-9df3-a5fa171bc8a0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173258Z:656307a1-c3f2-4bb4-9df3-a5fa171bc8a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d0ba54e0-012f-439c-a10a-c1d0613e49a5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10888" - ], - "x-ms-request-id": [ - "7afbe48e-2fa2-4770-86bc-7a865fa79717" - ], - "x-ms-correlation-request-id": [ - "7afbe48e-2fa2-4770-86bc-7a865fa79717" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173259Z:7afbe48e-2fa2-4770-86bc-7a865fa79717" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b2ab143b-697c-402c-bc78-487e0c694403" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10887" - ], - "x-ms-request-id": [ - "8d482f57-34db-4ead-9e8e-49fcea49e452" - ], - "x-ms-correlation-request-id": [ - "8d482f57-34db-4ead-9e8e-49fcea49e452" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173259Z:8d482f57-34db-4ead-9e8e-49fcea49e452" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "93fdbba4-6e0d-4ba4-bfdd-db25812ee8e6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10886" - ], - "x-ms-request-id": [ - "56a17373-c9b7-49e4-8515-5e3227eb6717" - ], - "x-ms-correlation-request-id": [ - "56a17373-c9b7-49e4-8515-5e3227eb6717" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173259Z:56a17373-c9b7-49e4-8515-5e3227eb6717" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c7e3fd91-d2d1-4a06-8aa3-c2af486fbe9f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10885" - ], - "x-ms-request-id": [ - "67839359-a06f-452e-8fda-781ad0d3793c" - ], - "x-ms-correlation-request-id": [ - "67839359-a06f-452e-8fda-781ad0d3793c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173300Z:67839359-a06f-452e-8fda-781ad0d3793c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:32:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "edb79665-7d1c-459e-875a-4f40a6113a41" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10884" - ], - "x-ms-request-id": [ - "9d05e7c4-7773-45e7-82d6-f52941d326e3" - ], - "x-ms-correlation-request-id": [ - "9d05e7c4-7773-45e7-82d6-f52941d326e3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173300Z:9d05e7c4-7773-45e7-82d6-f52941d326e3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7592a84f-08cb-4c89-aa21-75b00adacfab" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10883" - ], - "x-ms-request-id": [ - "cf14ad3b-1fc5-48fc-9f86-a41ae6d3a655" - ], - "x-ms-correlation-request-id": [ - "cf14ad3b-1fc5-48fc-9f86-a41ae6d3a655" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173300Z:cf14ad3b-1fc5-48fc-9f86-a41ae6d3a655" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "130766dc-cfbc-4ef4-ac7e-4987c690c353" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10882" - ], - "x-ms-request-id": [ - "f5081f70-6ee3-4045-9147-643a7a33591f" - ], - "x-ms-correlation-request-id": [ - "f5081f70-6ee3-4045-9147-643a7a33591f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173300Z:f5081f70-6ee3-4045-9147-643a7a33591f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d0e1906-0a25-4fdc-8eb6-d98ee3d570a1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10881" - ], - "x-ms-request-id": [ - "691a0200-5aa2-430c-b2c3-2acacde7670d" - ], - "x-ms-correlation-request-id": [ - "691a0200-5aa2-430c-b2c3-2acacde7670d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173301Z:691a0200-5aa2-430c-b2c3-2acacde7670d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "369530bc-5663-4c94-a89c-cdeb24ad3786" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10880" - ], - "x-ms-request-id": [ - "70129184-e327-4ec7-8310-a98cb71d60b8" - ], - "x-ms-correlation-request-id": [ - "70129184-e327-4ec7-8310-a98cb71d60b8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173301Z:70129184-e327-4ec7-8310-a98cb71d60b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f4dc6b29-f23e-4d98-ba15-7cb0e0256ceb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10879" - ], - "x-ms-request-id": [ - "6eb92582-13b7-471f-b71a-72e161fb3252" - ], - "x-ms-correlation-request-id": [ - "6eb92582-13b7-471f-b71a-72e161fb3252" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173301Z:6eb92582-13b7-471f-b71a-72e161fb3252" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c55d37ae-7da8-4047-a920-a801e9444ead" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10878" - ], - "x-ms-request-id": [ - "11bdce5b-be33-4850-aecb-70645cc94fb3" - ], - "x-ms-correlation-request-id": [ - "11bdce5b-be33-4850-aecb-70645cc94fb3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173301Z:11bdce5b-be33-4850-aecb-70645cc94fb3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dbd3ad44-e184-4b9a-b114-2e9767c15e2f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10877" - ], - "x-ms-request-id": [ - "9cf70fff-f0f3-4b7a-ab6f-35856fe169bd" - ], - "x-ms-correlation-request-id": [ - "9cf70fff-f0f3-4b7a-ab6f-35856fe169bd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173302Z:9cf70fff-f0f3-4b7a-ab6f-35856fe169bd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5ef8abdc-2c75-436d-a2a3-1609e9ce093a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10876" - ], - "x-ms-request-id": [ - "5662240b-a015-438c-b147-a1ef1378f6f5" - ], - "x-ms-correlation-request-id": [ - "5662240b-a015-438c-b147-a1ef1378f6f5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173302Z:5662240b-a015-438c-b147-a1ef1378f6f5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8346bb64-515c-4b92-a43c-4f629d45c8e9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10875" - ], - "x-ms-request-id": [ - "c743fa09-5118-46ba-947e-cbcbfbb71ad5" - ], - "x-ms-correlation-request-id": [ - "c743fa09-5118-46ba-947e-cbcbfbb71ad5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173302Z:c743fa09-5118-46ba-947e-cbcbfbb71ad5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b6dc574f-e9c3-4937-9a11-acb3437aeeb8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10874" - ], - "x-ms-request-id": [ - "7920d3b3-2678-4911-9d0a-8452c9e1270f" - ], - "x-ms-correlation-request-id": [ - "7920d3b3-2678-4911-9d0a-8452c9e1270f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173303Z:7920d3b3-2678-4911-9d0a-8452c9e1270f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ee7dbab-07ef-4927-9684-6cc5dee3740d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10873" - ], - "x-ms-request-id": [ - "a82cb24e-367d-4dd9-91d0-8b659f0a4fc9" - ], - "x-ms-correlation-request-id": [ - "a82cb24e-367d-4dd9-91d0-8b659f0a4fc9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173303Z:a82cb24e-367d-4dd9-91d0-8b659f0a4fc9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc727251-490e-4f9b-b06d-814b4d9a66ee" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10872" - ], - "x-ms-request-id": [ - "1a89f857-cdbc-4b51-8601-ee90cace24a6" - ], - "x-ms-correlation-request-id": [ - "1a89f857-cdbc-4b51-8601-ee90cace24a6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173303Z:1a89f857-cdbc-4b51-8601-ee90cace24a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c202ff7d-b99f-4c1c-a812-e0aaf7055b25" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10871" - ], - "x-ms-request-id": [ - "3626ef2f-4838-4798-8eb6-d58dbb57755b" - ], - "x-ms-correlation-request-id": [ - "3626ef2f-4838-4798-8eb6-d58dbb57755b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173303Z:3626ef2f-4838-4798-8eb6-d58dbb57755b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "56ee353e-a77c-4aea-8198-d5a6144744a5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10870" - ], - "x-ms-request-id": [ - "92d2efd4-cbdc-48e3-867d-d08b8d8cdc95" - ], - "x-ms-correlation-request-id": [ - "92d2efd4-cbdc-48e3-867d-d08b8d8cdc95" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173304Z:92d2efd4-cbdc-48e3-867d-d08b8d8cdc95" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9ba3660-1332-4458-9b96-0a5e10778182" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10869" - ], - "x-ms-request-id": [ - "2ff74808-78a0-4afd-a603-200cb33151d8" - ], - "x-ms-correlation-request-id": [ - "2ff74808-78a0-4afd-a603-200cb33151d8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173304Z:2ff74808-78a0-4afd-a603-200cb33151d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d0efb953-cd8b-468b-bcb0-2fd9a8b6b91f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10868" - ], - "x-ms-request-id": [ - "a00d88de-6d92-4ca3-adf1-2df729b0cce2" - ], - "x-ms-correlation-request-id": [ - "a00d88de-6d92-4ca3-adf1-2df729b0cce2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173304Z:a00d88de-6d92-4ca3-adf1-2df729b0cce2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a2e4d3cd-310e-4995-8ceb-a16f5589a4b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10867" - ], - "x-ms-request-id": [ - "75254a8f-e61f-4a53-a9c1-30244cf44191" - ], - "x-ms-correlation-request-id": [ - "75254a8f-e61f-4a53-a9c1-30244cf44191" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173304Z:75254a8f-e61f-4a53-a9c1-30244cf44191" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "084ca645-3467-4634-8441-565be6a00494" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10866" - ], - "x-ms-request-id": [ - "004b4ca1-696f-4f84-9626-61a7272e33df" - ], - "x-ms-correlation-request-id": [ - "004b4ca1-696f-4f84-9626-61a7272e33df" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173305Z:004b4ca1-696f-4f84-9626-61a7272e33df" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4aa799b1-1354-4f5c-bdc6-56ea9b11912a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10865" - ], - "x-ms-request-id": [ - "f4d35bc3-dc80-4672-a1ac-fec539d2c155" - ], - "x-ms-correlation-request-id": [ - "f4d35bc3-dc80-4672-a1ac-fec539d2c155" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173305Z:f4d35bc3-dc80-4672-a1ac-fec539d2c155" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c235de9-b611-4c05-af7a-85cb2b1090f8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10864" - ], - "x-ms-request-id": [ - "f8c3a210-44dd-452c-b41c-14160e83e29a" - ], - "x-ms-correlation-request-id": [ - "f8c3a210-44dd-452c-b41c-14160e83e29a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173305Z:f8c3a210-44dd-452c-b41c-14160e83e29a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a353eb7-b139-419a-8475-53fc9cb2d05f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10863" - ], - "x-ms-request-id": [ - "2893bc8e-c194-471d-96c1-b94b98426a09" - ], - "x-ms-correlation-request-id": [ - "2893bc8e-c194-471d-96c1-b94b98426a09" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173306Z:2893bc8e-c194-471d-96c1-b94b98426a09" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0331a631-a225-4b3e-a7b9-ed0e3507666d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10862" - ], - "x-ms-request-id": [ - "a283a6a2-958a-4d9c-ac2a-8120f5acbc77" - ], - "x-ms-correlation-request-id": [ - "a283a6a2-958a-4d9c-ac2a-8120f5acbc77" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173306Z:a283a6a2-958a-4d9c-ac2a-8120f5acbc77" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a5e904b-2cb7-4196-86c3-0fa30c7fb9b6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10861" - ], - "x-ms-request-id": [ - "9662deac-9c5b-4bd2-947c-f29c2504b1c9" - ], - "x-ms-correlation-request-id": [ - "9662deac-9c5b-4bd2-947c-f29c2504b1c9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173306Z:9662deac-9c5b-4bd2-947c-f29c2504b1c9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0dde8024-a7db-42ab-87fd-af4cf5a33a74" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10860" - ], - "x-ms-request-id": [ - "e4dcb203-af0f-492b-98eb-0cf8bb5ae1e3" - ], - "x-ms-correlation-request-id": [ - "e4dcb203-af0f-492b-98eb-0cf8bb5ae1e3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173306Z:e4dcb203-af0f-492b-98eb-0cf8bb5ae1e3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a82c5dc-a24e-464e-93d5-c3de5880fc62" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10859" - ], - "x-ms-request-id": [ - "91895a26-6aeb-4e35-80d2-0b18e377b74b" - ], - "x-ms-correlation-request-id": [ - "91895a26-6aeb-4e35-80d2-0b18e377b74b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173307Z:91895a26-6aeb-4e35-80d2-0b18e377b74b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4e331731-10ac-4c7e-b2e0-df8a11d1e782" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10858" - ], - "x-ms-request-id": [ - "41916d4b-17ba-4be1-834e-1acf07d23842" - ], - "x-ms-correlation-request-id": [ - "41916d4b-17ba-4be1-834e-1acf07d23842" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173307Z:41916d4b-17ba-4be1-834e-1acf07d23842" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bddcdce1-8c98-4313-b9d6-e024f96e76ae" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10857" - ], - "x-ms-request-id": [ - "8bffc9b2-9f80-41f8-84a3-8060ba11815b" - ], - "x-ms-correlation-request-id": [ - "8bffc9b2-9f80-41f8-84a3-8060ba11815b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173307Z:8bffc9b2-9f80-41f8-84a3-8060ba11815b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e13fe82a-ca8d-49e0-8d1a-a56933bbe920" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10856" - ], - "x-ms-request-id": [ - "04edfdf8-fd33-4b71-a38f-02f991c38a76" - ], - "x-ms-correlation-request-id": [ - "04edfdf8-fd33-4b71-a38f-02f991c38a76" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173307Z:04edfdf8-fd33-4b71-a38f-02f991c38a76" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "53ca4f1e-e20c-412a-8940-729c8cf536cf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10855" - ], - "x-ms-request-id": [ - "2de6e89c-c633-4ba5-ab5f-e844af1c006e" - ], - "x-ms-correlation-request-id": [ - "2de6e89c-c633-4ba5-ab5f-e844af1c006e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173308Z:2de6e89c-c633-4ba5-ab5f-e844af1c006e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0b112c3d-02af-40f0-8d2f-c7361006bd3c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10854" - ], - "x-ms-request-id": [ - "8d52e452-3e5b-43c2-aa6c-11b960061a8b" - ], - "x-ms-correlation-request-id": [ - "8d52e452-3e5b-43c2-aa6c-11b960061a8b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173308Z:8d52e452-3e5b-43c2-aa6c-11b960061a8b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "faa8b0e8-a336-4dbe-97b5-02a85acfb3fe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10853" - ], - "x-ms-request-id": [ - "2c8ebc04-02df-4377-85c4-a4fb18ea9eda" - ], - "x-ms-correlation-request-id": [ - "2c8ebc04-02df-4377-85c4-a4fb18ea9eda" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173308Z:2c8ebc04-02df-4377-85c4-a4fb18ea9eda" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "84d9220f-57f6-4e32-a06c-f93ccee9960a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10852" - ], - "x-ms-request-id": [ - "a5805d9a-a1ad-45b7-8a45-87cf2d9792aa" - ], - "x-ms-correlation-request-id": [ - "a5805d9a-a1ad-45b7-8a45-87cf2d9792aa" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173309Z:a5805d9a-a1ad-45b7-8a45-87cf2d9792aa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "62e3ddb4-54f9-4b66-8957-096b4506db4d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10851" - ], - "x-ms-request-id": [ - "98461e66-f68e-4630-b6da-ffbea85a35d6" - ], - "x-ms-correlation-request-id": [ - "98461e66-f68e-4630-b6da-ffbea85a35d6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173309Z:98461e66-f68e-4630-b6da-ffbea85a35d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f89529af-dab6-4ebc-88de-90da5f68feda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10850" - ], - "x-ms-request-id": [ - "5a5ee28b-b1dd-4721-9495-f6b5e0332044" - ], - "x-ms-correlation-request-id": [ - "5a5ee28b-b1dd-4721-9495-f6b5e0332044" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173309Z:5a5ee28b-b1dd-4721-9495-f6b5e0332044" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "35f511e6-d196-48c9-bb54-f849a5d570f1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10849" - ], - "x-ms-request-id": [ - "d930cba5-412e-4546-a980-9dce853bd592" - ], - "x-ms-correlation-request-id": [ - "d930cba5-412e-4546-a980-9dce853bd592" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173309Z:d930cba5-412e-4546-a980-9dce853bd592" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e952cd8f-68e1-4002-8e1d-a659d5b66618" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10848" - ], - "x-ms-request-id": [ - "94ef4ae8-394f-4d09-bf50-24abb9cc9cba" - ], - "x-ms-correlation-request-id": [ - "94ef4ae8-394f-4d09-bf50-24abb9cc9cba" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173310Z:94ef4ae8-394f-4d09-bf50-24abb9cc9cba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "252347c7-85e7-4d4c-8859-ded4a726b4ba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10847" - ], - "x-ms-request-id": [ - "f9c69c54-19f1-4616-94e6-3903833224e4" - ], - "x-ms-correlation-request-id": [ - "f9c69c54-19f1-4616-94e6-3903833224e4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173310Z:f9c69c54-19f1-4616-94e6-3903833224e4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0bcdcb4b-aa58-40f7-a62c-69cf170f509a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10846" - ], - "x-ms-request-id": [ - "f1261d8d-0476-451c-8f89-e95911266423" - ], - "x-ms-correlation-request-id": [ - "f1261d8d-0476-451c-8f89-e95911266423" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173310Z:f1261d8d-0476-451c-8f89-e95911266423" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68ff3fc8-c390-4e12-8ec1-4a465387fd83" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10845" - ], - "x-ms-request-id": [ - "02f5e93e-ec0f-406f-a6ac-21feb8938995" - ], - "x-ms-correlation-request-id": [ - "02f5e93e-ec0f-406f-a6ac-21feb8938995" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173310Z:02f5e93e-ec0f-406f-a6ac-21feb8938995" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "edfc1837-8a2a-4ae7-ab98-208a025cb57e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10844" - ], - "x-ms-request-id": [ - "f5c3e897-a539-4079-87bd-155de1f72fb7" - ], - "x-ms-correlation-request-id": [ - "f5c3e897-a539-4079-87bd-155de1f72fb7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173311Z:f5c3e897-a539-4079-87bd-155de1f72fb7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1b0e1973-6ba6-4363-bb5c-1e30fe6db23f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10843" - ], - "x-ms-request-id": [ - "a0c7b79b-24f7-4c16-9a41-e95b374c171f" - ], - "x-ms-correlation-request-id": [ - "a0c7b79b-24f7-4c16-9a41-e95b374c171f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173311Z:a0c7b79b-24f7-4c16-9a41-e95b374c171f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1795aef3-f742-4f93-bccf-cd0a2ba1cb8b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10842" - ], - "x-ms-request-id": [ - "505344a7-ea24-4eb1-a6da-0a11f5a69115" - ], - "x-ms-correlation-request-id": [ - "505344a7-ea24-4eb1-a6da-0a11f5a69115" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173311Z:505344a7-ea24-4eb1-a6da-0a11f5a69115" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c491123-517b-4b91-be38-333873da5438" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10841" - ], - "x-ms-request-id": [ - "1f60fbfb-e2f7-4e12-a8fb-6785a21c1557" - ], - "x-ms-correlation-request-id": [ - "1f60fbfb-e2f7-4e12-a8fb-6785a21c1557" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173311Z:1f60fbfb-e2f7-4e12-a8fb-6785a21c1557" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "df2a1239-ff15-48d4-a9a8-50c086a322e5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10840" - ], - "x-ms-request-id": [ - "46bfbba2-6a4b-44b6-b0ac-ab153b2633ad" - ], - "x-ms-correlation-request-id": [ - "46bfbba2-6a4b-44b6-b0ac-ab153b2633ad" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173312Z:46bfbba2-6a4b-44b6-b0ac-ab153b2633ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d342580-52b9-43e8-9f9b-e714a64a6fab" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10839" - ], - "x-ms-request-id": [ - "fb48d85c-c631-434b-9479-495c5fe6f2d8" - ], - "x-ms-correlation-request-id": [ - "fb48d85c-c631-434b-9479-495c5fe6f2d8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173312Z:fb48d85c-c631-434b-9479-495c5fe6f2d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1ac1cc16-097f-43bf-a7fe-e25bec7fb7ba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10838" - ], - "x-ms-request-id": [ - "a8385582-121b-421d-8819-8006f791eb26" - ], - "x-ms-correlation-request-id": [ - "a8385582-121b-421d-8819-8006f791eb26" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173312Z:a8385582-121b-421d-8819-8006f791eb26" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2148db3c-ad3e-4ed1-a3a0-e5d04cce05ea" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10837" - ], - "x-ms-request-id": [ - "5e9ff003-80d3-4628-bf59-a62084eecb5c" - ], - "x-ms-correlation-request-id": [ - "5e9ff003-80d3-4628-bf59-a62084eecb5c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173313Z:5e9ff003-80d3-4628-bf59-a62084eecb5c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3901595c-b221-41be-a88a-b1857440cfb6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10836" - ], - "x-ms-request-id": [ - "15050454-d1ed-4436-b3e3-8e85526fb7b3" - ], - "x-ms-correlation-request-id": [ - "15050454-d1ed-4436-b3e3-8e85526fb7b3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173313Z:15050454-d1ed-4436-b3e3-8e85526fb7b3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a384f8b-08ba-4adf-84b3-69251af18d95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10835" - ], - "x-ms-request-id": [ - "825266ad-c56f-4f0a-8c5c-8a84f85f2a37" - ], - "x-ms-correlation-request-id": [ - "825266ad-c56f-4f0a-8c5c-8a84f85f2a37" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173313Z:825266ad-c56f-4f0a-8c5c-8a84f85f2a37" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13673ff5-6c04-4779-9d16-dc4e6cfe087c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10834" - ], - "x-ms-request-id": [ - "bee929af-c19d-4879-9640-99d51056edd2" - ], - "x-ms-correlation-request-id": [ - "bee929af-c19d-4879-9640-99d51056edd2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173313Z:bee929af-c19d-4879-9640-99d51056edd2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2361295b-7b27-4cda-ae63-ffba91bdffc5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10833" - ], - "x-ms-request-id": [ - "df23e859-e377-4727-8ed1-f3b728c18dcd" - ], - "x-ms-correlation-request-id": [ - "df23e859-e377-4727-8ed1-f3b728c18dcd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173314Z:df23e859-e377-4727-8ed1-f3b728c18dcd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8e2d2fbb-3232-4abb-8a3f-d7fad9ef05a8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10832" - ], - "x-ms-request-id": [ - "24f0ccea-a8a9-4ea8-9dcb-9c48985c0d52" - ], - "x-ms-correlation-request-id": [ - "24f0ccea-a8a9-4ea8-9dcb-9c48985c0d52" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173314Z:24f0ccea-a8a9-4ea8-9dcb-9c48985c0d52" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ef3a792-9139-4aef-8dd4-913fa168b75d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10831" - ], - "x-ms-request-id": [ - "43706496-19d4-4477-832e-f00e9dd2a8d7" - ], - "x-ms-correlation-request-id": [ - "43706496-19d4-4477-832e-f00e9dd2a8d7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173314Z:43706496-19d4-4477-832e-f00e9dd2a8d7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "63ac3b97-2883-4057-a417-b93d977f74f0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10830" - ], - "x-ms-request-id": [ - "8a54e3d5-db4b-44cc-b921-3a212ab1e287" - ], - "x-ms-correlation-request-id": [ - "8a54e3d5-db4b-44cc-b921-3a212ab1e287" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173314Z:8a54e3d5-db4b-44cc-b921-3a212ab1e287" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "34b224f6-56c7-454d-b9b7-4c8ecb7a2b26" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10829" - ], - "x-ms-request-id": [ - "27a2fbdd-f6f3-4346-a69f-1703b8db4e2b" - ], - "x-ms-correlation-request-id": [ - "27a2fbdd-f6f3-4346-a69f-1703b8db4e2b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173315Z:27a2fbdd-f6f3-4346-a69f-1703b8db4e2b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8fd8fff5-a7e7-4534-9cbf-7a138b0ad2be" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10828" - ], - "x-ms-request-id": [ - "6cdedb0e-bd82-4fb7-865b-b0457d2cee69" - ], - "x-ms-correlation-request-id": [ - "6cdedb0e-bd82-4fb7-865b-b0457d2cee69" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173315Z:6cdedb0e-bd82-4fb7-865b-b0457d2cee69" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e6858bad-fc89-4b5e-b9f7-f9225615cbda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10827" - ], - "x-ms-request-id": [ - "0c670043-92f3-4291-9d84-b573096f2ed3" - ], - "x-ms-correlation-request-id": [ - "0c670043-92f3-4291-9d84-b573096f2ed3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173315Z:0c670043-92f3-4291-9d84-b573096f2ed3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58e0c69a-f0cd-48ba-b9b3-fb20c09004b0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10826" - ], - "x-ms-request-id": [ - "a7d86b94-1332-4cdf-a678-3e896be7365a" - ], - "x-ms-correlation-request-id": [ - "a7d86b94-1332-4cdf-a678-3e896be7365a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173316Z:a7d86b94-1332-4cdf-a678-3e896be7365a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd100a42-23fd-4a31-b2c3-6a91d4b9de36" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10825" - ], - "x-ms-request-id": [ - "e88a1a85-ed4c-4df6-b9f0-b06bb6bc6ef1" - ], - "x-ms-correlation-request-id": [ - "e88a1a85-ed4c-4df6-b9f0-b06bb6bc6ef1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173316Z:e88a1a85-ed4c-4df6-b9f0-b06bb6bc6ef1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b99599ed-341a-4bde-9dc6-86fb79965f72" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10824" - ], - "x-ms-request-id": [ - "10385ae8-9ab6-4583-af62-b4f9a780cb61" - ], - "x-ms-correlation-request-id": [ - "10385ae8-9ab6-4583-af62-b4f9a780cb61" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173316Z:10385ae8-9ab6-4583-af62-b4f9a780cb61" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60c2fe59-5117-4e76-98c1-920c5e990633" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10823" - ], - "x-ms-request-id": [ - "f7b6163d-9bf8-4ba3-bb92-3b3f2a4addf4" - ], - "x-ms-correlation-request-id": [ - "f7b6163d-9bf8-4ba3-bb92-3b3f2a4addf4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173316Z:f7b6163d-9bf8-4ba3-bb92-3b3f2a4addf4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "14947f13-542d-4710-af3a-33b7e22d6ba4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10822" - ], - "x-ms-request-id": [ - "aa86bdbd-110a-4828-9544-126e39e93a44" - ], - "x-ms-correlation-request-id": [ - "aa86bdbd-110a-4828-9544-126e39e93a44" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173317Z:aa86bdbd-110a-4828-9544-126e39e93a44" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "088b5d99-8191-4c8d-82c5-291e3bde2fda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10821" - ], - "x-ms-request-id": [ - "ddfa3503-1067-43d0-96f4-d42e959300f1" - ], - "x-ms-correlation-request-id": [ - "ddfa3503-1067-43d0-96f4-d42e959300f1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173317Z:ddfa3503-1067-43d0-96f4-d42e959300f1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc740bba-15e9-4bee-ab56-deeefa2b9dad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10820" - ], - "x-ms-request-id": [ - "9db37e94-cf85-456c-a4c0-a0db18bb41cf" - ], - "x-ms-correlation-request-id": [ - "9db37e94-cf85-456c-a4c0-a0db18bb41cf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173317Z:9db37e94-cf85-456c-a4c0-a0db18bb41cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4e6bc112-39b5-4497-882e-2ee682a267a8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10819" - ], - "x-ms-request-id": [ - "957e1814-9f85-4e68-93ee-9fbd8254dc9a" - ], - "x-ms-correlation-request-id": [ - "957e1814-9f85-4e68-93ee-9fbd8254dc9a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173317Z:957e1814-9f85-4e68-93ee-9fbd8254dc9a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4623868e-7cf6-4fd8-bb87-6e3cb8887afb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10818" - ], - "x-ms-request-id": [ - "7d931457-6a8e-4138-89c4-873245acb33e" - ], - "x-ms-correlation-request-id": [ - "7d931457-6a8e-4138-89c4-873245acb33e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173318Z:7d931457-6a8e-4138-89c4-873245acb33e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "30f3dc66-a241-40a5-aade-6dde7da09fa8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10817" - ], - "x-ms-request-id": [ - "73725749-aab2-4414-a06b-f8d137ef0989" - ], - "x-ms-correlation-request-id": [ - "73725749-aab2-4414-a06b-f8d137ef0989" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173318Z:73725749-aab2-4414-a06b-f8d137ef0989" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6657eddc-9e97-4143-bdbd-64fcd848555f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10816" - ], - "x-ms-request-id": [ - "90bb9f35-7926-49cc-a53d-cf485e3da5e8" - ], - "x-ms-correlation-request-id": [ - "90bb9f35-7926-49cc-a53d-cf485e3da5e8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173318Z:90bb9f35-7926-49cc-a53d-cf485e3da5e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15cce940-412b-4f32-9a07-6b9111103223" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10815" - ], - "x-ms-request-id": [ - "d3e5a816-4aeb-46f0-bd99-d97f6f48f183" - ], - "x-ms-correlation-request-id": [ - "d3e5a816-4aeb-46f0-bd99-d97f6f48f183" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173318Z:d3e5a816-4aeb-46f0-bd99-d97f6f48f183" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "01046d82-ebd4-4ec9-a21d-c32e556b18bd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10814" - ], - "x-ms-request-id": [ - "7a427674-7602-4099-ad17-19cba27cbc34" - ], - "x-ms-correlation-request-id": [ - "7a427674-7602-4099-ad17-19cba27cbc34" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173319Z:7a427674-7602-4099-ad17-19cba27cbc34" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fcaa8e2b-3d1c-4aff-b0af-f12aab980a94" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10813" - ], - "x-ms-request-id": [ - "ad3c353f-7dc8-4af1-be9e-950893971dc7" - ], - "x-ms-correlation-request-id": [ - "ad3c353f-7dc8-4af1-be9e-950893971dc7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173319Z:ad3c353f-7dc8-4af1-be9e-950893971dc7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "06550310-7915-448d-ab0f-32dd3ef91968" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10812" - ], - "x-ms-request-id": [ - "a2bb850d-4ecc-48eb-bf24-42d5f1694928" - ], - "x-ms-correlation-request-id": [ - "a2bb850d-4ecc-48eb-bf24-42d5f1694928" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173319Z:a2bb850d-4ecc-48eb-bf24-42d5f1694928" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "26b2fb33-5f2a-4613-a4c6-94a026632917" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10811" - ], - "x-ms-request-id": [ - "935b79f6-b995-4af0-8a19-9daae7786265" - ], - "x-ms-correlation-request-id": [ - "935b79f6-b995-4af0-8a19-9daae7786265" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173320Z:935b79f6-b995-4af0-8a19-9daae7786265" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37fdd28f-15e9-424f-b5f9-18a325ab2cb4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10810" - ], - "x-ms-request-id": [ - "ce513922-fc9f-4469-b992-24a84f46f362" - ], - "x-ms-correlation-request-id": [ - "ce513922-fc9f-4469-b992-24a84f46f362" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173320Z:ce513922-fc9f-4469-b992-24a84f46f362" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9a84fff1-d112-49a9-8ec7-678dc9c65470" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10809" - ], - "x-ms-request-id": [ - "d0e410cc-ca64-4107-99f9-433e36818d24" - ], - "x-ms-correlation-request-id": [ - "d0e410cc-ca64-4107-99f9-433e36818d24" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173320Z:d0e410cc-ca64-4107-99f9-433e36818d24" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc93d854-e992-4c08-a0fa-305dd3f76dd6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10808" - ], - "x-ms-request-id": [ - "ec92d375-10ee-41e3-b23b-4ca01ae89047" - ], - "x-ms-correlation-request-id": [ - "ec92d375-10ee-41e3-b23b-4ca01ae89047" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173320Z:ec92d375-10ee-41e3-b23b-4ca01ae89047" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f2281759-a82f-4436-be54-342f333460c1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10807" - ], - "x-ms-request-id": [ - "beb1fcb8-3d3e-422e-972e-b11b4bdfc31a" - ], - "x-ms-correlation-request-id": [ - "beb1fcb8-3d3e-422e-972e-b11b4bdfc31a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173321Z:beb1fcb8-3d3e-422e-972e-b11b4bdfc31a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c12f0e7-e574-47cc-9771-0b042e8fa9bb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10806" - ], - "x-ms-request-id": [ - "97285e1c-86b3-41dc-a0e7-bdeaf321536a" - ], - "x-ms-correlation-request-id": [ - "97285e1c-86b3-41dc-a0e7-bdeaf321536a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173321Z:97285e1c-86b3-41dc-a0e7-bdeaf321536a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fe39708c-3b3e-4f1f-9421-a6c3ca012905" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10805" - ], - "x-ms-request-id": [ - "70916221-87de-45d7-aa65-93aac6421ea0" - ], - "x-ms-correlation-request-id": [ - "70916221-87de-45d7-aa65-93aac6421ea0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173321Z:70916221-87de-45d7-aa65-93aac6421ea0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "97975dc1-0fff-489c-986f-dc212ab5ca98" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10804" - ], - "x-ms-request-id": [ - "b19f47f3-f947-4bbf-9678-5d8ec31bda0c" - ], - "x-ms-correlation-request-id": [ - "b19f47f3-f947-4bbf-9678-5d8ec31bda0c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173321Z:b19f47f3-f947-4bbf-9678-5d8ec31bda0c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "782e4ce7-b0d4-4ae5-b83e-982f5123d316" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10803" - ], - "x-ms-request-id": [ - "a391a8d7-5af2-474b-ae7d-c12277d1c856" - ], - "x-ms-correlation-request-id": [ - "a391a8d7-5af2-474b-ae7d-c12277d1c856" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173322Z:a391a8d7-5af2-474b-ae7d-c12277d1c856" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4b291f34-313c-4063-b082-39cf70260845" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10802" - ], - "x-ms-request-id": [ - "f7860a58-c20f-497c-85fd-dfc203b174d5" - ], - "x-ms-correlation-request-id": [ - "f7860a58-c20f-497c-85fd-dfc203b174d5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173322Z:f7860a58-c20f-497c-85fd-dfc203b174d5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75781231-dafc-4326-9fb5-2abbdd6e5140" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10801" - ], - "x-ms-request-id": [ - "9fca497f-387b-4d60-9bc8-61dc7107719a" - ], - "x-ms-correlation-request-id": [ - "9fca497f-387b-4d60-9bc8-61dc7107719a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173322Z:9fca497f-387b-4d60-9bc8-61dc7107719a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e46992f0-475a-447a-a0c7-cb4ff158b720" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10800" - ], - "x-ms-request-id": [ - "6bc78373-198b-46b6-8589-9093e068bdbb" - ], - "x-ms-correlation-request-id": [ - "6bc78373-198b-46b6-8589-9093e068bdbb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173322Z:6bc78373-198b-46b6-8589-9093e068bdbb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "752f29c9-2469-45a1-88f0-77aa3d4aaa7e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10799" - ], - "x-ms-request-id": [ - "5aadf955-6d41-496c-8f33-3e2307697766" - ], - "x-ms-correlation-request-id": [ - "5aadf955-6d41-496c-8f33-3e2307697766" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173323Z:5aadf955-6d41-496c-8f33-3e2307697766" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "725aee29-ca8b-4d4c-b1bb-5f9f11699b97" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10798" - ], - "x-ms-request-id": [ - "d7b610c7-0879-45cc-bc67-3413ab6218e5" - ], - "x-ms-correlation-request-id": [ - "d7b610c7-0879-45cc-bc67-3413ab6218e5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173323Z:d7b610c7-0879-45cc-bc67-3413ab6218e5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "92ba7193-026a-4b8d-b773-f230864c7c3c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10797" - ], - "x-ms-request-id": [ - "88142c91-977d-401c-b0ab-38c1db9b542b" - ], - "x-ms-correlation-request-id": [ - "88142c91-977d-401c-b0ab-38c1db9b542b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173323Z:88142c91-977d-401c-b0ab-38c1db9b542b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f22530c8-867f-4465-8518-d96913844bf5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10796" - ], - "x-ms-request-id": [ - "ebb9615d-e337-4fed-a6d7-1a832c670944" - ], - "x-ms-correlation-request-id": [ - "ebb9615d-e337-4fed-a6d7-1a832c670944" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173324Z:ebb9615d-e337-4fed-a6d7-1a832c670944" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ab08b678-84f5-450d-8a29-5097b4ec5040" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10795" - ], - "x-ms-request-id": [ - "52f1969e-b8d7-446a-8679-6a37fa09570d" - ], - "x-ms-correlation-request-id": [ - "52f1969e-b8d7-446a-8679-6a37fa09570d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173324Z:52f1969e-b8d7-446a-8679-6a37fa09570d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "de366227-3822-49f3-abad-9a80c0e9fb4f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10794" - ], - "x-ms-request-id": [ - "2a771cee-846f-4339-9e2d-54c9ad3a836c" - ], - "x-ms-correlation-request-id": [ - "2a771cee-846f-4339-9e2d-54c9ad3a836c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173324Z:2a771cee-846f-4339-9e2d-54c9ad3a836c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a084525-8e4b-49cb-af3c-5c203d070080" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10793" - ], - "x-ms-request-id": [ - "962e5a08-bc3f-4d5f-b32c-b8b5b93e29f3" - ], - "x-ms-correlation-request-id": [ - "962e5a08-bc3f-4d5f-b32c-b8b5b93e29f3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173324Z:962e5a08-bc3f-4d5f-b32c-b8b5b93e29f3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2747f013-daac-4b86-8a82-b44fd979e3a9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10792" - ], - "x-ms-request-id": [ - "1e335a08-f805-4bd0-ba20-7e492e871919" - ], - "x-ms-correlation-request-id": [ - "1e335a08-f805-4bd0-ba20-7e492e871919" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173325Z:1e335a08-f805-4bd0-ba20-7e492e871919" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e98f5fd1-cd01-4188-9930-08a475d1888a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10791" - ], - "x-ms-request-id": [ - "62b45b69-69b4-4d5d-9b1d-a98612912258" - ], - "x-ms-correlation-request-id": [ - "62b45b69-69b4-4d5d-9b1d-a98612912258" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173325Z:62b45b69-69b4-4d5d-9b1d-a98612912258" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5637d2bb-dac7-4383-a1dd-9b79f46c8bc7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10790" - ], - "x-ms-request-id": [ - "c7d2bbc0-c781-4eed-80b5-9d89d66e23d1" - ], - "x-ms-correlation-request-id": [ - "c7d2bbc0-c781-4eed-80b5-9d89d66e23d1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173325Z:c7d2bbc0-c781-4eed-80b5-9d89d66e23d1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "78fbb115-1e80-428e-b52e-169f8e8847cf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10789" - ], - "x-ms-request-id": [ - "3fc69a56-814d-4ba0-9185-86b454c10aab" - ], - "x-ms-correlation-request-id": [ - "3fc69a56-814d-4ba0-9185-86b454c10aab" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173326Z:3fc69a56-814d-4ba0-9185-86b454c10aab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6e2df23-48c2-4943-b9ef-f4c9c3d8b3aa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10788" - ], - "x-ms-request-id": [ - "abe1b63e-a269-4782-850b-fae4ab0f46a2" - ], - "x-ms-correlation-request-id": [ - "abe1b63e-a269-4782-850b-fae4ab0f46a2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173326Z:abe1b63e-a269-4782-850b-fae4ab0f46a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09ffa429-722a-41a1-8143-9607bfdc9780" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10787" - ], - "x-ms-request-id": [ - "1f8fad1f-6658-4af1-9d93-33ffa51ff7af" - ], - "x-ms-correlation-request-id": [ - "1f8fad1f-6658-4af1-9d93-33ffa51ff7af" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173326Z:1f8fad1f-6658-4af1-9d93-33ffa51ff7af" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ae98ee28-a841-4e98-85b1-57150350c3e9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10786" - ], - "x-ms-request-id": [ - "76b7dcf9-a7ac-48b9-be20-8b6f322626a6" - ], - "x-ms-correlation-request-id": [ - "76b7dcf9-a7ac-48b9-be20-8b6f322626a6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173326Z:76b7dcf9-a7ac-48b9-be20-8b6f322626a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7feab225-5a5b-4627-94bd-6ce4f7087c0d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10785" - ], - "x-ms-request-id": [ - "c626edd2-0812-4d82-be0d-f3ff4e70a793" - ], - "x-ms-correlation-request-id": [ - "c626edd2-0812-4d82-be0d-f3ff4e70a793" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173327Z:c626edd2-0812-4d82-be0d-f3ff4e70a793" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "980e8989-7fe8-486c-b1bb-4baf3813d81b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10784" - ], - "x-ms-request-id": [ - "c32e0841-32c8-4771-9ef1-2fa06460dd00" - ], - "x-ms-correlation-request-id": [ - "c32e0841-32c8-4771-9ef1-2fa06460dd00" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173327Z:c32e0841-32c8-4771-9ef1-2fa06460dd00" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f64ecd3-c86e-4d49-b707-3ed9b273710a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10783" - ], - "x-ms-request-id": [ - "5b21da0d-5b6e-4772-bda5-b8f82c647036" - ], - "x-ms-correlation-request-id": [ - "5b21da0d-5b6e-4772-bda5-b8f82c647036" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173327Z:5b21da0d-5b6e-4772-bda5-b8f82c647036" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8508017f-e96a-4279-8ab4-9b170ef5ff22" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10782" - ], - "x-ms-request-id": [ - "c6f8c897-e530-44c1-8b6f-862a3679257a" - ], - "x-ms-correlation-request-id": [ - "c6f8c897-e530-44c1-8b6f-862a3679257a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173327Z:c6f8c897-e530-44c1-8b6f-862a3679257a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4aedf767-6eef-43fa-9738-933374d6ef12" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10781" - ], - "x-ms-request-id": [ - "e84a5c55-3b1e-4f0e-9bee-0073b25c73aa" - ], - "x-ms-correlation-request-id": [ - "e84a5c55-3b1e-4f0e-9bee-0073b25c73aa" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173328Z:e84a5c55-3b1e-4f0e-9bee-0073b25c73aa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "96969261-cf1b-44f2-ba1f-788322ef978a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10780" - ], - "x-ms-request-id": [ - "6dd8406e-5a01-4214-8624-8c7adb10da54" - ], - "x-ms-correlation-request-id": [ - "6dd8406e-5a01-4214-8624-8c7adb10da54" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173328Z:6dd8406e-5a01-4214-8624-8c7adb10da54" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a5c6d3bf-067b-4b36-96bd-732c234ba247" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10779" - ], - "x-ms-request-id": [ - "b24a9d04-f12e-4544-8afa-fe2bfa63778e" - ], - "x-ms-correlation-request-id": [ - "b24a9d04-f12e-4544-8afa-fe2bfa63778e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173328Z:b24a9d04-f12e-4544-8afa-fe2bfa63778e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5308e0ce-c370-40c0-8170-d2994f39bd43" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10778" - ], - "x-ms-request-id": [ - "3f4bd2ab-3f09-402e-8949-f5e82f6a13db" - ], - "x-ms-correlation-request-id": [ - "3f4bd2ab-3f09-402e-8949-f5e82f6a13db" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173329Z:3f4bd2ab-3f09-402e-8949-f5e82f6a13db" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d39270aa-2c95-49ef-a4e7-707769c4c1c3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10777" - ], - "x-ms-request-id": [ - "67c46461-67e7-457a-8070-73f3f2fb6278" - ], - "x-ms-correlation-request-id": [ - "67c46461-67e7-457a-8070-73f3f2fb6278" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173329Z:67c46461-67e7-457a-8070-73f3f2fb6278" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c00e3b10-210d-4370-bee6-bd1fb4a048a0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10776" - ], - "x-ms-request-id": [ - "90a30dd4-82e9-4a50-818b-227afd2fd2d8" - ], - "x-ms-correlation-request-id": [ - "90a30dd4-82e9-4a50-818b-227afd2fd2d8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173329Z:90a30dd4-82e9-4a50-818b-227afd2fd2d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "20732df3-df3e-46c4-bb44-3cd4f7420ddd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10775" - ], - "x-ms-request-id": [ - "e740fd84-1553-42fb-b430-a2497f2d2f24" - ], - "x-ms-correlation-request-id": [ - "e740fd84-1553-42fb-b430-a2497f2d2f24" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173329Z:e740fd84-1553-42fb-b430-a2497f2d2f24" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "584ee729-6911-48d6-bdad-00839648a573" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10774" - ], - "x-ms-request-id": [ - "e2a87a6a-5d5d-4a92-a806-014169abb179" - ], - "x-ms-correlation-request-id": [ - "e2a87a6a-5d5d-4a92-a806-014169abb179" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173330Z:e2a87a6a-5d5d-4a92-a806-014169abb179" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:29 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e40eecb-a289-4059-9ae5-c79fa71eef3b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10773" - ], - "x-ms-request-id": [ - "beba96c0-f023-4f0f-8507-218b8467ea7c" - ], - "x-ms-correlation-request-id": [ - "beba96c0-f023-4f0f-8507-218b8467ea7c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173330Z:beba96c0-f023-4f0f-8507-218b8467ea7c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6064bb83-1612-451a-a2a1-2b29b7859d2c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10772" - ], - "x-ms-request-id": [ - "c2d56f96-1bd6-4bcc-8f76-4348268b64f6" - ], - "x-ms-correlation-request-id": [ - "c2d56f96-1bd6-4bcc-8f76-4348268b64f6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173330Z:c2d56f96-1bd6-4bcc-8f76-4348268b64f6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d21fa679-c895-4e1e-8d85-80fefcc8c7f9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10771" - ], - "x-ms-request-id": [ - "484e5cf3-8e11-48b1-a17d-0895993fa0dc" - ], - "x-ms-correlation-request-id": [ - "484e5cf3-8e11-48b1-a17d-0895993fa0dc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173330Z:484e5cf3-8e11-48b1-a17d-0895993fa0dc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "97380202-7204-4d44-bf91-fb166f540237" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10770" - ], - "x-ms-request-id": [ - "176a96e9-340c-4c07-95d8-161f2304e910" - ], - "x-ms-correlation-request-id": [ - "176a96e9-340c-4c07-95d8-161f2304e910" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173331Z:176a96e9-340c-4c07-95d8-161f2304e910" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9bc67300-8a68-4f03-a177-9549b0995ab7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10769" - ], - "x-ms-request-id": [ - "1ea5d1ab-d19a-4997-a0de-ebc4b29d5908" - ], - "x-ms-correlation-request-id": [ - "1ea5d1ab-d19a-4997-a0de-ebc4b29d5908" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173331Z:1ea5d1ab-d19a-4997-a0de-ebc4b29d5908" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "482aa4d3-35ff-4ac5-abde-b05160ff01f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10768" - ], - "x-ms-request-id": [ - "6dd3ae3c-16bd-4226-91f0-0ade1e5d9e22" - ], - "x-ms-correlation-request-id": [ - "6dd3ae3c-16bd-4226-91f0-0ade1e5d9e22" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173331Z:6dd3ae3c-16bd-4226-91f0-0ade1e5d9e22" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "28830b93-bac9-4208-8076-46c1f18bf0d8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10767" - ], - "x-ms-request-id": [ - "898ce6d1-8c68-4eff-815b-bae53334915f" - ], - "x-ms-correlation-request-id": [ - "898ce6d1-8c68-4eff-815b-bae53334915f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173331Z:898ce6d1-8c68-4eff-815b-bae53334915f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "273930b4-916b-418a-a177-13fb9f464131" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10766" - ], - "x-ms-request-id": [ - "64871daf-5abe-493a-99a9-17391e6f35cb" - ], - "x-ms-correlation-request-id": [ - "64871daf-5abe-493a-99a9-17391e6f35cb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173332Z:64871daf-5abe-493a-99a9-17391e6f35cb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "997eecf5-2dba-42a3-95fd-aa0acca28c65" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10765" - ], - "x-ms-request-id": [ - "38212eba-cd4c-43ed-8f93-7f2e5df8bc5a" - ], - "x-ms-correlation-request-id": [ - "38212eba-cd4c-43ed-8f93-7f2e5df8bc5a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173332Z:38212eba-cd4c-43ed-8f93-7f2e5df8bc5a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c2ae38eb-3a58-4b81-94da-eae6f668cc1b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10764" - ], - "x-ms-request-id": [ - "20400475-2bd3-4b24-a549-323434d0686e" - ], - "x-ms-correlation-request-id": [ - "20400475-2bd3-4b24-a549-323434d0686e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173332Z:20400475-2bd3-4b24-a549-323434d0686e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a261572-acc3-4583-8e41-1f4e87fb42cc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10763" - ], - "x-ms-request-id": [ - "08a5aaff-2e66-42e1-b85f-a77a2a9bd55b" - ], - "x-ms-correlation-request-id": [ - "08a5aaff-2e66-42e1-b85f-a77a2a9bd55b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173333Z:08a5aaff-2e66-42e1-b85f-a77a2a9bd55b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52ac5330-02a6-48d1-bf9b-e53c0671bb05" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10762" - ], - "x-ms-request-id": [ - "b66e6859-5eff-4d68-9ab1-1d991c4205d0" - ], - "x-ms-correlation-request-id": [ - "b66e6859-5eff-4d68-9ab1-1d991c4205d0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173333Z:b66e6859-5eff-4d68-9ab1-1d991c4205d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8f56c1b5-59ee-4a55-b603-ba5985f539d6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10761" - ], - "x-ms-request-id": [ - "c42b44ad-f97b-4e95-b6b4-53cc810f34af" - ], - "x-ms-correlation-request-id": [ - "c42b44ad-f97b-4e95-b6b4-53cc810f34af" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173333Z:c42b44ad-f97b-4e95-b6b4-53cc810f34af" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "622e096c-01ed-4f92-89bd-a0575aa133d7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10760" - ], - "x-ms-request-id": [ - "477db0c6-92d3-4ce6-a983-29933e76b37d" - ], - "x-ms-correlation-request-id": [ - "477db0c6-92d3-4ce6-a983-29933e76b37d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173333Z:477db0c6-92d3-4ce6-a983-29933e76b37d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fe152b48-2ff7-4ad7-9eaf-43e0d4e1c537" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10759" - ], - "x-ms-request-id": [ - "47c39cb1-df9d-4087-865c-a481e1d56af9" - ], - "x-ms-correlation-request-id": [ - "47c39cb1-df9d-4087-865c-a481e1d56af9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173334Z:47c39cb1-df9d-4087-865c-a481e1d56af9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3bd6fba9-59e3-4ebe-8c43-13617c4b8fc0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10758" - ], - "x-ms-request-id": [ - "147cd4de-7b88-4574-b99b-3f1b41d66c31" - ], - "x-ms-correlation-request-id": [ - "147cd4de-7b88-4574-b99b-3f1b41d66c31" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173334Z:147cd4de-7b88-4574-b99b-3f1b41d66c31" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fb844136-9e5d-4fd0-80aa-5f1c7c94d613" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10757" - ], - "x-ms-request-id": [ - "13e21573-1127-4f8f-a54d-241a78788244" - ], - "x-ms-correlation-request-id": [ - "13e21573-1127-4f8f-a54d-241a78788244" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173334Z:13e21573-1127-4f8f-a54d-241a78788244" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8331fb88-6d43-45ba-b50d-a38205d13a1b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10756" - ], - "x-ms-request-id": [ - "19645549-e83b-4108-869b-60aa0a14a6cb" - ], - "x-ms-correlation-request-id": [ - "19645549-e83b-4108-869b-60aa0a14a6cb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173334Z:19645549-e83b-4108-869b-60aa0a14a6cb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "93203924-4ba3-43ca-8698-1f9296b2fddf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10755" - ], - "x-ms-request-id": [ - "68a9163d-6c0d-4948-8368-5c8e942cc4e8" - ], - "x-ms-correlation-request-id": [ - "68a9163d-6c0d-4948-8368-5c8e942cc4e8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173335Z:68a9163d-6c0d-4948-8368-5c8e942cc4e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dada8641-ef95-41db-be3c-4a550a5cf3cf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10754" - ], - "x-ms-request-id": [ - "9f2d19d5-09f4-400d-bb4b-215cecdfb33c" - ], - "x-ms-correlation-request-id": [ - "9f2d19d5-09f4-400d-bb4b-215cecdfb33c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173335Z:9f2d19d5-09f4-400d-bb4b-215cecdfb33c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1f19817-0c2c-4f72-84e8-0dae4e69b6dd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10753" - ], - "x-ms-request-id": [ - "0e7074ef-94f3-4950-99cb-df74501bffb5" - ], - "x-ms-correlation-request-id": [ - "0e7074ef-94f3-4950-99cb-df74501bffb5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173335Z:0e7074ef-94f3-4950-99cb-df74501bffb5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1e927643-5e2c-46e4-8e62-e0fb99405e21" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10752" - ], - "x-ms-request-id": [ - "b27c4c58-b25f-42d7-b764-d16b9c884d62" - ], - "x-ms-correlation-request-id": [ - "b27c4c58-b25f-42d7-b764-d16b9c884d62" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173336Z:b27c4c58-b25f-42d7-b764-d16b9c884d62" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d459984-3559-4cb0-b42c-c9ede1eead64" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10751" - ], - "x-ms-request-id": [ - "43514394-acb0-4722-bf4b-a916ce6172a9" - ], - "x-ms-correlation-request-id": [ - "43514394-acb0-4722-bf4b-a916ce6172a9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173336Z:43514394-acb0-4722-bf4b-a916ce6172a9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0212fc98-f9f3-46a3-82af-f18b0f87aa7a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10750" - ], - "x-ms-request-id": [ - "b05e52dd-46fb-4fa0-a406-0c0d7da8db9c" - ], - "x-ms-correlation-request-id": [ - "b05e52dd-46fb-4fa0-a406-0c0d7da8db9c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173336Z:b05e52dd-46fb-4fa0-a406-0c0d7da8db9c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cf51ea3a-9b2a-4785-950e-17b7f89719cc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10749" - ], - "x-ms-request-id": [ - "698a5314-c190-4df6-abc2-acd36d544354" - ], - "x-ms-correlation-request-id": [ - "698a5314-c190-4df6-abc2-acd36d544354" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173336Z:698a5314-c190-4df6-abc2-acd36d544354" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33889fe7-e4b2-44e1-b65e-b8a3715565d1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10748" - ], - "x-ms-request-id": [ - "778e8f97-7b8e-432a-bdd4-782b3c0fcf4b" - ], - "x-ms-correlation-request-id": [ - "778e8f97-7b8e-432a-bdd4-782b3c0fcf4b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173337Z:778e8f97-7b8e-432a-bdd4-782b3c0fcf4b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa1980f6-d514-431d-9b88-84611b0a296f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10747" - ], - "x-ms-request-id": [ - "60a5925d-1212-4fb5-975c-13748350497c" - ], - "x-ms-correlation-request-id": [ - "60a5925d-1212-4fb5-975c-13748350497c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173337Z:60a5925d-1212-4fb5-975c-13748350497c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b7fc2a2d-ba8c-41e5-9b6d-307d39d50512" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10746" - ], - "x-ms-request-id": [ - "47ab63e5-7097-436b-88e5-ab4e28ddd0d0" - ], - "x-ms-correlation-request-id": [ - "47ab63e5-7097-436b-88e5-ab4e28ddd0d0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173337Z:47ab63e5-7097-436b-88e5-ab4e28ddd0d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "acb87df2-75af-4501-94de-c30c7279a733" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10745" - ], - "x-ms-request-id": [ - "c1fff4c9-3dc2-432d-87c3-6664cd39b83a" - ], - "x-ms-correlation-request-id": [ - "c1fff4c9-3dc2-432d-87c3-6664cd39b83a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173337Z:c1fff4c9-3dc2-432d-87c3-6664cd39b83a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c37c965-630e-42f2-80e5-f76a4b093020" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10744" - ], - "x-ms-request-id": [ - "0ac25e27-3779-4ebb-9987-e16b9950388c" - ], - "x-ms-correlation-request-id": [ - "0ac25e27-3779-4ebb-9987-e16b9950388c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173338Z:0ac25e27-3779-4ebb-9987-e16b9950388c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e5a4b59a-9884-49db-8d5e-b101d727c504" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10743" - ], - "x-ms-request-id": [ - "307cce62-e630-4902-a36b-de86d2884780" - ], - "x-ms-correlation-request-id": [ - "307cce62-e630-4902-a36b-de86d2884780" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173338Z:307cce62-e630-4902-a36b-de86d2884780" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "025a86c6-b0b1-4a33-b0ed-150b0a8b2e05" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10742" - ], - "x-ms-request-id": [ - "613607cc-1ee2-462f-a5f4-d8e9720d8d45" - ], - "x-ms-correlation-request-id": [ - "613607cc-1ee2-462f-a5f4-d8e9720d8d45" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173338Z:613607cc-1ee2-462f-a5f4-d8e9720d8d45" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eb792ab0-f07e-4ba5-a1fe-1ac1e89969de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10741" - ], - "x-ms-request-id": [ - "110e2972-ff92-4d7f-a735-a947ed6ec822" - ], - "x-ms-correlation-request-id": [ - "110e2972-ff92-4d7f-a735-a947ed6ec822" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173338Z:110e2972-ff92-4d7f-a735-a947ed6ec822" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "39800931-0dc4-4aff-b0e5-03d451ea383c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10740" - ], - "x-ms-request-id": [ - "fe775d35-637e-4224-aa39-f541fd3a157a" - ], - "x-ms-correlation-request-id": [ - "fe775d35-637e-4224-aa39-f541fd3a157a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173339Z:fe775d35-637e-4224-aa39-f541fd3a157a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba399c65-aa0b-4b82-baf5-e1721ccd5772" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10739" - ], - "x-ms-request-id": [ - "c26b7b0a-9fbe-4265-85cf-3cb24c5d0372" - ], - "x-ms-correlation-request-id": [ - "c26b7b0a-9fbe-4265-85cf-3cb24c5d0372" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173339Z:c26b7b0a-9fbe-4265-85cf-3cb24c5d0372" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51e68cec-a2f6-44b0-9b13-96baf233356a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10738" - ], - "x-ms-request-id": [ - "5d4dbfd4-3582-45a1-a3ba-1d404d879cea" - ], - "x-ms-correlation-request-id": [ - "5d4dbfd4-3582-45a1-a3ba-1d404d879cea" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173339Z:5d4dbfd4-3582-45a1-a3ba-1d404d879cea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b304f665-0508-4323-8419-a82536b8c247" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10737" - ], - "x-ms-request-id": [ - "291437d1-f1e3-47d3-81c3-e8379039eaa2" - ], - "x-ms-correlation-request-id": [ - "291437d1-f1e3-47d3-81c3-e8379039eaa2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173339Z:291437d1-f1e3-47d3-81c3-e8379039eaa2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef1ba7c2-3cde-4489-a0c6-2a6b3d6bab14" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10736" - ], - "x-ms-request-id": [ - "e7e5768b-f515-437e-a690-d5d28e5a9087" - ], - "x-ms-correlation-request-id": [ - "e7e5768b-f515-437e-a690-d5d28e5a9087" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173340Z:e7e5768b-f515-437e-a690-d5d28e5a9087" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "696bb8c2-8036-4604-90ee-1a6694efa052" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10735" - ], - "x-ms-request-id": [ - "abe977d4-1b41-427f-983c-49480f287e3f" - ], - "x-ms-correlation-request-id": [ - "abe977d4-1b41-427f-983c-49480f287e3f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173340Z:abe977d4-1b41-427f-983c-49480f287e3f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "169b12ad-dffa-4f18-92ce-abf731b853df" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10734" - ], - "x-ms-request-id": [ - "c9dcccc1-74b7-4971-8cbb-9fc194ae3b9d" - ], - "x-ms-correlation-request-id": [ - "c9dcccc1-74b7-4971-8cbb-9fc194ae3b9d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173340Z:c9dcccc1-74b7-4971-8cbb-9fc194ae3b9d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68ba0f7e-ba79-417d-b50a-9e053a5fb272" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10733" - ], - "x-ms-request-id": [ - "c34635bd-c4af-4a64-89b7-20ae67dcddd4" - ], - "x-ms-correlation-request-id": [ - "c34635bd-c4af-4a64-89b7-20ae67dcddd4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173341Z:c34635bd-c4af-4a64-89b7-20ae67dcddd4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8e26b0ff-4352-4b82-8526-c2ceeccf27e1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10732" - ], - "x-ms-request-id": [ - "55ae4702-2d82-4fe0-9456-dd5fcd359f4f" - ], - "x-ms-correlation-request-id": [ - "55ae4702-2d82-4fe0-9456-dd5fcd359f4f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173341Z:55ae4702-2d82-4fe0-9456-dd5fcd359f4f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "54a854d6-170b-4d42-aa2f-9fd9947e9ea1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10731" - ], - "x-ms-request-id": [ - "e7f2f0f0-f679-420e-9253-8553a0d7f895" - ], - "x-ms-correlation-request-id": [ - "e7f2f0f0-f679-420e-9253-8553a0d7f895" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173341Z:e7f2f0f0-f679-420e-9253-8553a0d7f895" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c745ef5e-e7e6-4bdd-86c4-d8da1c3872cb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10730" - ], - "x-ms-request-id": [ - "7b8962f3-3924-4f74-b200-44fe15914776" - ], - "x-ms-correlation-request-id": [ - "7b8962f3-3924-4f74-b200-44fe15914776" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173341Z:7b8962f3-3924-4f74-b200-44fe15914776" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31278668-1a76-412c-989b-212801791814" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10729" - ], - "x-ms-request-id": [ - "bc9cffe2-36c4-4483-b299-f3ced690f499" - ], - "x-ms-correlation-request-id": [ - "bc9cffe2-36c4-4483-b299-f3ced690f499" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173342Z:bc9cffe2-36c4-4483-b299-f3ced690f499" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c53911e5-8e56-4a86-9810-0e737597d919" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10728" - ], - "x-ms-request-id": [ - "9e3b9925-2b86-4a65-b6a3-e3d90b5ff6a8" - ], - "x-ms-correlation-request-id": [ - "9e3b9925-2b86-4a65-b6a3-e3d90b5ff6a8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173342Z:9e3b9925-2b86-4a65-b6a3-e3d90b5ff6a8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ea6cbf63-8abe-423e-b9b5-23d8867223d0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10727" - ], - "x-ms-request-id": [ - "b3e44ec9-00f3-4d2d-8cc8-442f6c61d4e2" - ], - "x-ms-correlation-request-id": [ - "b3e44ec9-00f3-4d2d-8cc8-442f6c61d4e2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173342Z:b3e44ec9-00f3-4d2d-8cc8-442f6c61d4e2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f9e16ff-c130-44b2-8c9c-e9813e44f411" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10726" - ], - "x-ms-request-id": [ - "95dd16c6-ce7a-46c5-a143-9c9a5293f56d" - ], - "x-ms-correlation-request-id": [ - "95dd16c6-ce7a-46c5-a143-9c9a5293f56d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173342Z:95dd16c6-ce7a-46c5-a143-9c9a5293f56d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f3c5f493-d6f5-492a-91b6-37e690e2d70a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10725" - ], - "x-ms-request-id": [ - "d318afa0-6509-43d7-915e-76d236222448" - ], - "x-ms-correlation-request-id": [ - "d318afa0-6509-43d7-915e-76d236222448" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173343Z:d318afa0-6509-43d7-915e-76d236222448" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5cd96df7-bd1c-47ba-ad8f-1d53cb56b51b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10724" - ], - "x-ms-request-id": [ - "c0ecc50d-4503-47ec-b3ab-664182f3f23a" - ], - "x-ms-correlation-request-id": [ - "c0ecc50d-4503-47ec-b3ab-664182f3f23a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173343Z:c0ecc50d-4503-47ec-b3ab-664182f3f23a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3d0e1905-9150-41fb-b3f6-283f514eb078" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10723" - ], - "x-ms-request-id": [ - "f6b72de5-cd99-4371-901e-47b5f5f9538a" - ], - "x-ms-correlation-request-id": [ - "f6b72de5-cd99-4371-901e-47b5f5f9538a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173343Z:f6b72de5-cd99-4371-901e-47b5f5f9538a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d0a29bc4-a9f9-4c14-96eb-f0ecdff9d0c0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10722" - ], - "x-ms-request-id": [ - "c43f7f64-5592-4f45-a511-973e39d50547" - ], - "x-ms-correlation-request-id": [ - "c43f7f64-5592-4f45-a511-973e39d50547" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173344Z:c43f7f64-5592-4f45-a511-973e39d50547" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "19f44454-abfa-49ad-aa35-4e3e9413e810" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10721" - ], - "x-ms-request-id": [ - "30d009ea-abb2-44bc-bb59-300bd71f89ac" - ], - "x-ms-correlation-request-id": [ - "30d009ea-abb2-44bc-bb59-300bd71f89ac" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173344Z:30d009ea-abb2-44bc-bb59-300bd71f89ac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09bb24b0-83fb-416a-a04e-054ea6847aa9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10720" - ], - "x-ms-request-id": [ - "7a12e14c-a37a-4c9b-a7b5-7a0ed739f1ca" - ], - "x-ms-correlation-request-id": [ - "7a12e14c-a37a-4c9b-a7b5-7a0ed739f1ca" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173344Z:7a12e14c-a37a-4c9b-a7b5-7a0ed739f1ca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51e89113-564e-4249-adfa-d61392b6e451" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10719" - ], - "x-ms-request-id": [ - "fdfe4bfc-8755-4994-99ee-46e00ec98386" - ], - "x-ms-correlation-request-id": [ - "fdfe4bfc-8755-4994-99ee-46e00ec98386" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173344Z:fdfe4bfc-8755-4994-99ee-46e00ec98386" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7dcce1db-13b0-42c9-a74e-254f3cbf3449" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10718" - ], - "x-ms-request-id": [ - "422ffb89-8fc2-4080-822a-12fe9dcf2cad" - ], - "x-ms-correlation-request-id": [ - "422ffb89-8fc2-4080-822a-12fe9dcf2cad" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173345Z:422ffb89-8fc2-4080-822a-12fe9dcf2cad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2334064b-9d06-4dd3-8eba-f24a11786db0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10717" - ], - "x-ms-request-id": [ - "20244d24-cffb-42e7-93fc-a0894285ee45" - ], - "x-ms-correlation-request-id": [ - "20244d24-cffb-42e7-93fc-a0894285ee45" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173345Z:20244d24-cffb-42e7-93fc-a0894285ee45" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2015f85c-58d0-4908-be7b-a41b972f8e32" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10716" - ], - "x-ms-request-id": [ - "6b99588f-41b7-43cb-a245-776d298da9ec" - ], - "x-ms-correlation-request-id": [ - "6b99588f-41b7-43cb-a245-776d298da9ec" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173345Z:6b99588f-41b7-43cb-a245-776d298da9ec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4532ff7b-9cc3-45ea-a6be-b73b7ce7cd01" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10715" - ], - "x-ms-request-id": [ - "15c848f2-2a04-4cd1-9fe1-c1d68d32a7c8" - ], - "x-ms-correlation-request-id": [ - "15c848f2-2a04-4cd1-9fe1-c1d68d32a7c8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173346Z:15c848f2-2a04-4cd1-9fe1-c1d68d32a7c8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e27fe490-4288-45df-b86c-42596e53ce20" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10714" - ], - "x-ms-request-id": [ - "19985eff-1611-4734-8141-03f1533b0bf3" - ], - "x-ms-correlation-request-id": [ - "19985eff-1611-4734-8141-03f1533b0bf3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173346Z:19985eff-1611-4734-8141-03f1533b0bf3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1b0bf6e6-3325-4b67-82b1-2912d4204929" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10713" - ], - "x-ms-request-id": [ - "8d720873-da6a-4a06-b16f-0d74a44b1603" - ], - "x-ms-correlation-request-id": [ - "8d720873-da6a-4a06-b16f-0d74a44b1603" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173346Z:8d720873-da6a-4a06-b16f-0d74a44b1603" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "05488db7-ceff-47ea-bc66-78d23e8aedf9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10712" - ], - "x-ms-request-id": [ - "42f0a525-1669-49e1-83d2-5fff298649f6" - ], - "x-ms-correlation-request-id": [ - "42f0a525-1669-49e1-83d2-5fff298649f6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173346Z:42f0a525-1669-49e1-83d2-5fff298649f6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c7776ebd-49e1-40d2-9521-3ff25477f8f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10711" - ], - "x-ms-request-id": [ - "dafbd7d5-b671-4d81-8d33-1fe2fdf74d59" - ], - "x-ms-correlation-request-id": [ - "dafbd7d5-b671-4d81-8d33-1fe2fdf74d59" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173347Z:dafbd7d5-b671-4d81-8d33-1fe2fdf74d59" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81720c56-9107-4646-80fb-4fff85d42feb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10710" - ], - "x-ms-request-id": [ - "88c91e8a-6ab0-47ca-b141-d5d57bdbe873" - ], - "x-ms-correlation-request-id": [ - "88c91e8a-6ab0-47ca-b141-d5d57bdbe873" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173347Z:88c91e8a-6ab0-47ca-b141-d5d57bdbe873" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "20bde52b-404c-402a-97b7-447c19fdd1b6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10709" - ], - "x-ms-request-id": [ - "3dd4e4db-4820-472f-8625-d4f8953ba951" - ], - "x-ms-correlation-request-id": [ - "3dd4e4db-4820-472f-8625-d4f8953ba951" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173347Z:3dd4e4db-4820-472f-8625-d4f8953ba951" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f39171bc-474d-454a-a693-3096275a491a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10708" - ], - "x-ms-request-id": [ - "ad11b252-34b1-40f5-bbfd-e9a3a32c27ac" - ], - "x-ms-correlation-request-id": [ - "ad11b252-34b1-40f5-bbfd-e9a3a32c27ac" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173347Z:ad11b252-34b1-40f5-bbfd-e9a3a32c27ac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f3ad35a7-43eb-43f0-a237-53b93132c238" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10707" - ], - "x-ms-request-id": [ - "6b32f760-f756-4d49-bd21-49d70bd85615" - ], - "x-ms-correlation-request-id": [ - "6b32f760-f756-4d49-bd21-49d70bd85615" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173348Z:6b32f760-f756-4d49-bd21-49d70bd85615" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b80ff76d-eac1-45e2-8a17-dfd767d1296c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10706" - ], - "x-ms-request-id": [ - "79bfc09a-b956-41d5-8862-171b2022c104" - ], - "x-ms-correlation-request-id": [ - "79bfc09a-b956-41d5-8862-171b2022c104" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173348Z:79bfc09a-b956-41d5-8862-171b2022c104" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "410203df-5856-4fb7-a195-ef852a3b5f1f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10705" - ], - "x-ms-request-id": [ - "3edf5f63-74b6-4c45-b948-a434d47e6648" - ], - "x-ms-correlation-request-id": [ - "3edf5f63-74b6-4c45-b948-a434d47e6648" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173348Z:3edf5f63-74b6-4c45-b948-a434d47e6648" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bbb1ff6a-5a37-4075-a161-3d39013097ca" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10704" - ], - "x-ms-request-id": [ - "a44d76a1-e4a4-4005-9317-f45f5df45357" - ], - "x-ms-correlation-request-id": [ - "a44d76a1-e4a4-4005-9317-f45f5df45357" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173349Z:a44d76a1-e4a4-4005-9317-f45f5df45357" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a123cf5-52da-4443-9bda-eb17d2fb6318" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10703" - ], - "x-ms-request-id": [ - "97793f6e-31fc-45ed-88f0-20a9122d9514" - ], - "x-ms-correlation-request-id": [ - "97793f6e-31fc-45ed-88f0-20a9122d9514" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173349Z:97793f6e-31fc-45ed-88f0-20a9122d9514" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5b1602c9-7803-4897-8cc5-d72ebe1932bc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10702" - ], - "x-ms-request-id": [ - "72fdbe3a-0052-46fd-9ee4-05e7431015a5" - ], - "x-ms-correlation-request-id": [ - "72fdbe3a-0052-46fd-9ee4-05e7431015a5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173349Z:72fdbe3a-0052-46fd-9ee4-05e7431015a5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f357e548-9326-46c9-b640-1817d78644f5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10701" - ], - "x-ms-request-id": [ - "f85866dc-4354-4bf6-9a80-9dcdc760dc87" - ], - "x-ms-correlation-request-id": [ - "f85866dc-4354-4bf6-9a80-9dcdc760dc87" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173349Z:f85866dc-4354-4bf6-9a80-9dcdc760dc87" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3384a82b-9689-4f5c-bfe9-65ad6aefe5b4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10700" - ], - "x-ms-request-id": [ - "70077197-cd93-4554-94df-a387f426123e" - ], - "x-ms-correlation-request-id": [ - "70077197-cd93-4554-94df-a387f426123e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173350Z:70077197-cd93-4554-94df-a387f426123e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "34b6c87f-3a54-42cc-8d3b-1158a40f20ec" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10699" - ], - "x-ms-request-id": [ - "7dd77805-0e3e-43d7-bbf4-e94fcfc9e433" - ], - "x-ms-correlation-request-id": [ - "7dd77805-0e3e-43d7-bbf4-e94fcfc9e433" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173350Z:7dd77805-0e3e-43d7-bbf4-e94fcfc9e433" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a0fc0cdc-ccb0-43ba-a3b9-ba7c7058b180" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10698" - ], - "x-ms-request-id": [ - "ce43e20f-6840-4086-a28b-b36eef2de3f5" - ], - "x-ms-correlation-request-id": [ - "ce43e20f-6840-4086-a28b-b36eef2de3f5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173350Z:ce43e20f-6840-4086-a28b-b36eef2de3f5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "abb3835a-7af2-4d2d-85d5-1a26a8608f70" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10697" - ], - "x-ms-request-id": [ - "c2cc0d9b-4d2e-4551-ae3b-ed2a53e23f24" - ], - "x-ms-correlation-request-id": [ - "c2cc0d9b-4d2e-4551-ae3b-ed2a53e23f24" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173350Z:c2cc0d9b-4d2e-4551-ae3b-ed2a53e23f24" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9fde4586-27fe-4bec-bf5e-2aef45cf17c5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10696" - ], - "x-ms-request-id": [ - "b9af7402-df55-4243-a3dc-943060736538" - ], - "x-ms-correlation-request-id": [ - "b9af7402-df55-4243-a3dc-943060736538" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173351Z:b9af7402-df55-4243-a3dc-943060736538" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75d1eef1-8352-46c9-9d1f-e8605386072d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10695" - ], - "x-ms-request-id": [ - "99175fcf-9478-4f43-a821-94cace71f3ba" - ], - "x-ms-correlation-request-id": [ - "99175fcf-9478-4f43-a821-94cace71f3ba" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173351Z:99175fcf-9478-4f43-a821-94cace71f3ba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b4a5d084-a797-4c70-ab91-991048c12979" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10694" - ], - "x-ms-request-id": [ - "9d95a1e8-f180-4161-848e-7a57c8ed96a8" - ], - "x-ms-correlation-request-id": [ - "9d95a1e8-f180-4161-848e-7a57c8ed96a8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173351Z:9d95a1e8-f180-4161-848e-7a57c8ed96a8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d1138cb-bb09-4ee0-a910-0861664ce557" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10693" - ], - "x-ms-request-id": [ - "58eacc1e-5520-47d7-9ebc-f7df1f32d4e2" - ], - "x-ms-correlation-request-id": [ - "58eacc1e-5520-47d7-9ebc-f7df1f32d4e2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173352Z:58eacc1e-5520-47d7-9ebc-f7df1f32d4e2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "26142062-e1c2-4f6e-8e3c-6f0809915d87" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10692" - ], - "x-ms-request-id": [ - "8a38499c-f4d7-46f7-bd85-74d13dc6690d" - ], - "x-ms-correlation-request-id": [ - "8a38499c-f4d7-46f7-bd85-74d13dc6690d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173352Z:8a38499c-f4d7-46f7-bd85-74d13dc6690d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7cf31dd7-2a53-499d-a00c-3786870e930f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10691" - ], - "x-ms-request-id": [ - "99feddc0-0b57-4315-8c19-96f2d6084f46" - ], - "x-ms-correlation-request-id": [ - "99feddc0-0b57-4315-8c19-96f2d6084f46" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173352Z:99feddc0-0b57-4315-8c19-96f2d6084f46" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "216fc6a9-bfb2-4e96-8503-4df5a6b558d0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10690" - ], - "x-ms-request-id": [ - "09ef9e19-e770-4577-99bf-117ea6e2d238" - ], - "x-ms-correlation-request-id": [ - "09ef9e19-e770-4577-99bf-117ea6e2d238" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173352Z:09ef9e19-e770-4577-99bf-117ea6e2d238" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce153f3f-59f4-4a07-9a29-2c5b5766e4bc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10689" - ], - "x-ms-request-id": [ - "19ecd9f9-b8e8-470d-b4ec-fc75781cfe47" - ], - "x-ms-correlation-request-id": [ - "19ecd9f9-b8e8-470d-b4ec-fc75781cfe47" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173353Z:19ecd9f9-b8e8-470d-b4ec-fc75781cfe47" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a47cd8d6-c9dd-490c-86e0-39b0d9da849a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10688" - ], - "x-ms-request-id": [ - "8d16b8b6-487a-47b5-a9ed-72a76080ab6d" - ], - "x-ms-correlation-request-id": [ - "8d16b8b6-487a-47b5-a9ed-72a76080ab6d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173353Z:8d16b8b6-487a-47b5-a9ed-72a76080ab6d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6deb2c8-7f37-4f8a-8aa9-1a763fa7eb65" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10687" - ], - "x-ms-request-id": [ - "83eaaba4-b42e-4010-a11d-d25f97a88575" - ], - "x-ms-correlation-request-id": [ - "83eaaba4-b42e-4010-a11d-d25f97a88575" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173353Z:83eaaba4-b42e-4010-a11d-d25f97a88575" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "18fd15c9-7051-4ccd-a7a4-5725c1922798" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10686" - ], - "x-ms-request-id": [ - "5848d232-4f36-4bba-8a0b-cd6e2f7d658f" - ], - "x-ms-correlation-request-id": [ - "5848d232-4f36-4bba-8a0b-cd6e2f7d658f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173353Z:5848d232-4f36-4bba-8a0b-cd6e2f7d658f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6ab3698-550b-4e42-8211-1e62df5fafe6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10685" - ], - "x-ms-request-id": [ - "e9a124a3-f0e9-4d3a-a1a9-d0af8f5478e3" - ], - "x-ms-correlation-request-id": [ - "e9a124a3-f0e9-4d3a-a1a9-d0af8f5478e3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173354Z:e9a124a3-f0e9-4d3a-a1a9-d0af8f5478e3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71c7de64-e959-4911-bd39-f2568a291033" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10684" - ], - "x-ms-request-id": [ - "81f4cde4-6f15-4939-850b-e1ebb35a366d" - ], - "x-ms-correlation-request-id": [ - "81f4cde4-6f15-4939-850b-e1ebb35a366d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173354Z:81f4cde4-6f15-4939-850b-e1ebb35a366d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ee2aff5-5159-4071-b808-532c9349b0c0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10683" - ], - "x-ms-request-id": [ - "c2eab286-5f86-408b-9b62-c2d2648a53ab" - ], - "x-ms-correlation-request-id": [ - "c2eab286-5f86-408b-9b62-c2d2648a53ab" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173354Z:c2eab286-5f86-408b-9b62-c2d2648a53ab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "030a7722-be0c-493c-8ff4-4d9573281526" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10682" - ], - "x-ms-request-id": [ - "a424fde4-3068-4ff9-bbc8-342186a808b0" - ], - "x-ms-correlation-request-id": [ - "a424fde4-3068-4ff9-bbc8-342186a808b0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173355Z:a424fde4-3068-4ff9-bbc8-342186a808b0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5714e6d6-ad3f-44bb-ba74-fc4ca175987f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10681" - ], - "x-ms-request-id": [ - "cf558540-dab0-439f-8442-ca2dc3954736" - ], - "x-ms-correlation-request-id": [ - "cf558540-dab0-439f-8442-ca2dc3954736" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173355Z:cf558540-dab0-439f-8442-ca2dc3954736" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a4958f9-5410-4942-abc3-4d53510025bd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10680" - ], - "x-ms-request-id": [ - "0a057126-fcf5-4bb5-bc4d-07f39d642004" - ], - "x-ms-correlation-request-id": [ - "0a057126-fcf5-4bb5-bc4d-07f39d642004" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173355Z:0a057126-fcf5-4bb5-bc4d-07f39d642004" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a0a211a2-477a-4ea0-a658-13aa1245c111" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10679" - ], - "x-ms-request-id": [ - "f5b7fad2-55f3-4445-b4bc-a2bb512207b8" - ], - "x-ms-correlation-request-id": [ - "f5b7fad2-55f3-4445-b4bc-a2bb512207b8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173355Z:f5b7fad2-55f3-4445-b4bc-a2bb512207b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c5df3009-ec9f-4c3a-b7ff-0d2327765757" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10678" - ], - "x-ms-request-id": [ - "d43a168d-b75a-49c1-9a3a-2781dd44d9e9" - ], - "x-ms-correlation-request-id": [ - "d43a168d-b75a-49c1-9a3a-2781dd44d9e9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173356Z:d43a168d-b75a-49c1-9a3a-2781dd44d9e9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b433cb58-f3b0-4c18-a335-c82f4fad0334" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10677" - ], - "x-ms-request-id": [ - "8045428d-da00-4d1c-a7b1-a625125e931b" - ], - "x-ms-correlation-request-id": [ - "8045428d-da00-4d1c-a7b1-a625125e931b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173356Z:8045428d-da00-4d1c-a7b1-a625125e931b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "25459c4d-afef-474b-8e99-991d6cb044ba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10676" - ], - "x-ms-request-id": [ - "6b98fe1e-ef92-41b1-bb67-bd8d2894d5cd" - ], - "x-ms-correlation-request-id": [ - "6b98fe1e-ef92-41b1-bb67-bd8d2894d5cd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173356Z:6b98fe1e-ef92-41b1-bb67-bd8d2894d5cd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5f37180-3749-4668-81e9-95f4c75e31f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10675" - ], - "x-ms-request-id": [ - "00e529cd-b83b-44a6-83f1-b4bc19925d2c" - ], - "x-ms-correlation-request-id": [ - "00e529cd-b83b-44a6-83f1-b4bc19925d2c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173356Z:00e529cd-b83b-44a6-83f1-b4bc19925d2c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b9d38fc6-7220-40eb-88ee-9572fcf0c7e0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10674" - ], - "x-ms-request-id": [ - "22a803b7-54b1-40d6-a9ab-c1ff6540dc5f" - ], - "x-ms-correlation-request-id": [ - "22a803b7-54b1-40d6-a9ab-c1ff6540dc5f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173357Z:22a803b7-54b1-40d6-a9ab-c1ff6540dc5f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f39cff1-7a8e-4753-809e-b500a6826b79" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10673" - ], - "x-ms-request-id": [ - "c36128de-2960-4b4c-be32-5e7ba4c1c500" - ], - "x-ms-correlation-request-id": [ - "c36128de-2960-4b4c-be32-5e7ba4c1c500" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173357Z:c36128de-2960-4b4c-be32-5e7ba4c1c500" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "066ae138-6975-49f3-955c-30a1f09fd33d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10672" - ], - "x-ms-request-id": [ - "4d7f2a82-5040-43df-97a4-67ba09f4cdb6" - ], - "x-ms-correlation-request-id": [ - "4d7f2a82-5040-43df-97a4-67ba09f4cdb6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173357Z:4d7f2a82-5040-43df-97a4-67ba09f4cdb6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fe03ad50-bca7-4423-b643-e58e8fc963c7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10671" - ], - "x-ms-request-id": [ - "683605d3-66bd-4bb6-83d4-eb6c3c3474d3" - ], - "x-ms-correlation-request-id": [ - "683605d3-66bd-4bb6-83d4-eb6c3c3474d3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173357Z:683605d3-66bd-4bb6-83d4-eb6c3c3474d3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "72094e82-345c-4199-9c9a-06038edc147d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10670" - ], - "x-ms-request-id": [ - "1e09b32b-d98f-4276-b41a-0968da4e06aa" - ], - "x-ms-correlation-request-id": [ - "1e09b32b-d98f-4276-b41a-0968da4e06aa" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173358Z:1e09b32b-d98f-4276-b41a-0968da4e06aa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "392c2a96-8ddc-45e3-a00c-8067cc22995b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10669" - ], - "x-ms-request-id": [ - "6e5b8a05-2212-4d11-8644-f8d188b7ee0d" - ], - "x-ms-correlation-request-id": [ - "6e5b8a05-2212-4d11-8644-f8d188b7ee0d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173358Z:6e5b8a05-2212-4d11-8644-f8d188b7ee0d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a0d793c-fe93-4a8b-b513-d21d9fce7482" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10668" - ], - "x-ms-request-id": [ - "9d94b33b-ed6d-4cb3-bf5a-d8df32901bcb" - ], - "x-ms-correlation-request-id": [ - "9d94b33b-ed6d-4cb3-bf5a-d8df32901bcb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173358Z:9d94b33b-ed6d-4cb3-bf5a-d8df32901bcb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "083dcd06-14cf-4ebb-b73e-0b3bf8aaacc3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10667" - ], - "x-ms-request-id": [ - "ba191265-2fd1-496a-93ee-9ee3ab20b2c7" - ], - "x-ms-correlation-request-id": [ - "ba191265-2fd1-496a-93ee-9ee3ab20b2c7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173358Z:ba191265-2fd1-496a-93ee-9ee3ab20b2c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e24557a8-88e7-4566-9099-2ee1eed1bd98" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10666" - ], - "x-ms-request-id": [ - "26924947-08df-4436-8564-66d5b2aab88d" - ], - "x-ms-correlation-request-id": [ - "26924947-08df-4436-8564-66d5b2aab88d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173359Z:26924947-08df-4436-8564-66d5b2aab88d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51186989-0502-49ed-9a78-cc2984ca3f0d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10665" - ], - "x-ms-request-id": [ - "8cfc0477-1e18-4538-9a70-d0655f252237" - ], - "x-ms-correlation-request-id": [ - "8cfc0477-1e18-4538-9a70-d0655f252237" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173359Z:8cfc0477-1e18-4538-9a70-d0655f252237" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1266b5b4-2673-40a2-9f01-561bef9a1022" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10664" - ], - "x-ms-request-id": [ - "8839c7b5-1a9f-48e4-b157-fe762a6216bc" - ], - "x-ms-correlation-request-id": [ - "8839c7b5-1a9f-48e4-b157-fe762a6216bc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173359Z:8839c7b5-1a9f-48e4-b157-fe762a6216bc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "07639f02-05b9-4352-a6ea-cf32237e0bd7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10663" - ], - "x-ms-request-id": [ - "39be56bc-d900-4131-8cfb-be989f5b0250" - ], - "x-ms-correlation-request-id": [ - "39be56bc-d900-4131-8cfb-be989f5b0250" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173400Z:39be56bc-d900-4131-8cfb-be989f5b0250" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d758a766-f104-41cd-867b-a136af12bdb5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10662" - ], - "x-ms-request-id": [ - "6047ed96-58ff-47e5-9186-e88ac141f975" - ], - "x-ms-correlation-request-id": [ - "6047ed96-58ff-47e5-9186-e88ac141f975" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173400Z:6047ed96-58ff-47e5-9186-e88ac141f975" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f972679-7c4c-4e02-8e69-451fc7642c61" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10661" - ], - "x-ms-request-id": [ - "f65c6bf6-832e-4bff-9bb0-8f9696fc7a6f" - ], - "x-ms-correlation-request-id": [ - "f65c6bf6-832e-4bff-9bb0-8f9696fc7a6f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173400Z:f65c6bf6-832e-4bff-9bb0-8f9696fc7a6f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "008072ae-c30a-43d8-9086-d43611c41885" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10660" - ], - "x-ms-request-id": [ - "8615a8a1-a952-4ccf-8f42-9a8d8f80ac07" - ], - "x-ms-correlation-request-id": [ - "8615a8a1-a952-4ccf-8f42-9a8d8f80ac07" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173400Z:8615a8a1-a952-4ccf-8f42-9a8d8f80ac07" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:33:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33f6646a-9055-4616-8db4-2f74cde0549d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10659" - ], - "x-ms-request-id": [ - "7c3a8072-d456-4a6e-8d24-ee5c3115f061" - ], - "x-ms-correlation-request-id": [ - "7c3a8072-d456-4a6e-8d24-ee5c3115f061" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173401Z:7c3a8072-d456-4a6e-8d24-ee5c3115f061" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "425b5d3e-2a10-4912-b1b0-5f100ef6683b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10658" - ], - "x-ms-request-id": [ - "33e5cc0b-3209-448e-9008-c7f4ac2763f3" - ], - "x-ms-correlation-request-id": [ - "33e5cc0b-3209-448e-9008-c7f4ac2763f3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173401Z:33e5cc0b-3209-448e-9008-c7f4ac2763f3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ee2ee898-feb2-4481-9e8d-95908576e0cf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10657" - ], - "x-ms-request-id": [ - "f8a2c7d3-4b32-4934-b6f5-26dbccae3016" - ], - "x-ms-correlation-request-id": [ - "f8a2c7d3-4b32-4934-b6f5-26dbccae3016" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173401Z:f8a2c7d3-4b32-4934-b6f5-26dbccae3016" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e6e22aba-154e-4f0b-803c-b5960227bfe4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10656" - ], - "x-ms-request-id": [ - "a5378e11-ba40-4d6a-a26f-9413c820be70" - ], - "x-ms-correlation-request-id": [ - "a5378e11-ba40-4d6a-a26f-9413c820be70" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173401Z:a5378e11-ba40-4d6a-a26f-9413c820be70" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e4db22a0-35c9-40d8-bc8d-fc56754a3235" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10655" - ], - "x-ms-request-id": [ - "33c589c0-1dc5-4a9a-9d69-29a67a811bab" - ], - "x-ms-correlation-request-id": [ - "33c589c0-1dc5-4a9a-9d69-29a67a811bab" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173402Z:33c589c0-1dc5-4a9a-9d69-29a67a811bab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0bac98a0-1ecd-433d-b01a-2f016e78d972" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10654" - ], - "x-ms-request-id": [ - "cee8b096-27cf-4638-9c61-e35fcb285433" - ], - "x-ms-correlation-request-id": [ - "cee8b096-27cf-4638-9c61-e35fcb285433" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173402Z:cee8b096-27cf-4638-9c61-e35fcb285433" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d7a5834-950c-4456-98ca-c37829d22fe9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10653" - ], - "x-ms-request-id": [ - "4a81d8f4-a04b-440e-8530-9a7c502748b8" - ], - "x-ms-correlation-request-id": [ - "4a81d8f4-a04b-440e-8530-9a7c502748b8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173402Z:4a81d8f4-a04b-440e-8530-9a7c502748b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "259d54fa-7bd8-425a-b37d-2dcd6ed0c67c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10652" - ], - "x-ms-request-id": [ - "6213e759-4d1b-46ca-83f8-7ddd93443838" - ], - "x-ms-correlation-request-id": [ - "6213e759-4d1b-46ca-83f8-7ddd93443838" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173402Z:6213e759-4d1b-46ca-83f8-7ddd93443838" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce19974c-3c9a-472a-9778-b1c037b114b6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10651" - ], - "x-ms-request-id": [ - "1f688dca-fe58-4c17-a1da-50051e05beea" - ], - "x-ms-correlation-request-id": [ - "1f688dca-fe58-4c17-a1da-50051e05beea" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173403Z:1f688dca-fe58-4c17-a1da-50051e05beea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3e7bb804-d48c-40bb-bad5-85d9ac3616d5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10650" - ], - "x-ms-request-id": [ - "c1f5dbc9-a4bc-4b50-a8a7-25ce5fc9a768" - ], - "x-ms-correlation-request-id": [ - "c1f5dbc9-a4bc-4b50-a8a7-25ce5fc9a768" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173403Z:c1f5dbc9-a4bc-4b50-a8a7-25ce5fc9a768" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70fe767f-971f-4a8d-8a36-1979631d1f85" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10649" - ], - "x-ms-request-id": [ - "caaab4cc-baef-43ee-a762-77172539ffc2" - ], - "x-ms-correlation-request-id": [ - "caaab4cc-baef-43ee-a762-77172539ffc2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173403Z:caaab4cc-baef-43ee-a762-77172539ffc2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c5a50f9-a864-4774-99c3-3a16fa21b2a5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10648" - ], - "x-ms-request-id": [ - "a40d3b0e-7734-4b41-ba46-7a0956bc2fe4" - ], - "x-ms-correlation-request-id": [ - "a40d3b0e-7734-4b41-ba46-7a0956bc2fe4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173404Z:a40d3b0e-7734-4b41-ba46-7a0956bc2fe4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e946ccef-e169-45e3-829c-3fa0e515fbda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10647" - ], - "x-ms-request-id": [ - "7842060c-0806-4659-b2e4-1bd3e7f8d3c3" - ], - "x-ms-correlation-request-id": [ - "7842060c-0806-4659-b2e4-1bd3e7f8d3c3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173404Z:7842060c-0806-4659-b2e4-1bd3e7f8d3c3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "788728b7-c2bb-4029-875d-77ea877b8d59" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10646" - ], - "x-ms-request-id": [ - "3e5f78cd-c4a6-456c-b982-cabc7dc4ae08" - ], - "x-ms-correlation-request-id": [ - "3e5f78cd-c4a6-456c-b982-cabc7dc4ae08" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173404Z:3e5f78cd-c4a6-456c-b982-cabc7dc4ae08" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "390b3140-d4db-4759-99e7-cd455650a92b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10645" - ], - "x-ms-request-id": [ - "224e6ff1-7085-4aff-a089-e15f20c73128" - ], - "x-ms-correlation-request-id": [ - "224e6ff1-7085-4aff-a089-e15f20c73128" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173404Z:224e6ff1-7085-4aff-a089-e15f20c73128" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "decdca5d-8e62-4886-9345-69da567d68cf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10644" - ], - "x-ms-request-id": [ - "c05b67df-fcc8-45b6-a813-f26336bbbb1e" - ], - "x-ms-correlation-request-id": [ - "c05b67df-fcc8-45b6-a813-f26336bbbb1e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173405Z:c05b67df-fcc8-45b6-a813-f26336bbbb1e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37139a38-5675-4a59-8de0-349e62d8328a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10643" - ], - "x-ms-request-id": [ - "0c23a3ab-67bb-4433-aac8-5eb203115535" - ], - "x-ms-correlation-request-id": [ - "0c23a3ab-67bb-4433-aac8-5eb203115535" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173405Z:0c23a3ab-67bb-4433-aac8-5eb203115535" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a0130e7-901d-460b-94a7-ccfb6693ff49" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10642" - ], - "x-ms-request-id": [ - "a85a2d3b-230f-40f4-b979-495d78c15bc9" - ], - "x-ms-correlation-request-id": [ - "a85a2d3b-230f-40f4-b979-495d78c15bc9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173405Z:a85a2d3b-230f-40f4-b979-495d78c15bc9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8497d978-3420-4efe-a012-d443d9ec2b10" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10641" - ], - "x-ms-request-id": [ - "b420f2e5-ab80-4256-bbde-c26d8feea04e" - ], - "x-ms-correlation-request-id": [ - "b420f2e5-ab80-4256-bbde-c26d8feea04e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173406Z:b420f2e5-ab80-4256-bbde-c26d8feea04e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e5b2cc5-8f04-4c2d-9008-316cfd660786" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10640" - ], - "x-ms-request-id": [ - "d823a3ad-575f-43cf-87bb-2be380154149" - ], - "x-ms-correlation-request-id": [ - "d823a3ad-575f-43cf-87bb-2be380154149" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173406Z:d823a3ad-575f-43cf-87bb-2be380154149" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "74f19193-bada-4bf9-b041-a4f0b59ad57a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10639" - ], - "x-ms-request-id": [ - "8e113a82-d017-43b0-a217-e9d2ff7c3314" - ], - "x-ms-correlation-request-id": [ - "8e113a82-d017-43b0-a217-e9d2ff7c3314" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173406Z:8e113a82-d017-43b0-a217-e9d2ff7c3314" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c6028ac9-1743-4602-8ae2-f2b649ca4cbf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10638" - ], - "x-ms-request-id": [ - "7460ad9c-4e13-4c21-a1c2-3cde228f2fa9" - ], - "x-ms-correlation-request-id": [ - "7460ad9c-4e13-4c21-a1c2-3cde228f2fa9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173406Z:7460ad9c-4e13-4c21-a1c2-3cde228f2fa9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d21769d-8e99-446e-adad-1678de2d3613" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10637" - ], - "x-ms-request-id": [ - "f7b59533-f100-4b7c-9fd9-65e3fdea16ea" - ], - "x-ms-correlation-request-id": [ - "f7b59533-f100-4b7c-9fd9-65e3fdea16ea" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173407Z:f7b59533-f100-4b7c-9fd9-65e3fdea16ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:06 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "27708e10-9ce0-4628-9c86-50dbe6260cd6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10636" - ], - "x-ms-request-id": [ - "6d3753c9-9f67-431b-835a-0507340f330d" - ], - "x-ms-correlation-request-id": [ - "6d3753c9-9f67-431b-835a-0507340f330d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173407Z:6d3753c9-9f67-431b-835a-0507340f330d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d984930d-c191-4a9a-aff5-9da84a373b87" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10635" - ], - "x-ms-request-id": [ - "a795ec0f-b913-4b3d-8ef8-3b18abe862a4" - ], - "x-ms-correlation-request-id": [ - "a795ec0f-b913-4b3d-8ef8-3b18abe862a4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173407Z:a795ec0f-b913-4b3d-8ef8-3b18abe862a4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4b0d61a7-cadc-4e09-854e-13deb6b85fae" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10634" - ], - "x-ms-request-id": [ - "6b637a6e-3283-42f9-85ba-b0eb3d7c652c" - ], - "x-ms-correlation-request-id": [ - "6b637a6e-3283-42f9-85ba-b0eb3d7c652c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173407Z:6b637a6e-3283-42f9-85ba-b0eb3d7c652c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58ed5804-e741-4d44-ba06-b2c0542a8912" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10633" - ], - "x-ms-request-id": [ - "c40e876a-d721-447a-836d-ac21b4ec400c" - ], - "x-ms-correlation-request-id": [ - "c40e876a-d721-447a-836d-ac21b4ec400c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173408Z:c40e876a-d721-447a-836d-ac21b4ec400c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d68ee96-38f2-4f28-a617-6f70c8ae0b9a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10632" - ], - "x-ms-request-id": [ - "23dceea5-3564-4c4a-9353-77faaeed1996" - ], - "x-ms-correlation-request-id": [ - "23dceea5-3564-4c4a-9353-77faaeed1996" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173408Z:23dceea5-3564-4c4a-9353-77faaeed1996" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ea16e936-52a6-4c71-8473-685d9427782d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10631" - ], - "x-ms-request-id": [ - "370c7fd4-7ceb-47ed-9a1e-b219a6c35155" - ], - "x-ms-correlation-request-id": [ - "370c7fd4-7ceb-47ed-9a1e-b219a6c35155" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173408Z:370c7fd4-7ceb-47ed-9a1e-b219a6c35155" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3158d7df-3ed1-4bc4-8bae-15438b51dcf6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10630" - ], - "x-ms-request-id": [ - "19289714-d27c-42c3-94f1-363b39182409" - ], - "x-ms-correlation-request-id": [ - "19289714-d27c-42c3-94f1-363b39182409" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173408Z:19289714-d27c-42c3-94f1-363b39182409" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bd5755d5-9876-4576-9541-2b61015f8253" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10629" - ], - "x-ms-request-id": [ - "c470d0fb-5129-488e-a452-f72a88131a22" - ], - "x-ms-correlation-request-id": [ - "c470d0fb-5129-488e-a452-f72a88131a22" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173409Z:c470d0fb-5129-488e-a452-f72a88131a22" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ae797d32-e8c7-4919-835b-2404a2aa1fe6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10628" - ], - "x-ms-request-id": [ - "e29fb36f-4983-404d-9e69-724d3ed66cba" - ], - "x-ms-correlation-request-id": [ - "e29fb36f-4983-404d-9e69-724d3ed66cba" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173409Z:e29fb36f-4983-404d-9e69-724d3ed66cba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f754c667-13e5-4565-8a05-72a6bc68fbc3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10627" - ], - "x-ms-request-id": [ - "cb8d34b8-3aaa-402d-9cd0-74ff8a9dfbb7" - ], - "x-ms-correlation-request-id": [ - "cb8d34b8-3aaa-402d-9cd0-74ff8a9dfbb7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173409Z:cb8d34b8-3aaa-402d-9cd0-74ff8a9dfbb7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "94139a8e-325e-472f-89a6-76e8795fb0a2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10626" - ], - "x-ms-request-id": [ - "d0bdd6f8-9039-4513-805f-418856e587bc" - ], - "x-ms-correlation-request-id": [ - "d0bdd6f8-9039-4513-805f-418856e587bc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173410Z:d0bdd6f8-9039-4513-805f-418856e587bc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "340a1cce-fd22-4369-ad43-dce8138f0a57" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10625" - ], - "x-ms-request-id": [ - "a9bcda50-afa1-41ab-88da-03b894cdfcb2" - ], - "x-ms-correlation-request-id": [ - "a9bcda50-afa1-41ab-88da-03b894cdfcb2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173410Z:a9bcda50-afa1-41ab-88da-03b894cdfcb2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0705dcf6-feea-4812-96e2-a9c7ed1e70f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10624" - ], - "x-ms-request-id": [ - "21156ab7-16a0-43cf-9097-517dc211620e" - ], - "x-ms-correlation-request-id": [ - "21156ab7-16a0-43cf-9097-517dc211620e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173410Z:21156ab7-16a0-43cf-9097-517dc211620e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "67a2da6b-3eb6-45df-8b9b-86471ad92a96" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10623" - ], - "x-ms-request-id": [ - "59a80b9a-f0a9-4c90-8af8-b8b917cd5a1a" - ], - "x-ms-correlation-request-id": [ - "59a80b9a-f0a9-4c90-8af8-b8b917cd5a1a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173410Z:59a80b9a-f0a9-4c90-8af8-b8b917cd5a1a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09451416-4682-4679-8c89-4dd4070aaa60" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10622" - ], - "x-ms-request-id": [ - "2fec739a-bd92-483b-a59e-611b1fc78fc2" - ], - "x-ms-correlation-request-id": [ - "2fec739a-bd92-483b-a59e-611b1fc78fc2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173411Z:2fec739a-bd92-483b-a59e-611b1fc78fc2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e4759353-70e6-4930-bd60-14b6cce4af15" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10621" - ], - "x-ms-request-id": [ - "e4ac4ef5-b973-4226-b418-815232f7f6bf" - ], - "x-ms-correlation-request-id": [ - "e4ac4ef5-b973-4226-b418-815232f7f6bf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173411Z:e4ac4ef5-b973-4226-b418-815232f7f6bf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "115864ef-cc05-47d1-8079-d3fb806fe8b5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10620" - ], - "x-ms-request-id": [ - "0b064777-e594-4a20-b562-8e74a4b5395a" - ], - "x-ms-correlation-request-id": [ - "0b064777-e594-4a20-b562-8e74a4b5395a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173412Z:0b064777-e594-4a20-b562-8e74a4b5395a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7cb971cd-a66f-491d-a049-39577797c59a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10619" - ], - "x-ms-request-id": [ - "121d4d89-357d-4c4f-a16e-600c0f38181f" - ], - "x-ms-correlation-request-id": [ - "121d4d89-357d-4c4f-a16e-600c0f38181f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173412Z:121d4d89-357d-4c4f-a16e-600c0f38181f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cdb6d544-e9cd-40b9-8d0f-74fbe122f1ff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10618" - ], - "x-ms-request-id": [ - "424ecf96-2a78-4eb1-b37f-86f2c74f75a9" - ], - "x-ms-correlation-request-id": [ - "424ecf96-2a78-4eb1-b37f-86f2c74f75a9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173413Z:424ecf96-2a78-4eb1-b37f-86f2c74f75a9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5dc955a7-436c-431f-9fb6-7e8b71a4f309" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10617" - ], - "x-ms-request-id": [ - "5441c581-a67a-478a-a782-753809db32cc" - ], - "x-ms-correlation-request-id": [ - "5441c581-a67a-478a-a782-753809db32cc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173413Z:5441c581-a67a-478a-a782-753809db32cc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6379ee1a-2347-409b-9d57-5497f76872e2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10616" - ], - "x-ms-request-id": [ - "434b786b-6e8b-4d88-b5a3-cddff1764ecb" - ], - "x-ms-correlation-request-id": [ - "434b786b-6e8b-4d88-b5a3-cddff1764ecb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173413Z:434b786b-6e8b-4d88-b5a3-cddff1764ecb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0637800d-1a0a-46a9-becc-94e2d9019a80" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10615" - ], - "x-ms-request-id": [ - "06f7f93a-c230-40d7-ac26-265b8ba8ad03" - ], - "x-ms-correlation-request-id": [ - "06f7f93a-c230-40d7-ac26-265b8ba8ad03" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173413Z:06f7f93a-c230-40d7-ac26-265b8ba8ad03" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c29487f1-2311-467c-a8fd-f17465401c4b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10614" - ], - "x-ms-request-id": [ - "32b11a3e-925f-4eaa-82ca-80b0bbde8936" - ], - "x-ms-correlation-request-id": [ - "32b11a3e-925f-4eaa-82ca-80b0bbde8936" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173414Z:32b11a3e-925f-4eaa-82ca-80b0bbde8936" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "65dd498f-4732-403e-bc30-c6f581f9c441" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10613" - ], - "x-ms-request-id": [ - "a74348f4-af96-4e37-adab-cb0b95ee70ab" - ], - "x-ms-correlation-request-id": [ - "a74348f4-af96-4e37-adab-cb0b95ee70ab" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173414Z:a74348f4-af96-4e37-adab-cb0b95ee70ab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d1c4c75f-1aea-439c-ab80-f5694da3428e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10612" - ], - "x-ms-request-id": [ - "d3ac8d3f-4925-4496-82d6-2a86b64bacc4" - ], - "x-ms-correlation-request-id": [ - "d3ac8d3f-4925-4496-82d6-2a86b64bacc4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173414Z:d3ac8d3f-4925-4496-82d6-2a86b64bacc4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eb2448b2-80e7-40ad-af0e-49b37fd0ad82" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10611" - ], - "x-ms-request-id": [ - "361c522d-8512-44be-8acf-57eaa8d35769" - ], - "x-ms-correlation-request-id": [ - "361c522d-8512-44be-8acf-57eaa8d35769" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173414Z:361c522d-8512-44be-8acf-57eaa8d35769" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b6343ce3-974b-45fd-b711-8cf9123f84b4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10610" - ], - "x-ms-request-id": [ - "696bad89-d8c0-40c8-9504-c908902b0daa" - ], - "x-ms-correlation-request-id": [ - "696bad89-d8c0-40c8-9504-c908902b0daa" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173415Z:696bad89-d8c0-40c8-9504-c908902b0daa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:14 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c137a3cf-c09f-4728-b732-079373b89494" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10609" - ], - "x-ms-request-id": [ - "fc28397b-e828-45dc-9702-12147bdd89f1" - ], - "x-ms-correlation-request-id": [ - "fc28397b-e828-45dc-9702-12147bdd89f1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173415Z:fc28397b-e828-45dc-9702-12147bdd89f1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59fa9c55-b50f-497f-b4d6-38efacb1ee7a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10608" - ], - "x-ms-request-id": [ - "3dcd988b-1f62-46e8-8078-e64326c8f4e7" - ], - "x-ms-correlation-request-id": [ - "3dcd988b-1f62-46e8-8078-e64326c8f4e7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173415Z:3dcd988b-1f62-46e8-8078-e64326c8f4e7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f069b963-d5c9-450c-831d-ef79d4a4e61e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10607" - ], - "x-ms-request-id": [ - "a30e1f80-44d3-4217-aa81-7719d213c962" - ], - "x-ms-correlation-request-id": [ - "a30e1f80-44d3-4217-aa81-7719d213c962" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173415Z:a30e1f80-44d3-4217-aa81-7719d213c962" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a7a20e9a-604a-426e-a584-a50d72265651" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10606" - ], - "x-ms-request-id": [ - "52ece211-b369-417b-8bbb-2894b931e5de" - ], - "x-ms-correlation-request-id": [ - "52ece211-b369-417b-8bbb-2894b931e5de" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173416Z:52ece211-b369-417b-8bbb-2894b931e5de" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:15 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdc00494-cac2-4434-91d5-5af5db641b88" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10605" - ], - "x-ms-request-id": [ - "2fd5e44e-b970-4cee-9350-5b5f921b62ae" - ], - "x-ms-correlation-request-id": [ - "2fd5e44e-b970-4cee-9350-5b5f921b62ae" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173416Z:2fd5e44e-b970-4cee-9350-5b5f921b62ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f2b6933-d88e-4b7d-aa13-2c8856d1eae7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10604" - ], - "x-ms-request-id": [ - "6be6da7e-661b-47b7-9eaf-c04bb1d56f41" - ], - "x-ms-correlation-request-id": [ - "6be6da7e-661b-47b7-9eaf-c04bb1d56f41" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173416Z:6be6da7e-661b-47b7-9eaf-c04bb1d56f41" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dba1f048-81f2-4be5-9fee-91b76aeda5fd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10603" - ], - "x-ms-request-id": [ - "a8455c60-2feb-4e99-8774-3ce679ea115b" - ], - "x-ms-correlation-request-id": [ - "a8455c60-2feb-4e99-8774-3ce679ea115b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173417Z:a8455c60-2feb-4e99-8774-3ce679ea115b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "03472cc4-3cf7-421d-a4ee-ca0d9ee8e6fd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10602" - ], - "x-ms-request-id": [ - "53594ea9-8852-46c5-bff7-b072436015c4" - ], - "x-ms-correlation-request-id": [ - "53594ea9-8852-46c5-bff7-b072436015c4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173417Z:53594ea9-8852-46c5-bff7-b072436015c4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:16 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "10d9a892-8ee8-40d1-b797-956ea093e04f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10601" - ], - "x-ms-request-id": [ - "732df4c1-280b-4881-b18e-cfd913e47488" - ], - "x-ms-correlation-request-id": [ - "732df4c1-280b-4881-b18e-cfd913e47488" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173417Z:732df4c1-280b-4881-b18e-cfd913e47488" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3d44102c-18dc-441c-975a-ce50e5a4f334" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10600" - ], - "x-ms-request-id": [ - "595bb028-f8cf-416b-b7bf-dc62f1131a4c" - ], - "x-ms-correlation-request-id": [ - "595bb028-f8cf-416b-b7bf-dc62f1131a4c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173417Z:595bb028-f8cf-416b-b7bf-dc62f1131a4c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75ef5b98-ee1d-4094-9535-09264dac67e2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10599" - ], - "x-ms-request-id": [ - "51c41934-9b46-4ab8-8bf5-1d27eb66fd73" - ], - "x-ms-correlation-request-id": [ - "51c41934-9b46-4ab8-8bf5-1d27eb66fd73" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173418Z:51c41934-9b46-4ab8-8bf5-1d27eb66fd73" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "83f9140f-7ef4-4b0f-8e18-3af90ef62a57" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10598" - ], - "x-ms-request-id": [ - "a36563c8-56d9-4982-9f9c-929bd0dbe861" - ], - "x-ms-correlation-request-id": [ - "a36563c8-56d9-4982-9f9c-929bd0dbe861" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173418Z:a36563c8-56d9-4982-9f9c-929bd0dbe861" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:17 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "474eed9f-d36f-44ef-90da-af740e7a6087" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10597" - ], - "x-ms-request-id": [ - "c066d799-8477-4ebb-ac6e-3abbbd51e9c2" - ], - "x-ms-correlation-request-id": [ - "c066d799-8477-4ebb-ac6e-3abbbd51e9c2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173418Z:c066d799-8477-4ebb-ac6e-3abbbd51e9c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8884d17-bd7b-4e55-8d8e-e69549f44339" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10596" - ], - "x-ms-request-id": [ - "8e0b20d0-1b00-4309-b031-afc15236b5dc" - ], - "x-ms-correlation-request-id": [ - "8e0b20d0-1b00-4309-b031-afc15236b5dc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173418Z:8e0b20d0-1b00-4309-b031-afc15236b5dc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0f89e67a-e745-4207-8122-d0a204c35b74" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10595" - ], - "x-ms-request-id": [ - "72d8e913-f433-49b8-88e6-fbf8932e0954" - ], - "x-ms-correlation-request-id": [ - "72d8e913-f433-49b8-88e6-fbf8932e0954" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173419Z:72d8e913-f433-49b8-88e6-fbf8932e0954" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d4f9bed5-29df-40ae-b5aa-98961a8995a7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10594" - ], - "x-ms-request-id": [ - "16904e8a-fd64-4330-b947-e5df9bd3c9e6" - ], - "x-ms-correlation-request-id": [ - "16904e8a-fd64-4330-b947-e5df9bd3c9e6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173419Z:16904e8a-fd64-4330-b947-e5df9bd3c9e6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:18 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6e75be0b-4e3a-4fcd-b324-4922707132a9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10593" - ], - "x-ms-request-id": [ - "04d81b78-b6e7-418e-8ba8-23e197b98aa9" - ], - "x-ms-correlation-request-id": [ - "04d81b78-b6e7-418e-8ba8-23e197b98aa9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173419Z:04d81b78-b6e7-418e-8ba8-23e197b98aa9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8efad8d1-91e7-4ae6-887f-7199075e889a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10592" - ], - "x-ms-request-id": [ - "e3ce2815-bd9c-40ae-9eff-fe8d1a159400" - ], - "x-ms-correlation-request-id": [ - "e3ce2815-bd9c-40ae-9eff-fe8d1a159400" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173420Z:e3ce2815-bd9c-40ae-9eff-fe8d1a159400" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81e7e969-15c3-4e62-a548-ded57e679d12" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10591" - ], - "x-ms-request-id": [ - "35605e53-d159-4e70-bab1-dab49420a19a" - ], - "x-ms-correlation-request-id": [ - "35605e53-d159-4e70-bab1-dab49420a19a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173420Z:35605e53-d159-4e70-bab1-dab49420a19a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7cc812db-8382-47af-94c6-8942a7771498" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10590" - ], - "x-ms-request-id": [ - "53edc394-ec38-40aa-b814-5d09738b61ba" - ], - "x-ms-correlation-request-id": [ - "53edc394-ec38-40aa-b814-5d09738b61ba" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173420Z:53edc394-ec38-40aa-b814-5d09738b61ba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:19 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15afe92a-15c1-47dd-bba8-73390d0b4701" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10589" - ], - "x-ms-request-id": [ - "5cc122c3-4154-4c61-b444-8bf58370a2eb" - ], - "x-ms-correlation-request-id": [ - "5cc122c3-4154-4c61-b444-8bf58370a2eb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173420Z:5cc122c3-4154-4c61-b444-8bf58370a2eb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "02d5641f-4f01-4cd5-90d0-b508b8fb2e87" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10588" - ], - "x-ms-request-id": [ - "47d7d679-4900-42d7-8019-db6c93ffc9da" - ], - "x-ms-correlation-request-id": [ - "47d7d679-4900-42d7-8019-db6c93ffc9da" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173421Z:47d7d679-4900-42d7-8019-db6c93ffc9da" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "66177205-e298-4d6c-bdfd-a9c80d7889d5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10587" - ], - "x-ms-request-id": [ - "927de167-63c5-4ba4-b387-0014db126c81" - ], - "x-ms-correlation-request-id": [ - "927de167-63c5-4ba4-b387-0014db126c81" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173421Z:927de167-63c5-4ba4-b387-0014db126c81" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81ec0f72-bb22-45ad-af1e-cf93fd2c5e28" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10586" - ], - "x-ms-request-id": [ - "5821ee54-4b69-4feb-96ac-2bb317aa9416" - ], - "x-ms-correlation-request-id": [ - "5821ee54-4b69-4feb-96ac-2bb317aa9416" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173421Z:5821ee54-4b69-4feb-96ac-2bb317aa9416" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:20 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "574a41ec-19a3-4cee-89d6-2e52bb1424fc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10585" - ], - "x-ms-request-id": [ - "6ae3a365-fd3d-4c4f-88c7-916b4c8d107f" - ], - "x-ms-correlation-request-id": [ - "6ae3a365-fd3d-4c4f-88c7-916b4c8d107f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173421Z:6ae3a365-fd3d-4c4f-88c7-916b4c8d107f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2b3a93b6-91d3-43de-b3d8-e56f1c86aa3b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10584" - ], - "x-ms-request-id": [ - "6e0060bc-0d6a-42bd-a71e-3fdc0ceec5a7" - ], - "x-ms-correlation-request-id": [ - "6e0060bc-0d6a-42bd-a71e-3fdc0ceec5a7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173422Z:6e0060bc-0d6a-42bd-a71e-3fdc0ceec5a7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2ec59b6f-f5af-4212-bd8a-28ef7ddfd731" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10583" - ], - "x-ms-request-id": [ - "5d50cfcc-fbc9-48c1-8b54-0136607815c4" - ], - "x-ms-correlation-request-id": [ - "5d50cfcc-fbc9-48c1-8b54-0136607815c4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173422Z:5d50cfcc-fbc9-48c1-8b54-0136607815c4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:21 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3fa62853-4bfe-433c-b182-11ef14e285a7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10582" - ], - "x-ms-request-id": [ - "c0e4a17e-e6d6-46d7-98aa-3bb1edf7e199" - ], - "x-ms-correlation-request-id": [ - "c0e4a17e-e6d6-46d7-98aa-3bb1edf7e199" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173422Z:c0e4a17e-e6d6-46d7-98aa-3bb1edf7e199" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc8d8842-260c-45a9-9c2a-87ab623a92ee" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10581" - ], - "x-ms-request-id": [ - "f6068579-2226-4955-ab83-30194c8c204f" - ], - "x-ms-correlation-request-id": [ - "f6068579-2226-4955-ab83-30194c8c204f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173422Z:f6068579-2226-4955-ab83-30194c8c204f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "05c39c1e-4131-488b-b6f4-6cd2a48cdf35" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10580" - ], - "x-ms-request-id": [ - "7c198ea4-431c-4240-acad-94ed35a17676" - ], - "x-ms-correlation-request-id": [ - "7c198ea4-431c-4240-acad-94ed35a17676" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173423Z:7c198ea4-431c-4240-acad-94ed35a17676" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70e47dfa-a645-4ac4-8da9-e85afc363b02" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10579" - ], - "x-ms-request-id": [ - "9bc8768b-f67e-4aa1-a5b8-d84cfb628d2c" - ], - "x-ms-correlation-request-id": [ - "9bc8768b-f67e-4aa1-a5b8-d84cfb628d2c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173423Z:9bc8768b-f67e-4aa1-a5b8-d84cfb628d2c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:22 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f863b2a-18de-4d7c-a9dd-45a14c621340" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10578" - ], - "x-ms-request-id": [ - "01153fe1-e895-4e6c-b4ed-27b67fc09055" - ], - "x-ms-correlation-request-id": [ - "01153fe1-e895-4e6c-b4ed-27b67fc09055" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173423Z:01153fe1-e895-4e6c-b4ed-27b67fc09055" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a214afa-06d8-4363-a1ac-2ea51fc5c159" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10577" - ], - "x-ms-request-id": [ - "cc63f94b-1cf4-4118-a9a1-279d65917f14" - ], - "x-ms-correlation-request-id": [ - "cc63f94b-1cf4-4118-a9a1-279d65917f14" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173423Z:cc63f94b-1cf4-4118-a9a1-279d65917f14" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5bde4b24-568d-47d5-9b8c-95d80db45137" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10576" - ], - "x-ms-request-id": [ - "98a0a87f-bf80-44dd-8dfd-2b33a35a8ee9" - ], - "x-ms-correlation-request-id": [ - "98a0a87f-bf80-44dd-8dfd-2b33a35a8ee9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173424Z:98a0a87f-bf80-44dd-8dfd-2b33a35a8ee9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c2b34085-6a8e-451f-be61-9cc550b2ec32" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10575" - ], - "x-ms-request-id": [ - "53679f41-5e15-4b9f-9d84-376e8435b265" - ], - "x-ms-correlation-request-id": [ - "53679f41-5e15-4b9f-9d84-376e8435b265" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173424Z:53679f41-5e15-4b9f-9d84-376e8435b265" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:23 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a07b7f24-fe39-416f-91b1-f0e9b34e604a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10574" - ], - "x-ms-request-id": [ - "68f1bbbb-e0c2-4ae2-b913-036c3bf6906a" - ], - "x-ms-correlation-request-id": [ - "68f1bbbb-e0c2-4ae2-b913-036c3bf6906a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173424Z:68f1bbbb-e0c2-4ae2-b913-036c3bf6906a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ac2dad89-f82b-407e-80dd-6822e208cae6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10573" - ], - "x-ms-request-id": [ - "1b43d99e-df9f-4201-afa9-0e8b6ce458ad" - ], - "x-ms-correlation-request-id": [ - "1b43d99e-df9f-4201-afa9-0e8b6ce458ad" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173425Z:1b43d99e-df9f-4201-afa9-0e8b6ce458ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e7dc738b-406f-457b-bd56-98c07a72bf09" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10572" - ], - "x-ms-request-id": [ - "bee08063-0681-4f84-a319-eb84da660753" - ], - "x-ms-correlation-request-id": [ - "bee08063-0681-4f84-a319-eb84da660753" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173425Z:bee08063-0681-4f84-a319-eb84da660753" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1aae9ee4-ca34-411e-b913-0364f10149a5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10571" - ], - "x-ms-request-id": [ - "3df32c26-5a64-4f77-ba45-7c782639cd05" - ], - "x-ms-correlation-request-id": [ - "3df32c26-5a64-4f77-ba45-7c782639cd05" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173425Z:3df32c26-5a64-4f77-ba45-7c782639cd05" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:24 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9cdf9e77-a3f1-4c70-a728-85c74a0218c7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10570" - ], - "x-ms-request-id": [ - "8a3154b4-7fcf-4e03-b97e-26f5dc2b3cf8" - ], - "x-ms-correlation-request-id": [ - "8a3154b4-7fcf-4e03-b97e-26f5dc2b3cf8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173425Z:8a3154b4-7fcf-4e03-b97e-26f5dc2b3cf8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3785ad55-9da5-4c66-b2cd-05c72834bac7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10569" - ], - "x-ms-request-id": [ - "fd58a536-24fc-4957-9fc4-69b903258fa5" - ], - "x-ms-correlation-request-id": [ - "fd58a536-24fc-4957-9fc4-69b903258fa5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173426Z:fd58a536-24fc-4957-9fc4-69b903258fa5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1b17ea4a-3ff7-4209-9194-9c72d13bb8f4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10568" - ], - "x-ms-request-id": [ - "cebc0a1c-405a-4e27-8503-367ad1baaa3f" - ], - "x-ms-correlation-request-id": [ - "cebc0a1c-405a-4e27-8503-367ad1baaa3f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173426Z:cebc0a1c-405a-4e27-8503-367ad1baaa3f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b6259bab-d6a4-4eb1-93da-b5557e6c047a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10567" - ], - "x-ms-request-id": [ - "4d1fb559-bdf7-4395-94c6-50541b772c1e" - ], - "x-ms-correlation-request-id": [ - "4d1fb559-bdf7-4395-94c6-50541b772c1e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173426Z:4d1fb559-bdf7-4395-94c6-50541b772c1e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:25 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49ea2f0f-f366-4cce-a82b-8add894ff1cd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10566" - ], - "x-ms-request-id": [ - "68866683-3e25-4100-abc4-3a298e5dd9b4" - ], - "x-ms-correlation-request-id": [ - "68866683-3e25-4100-abc4-3a298e5dd9b4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173426Z:68866683-3e25-4100-abc4-3a298e5dd9b4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "34578098-4e1e-43ca-a76d-aec0bcf4fe19" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10565" - ], - "x-ms-request-id": [ - "ec782b74-ac97-444b-bc95-ee08c62ac3ee" - ], - "x-ms-correlation-request-id": [ - "ec782b74-ac97-444b-bc95-ee08c62ac3ee" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173427Z:ec782b74-ac97-444b-bc95-ee08c62ac3ee" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6f344757-bf43-4654-9ebe-aa48a4c546db" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10564" - ], - "x-ms-request-id": [ - "88308764-0cad-41e7-930a-4c0b7653de9b" - ], - "x-ms-correlation-request-id": [ - "88308764-0cad-41e7-930a-4c0b7653de9b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173427Z:88308764-0cad-41e7-930a-4c0b7653de9b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52498e71-8921-4704-83ce-a14088e1015d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10563" - ], - "x-ms-request-id": [ - "c9ba26af-f192-4d4d-ac2d-71e3eff1ce1f" - ], - "x-ms-correlation-request-id": [ - "c9ba26af-f192-4d4d-ac2d-71e3eff1ce1f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173427Z:c9ba26af-f192-4d4d-ac2d-71e3eff1ce1f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:26 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "16dc2e55-3645-4e8f-a9d1-07856c25e110" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10562" - ], - "x-ms-request-id": [ - "13d0bc66-2454-4f88-b38a-a5ac808b5075" - ], - "x-ms-correlation-request-id": [ - "13d0bc66-2454-4f88-b38a-a5ac808b5075" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173427Z:13d0bc66-2454-4f88-b38a-a5ac808b5075" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba63533f-2a19-43b2-b564-17e632f6a1a1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10561" - ], - "x-ms-request-id": [ - "3fe659f2-dfcb-45b5-886f-5c1bbb09d63c" - ], - "x-ms-correlation-request-id": [ - "3fe659f2-dfcb-45b5-886f-5c1bbb09d63c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173428Z:3fe659f2-dfcb-45b5-886f-5c1bbb09d63c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "19a143e1-9930-4563-aea1-94355f1a7f8f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10560" - ], - "x-ms-request-id": [ - "4dd6162a-9a1e-4d0e-8113-7eda5db39319" - ], - "x-ms-correlation-request-id": [ - "4dd6162a-9a1e-4d0e-8113-7eda5db39319" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173428Z:4dd6162a-9a1e-4d0e-8113-7eda5db39319" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d51a9cad-d509-4dff-a71b-610d66928364" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10559" - ], - "x-ms-request-id": [ - "c96be11b-963c-42ee-a41f-6b0368417285" - ], - "x-ms-correlation-request-id": [ - "c96be11b-963c-42ee-a41f-6b0368417285" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173428Z:c96be11b-963c-42ee-a41f-6b0368417285" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:27 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "be32ec18-f588-4519-aa80-42d1c0848c6f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10558" - ], - "x-ms-request-id": [ - "bff87431-7c04-4fde-bcef-f8f80e9e4744" - ], - "x-ms-correlation-request-id": [ - "bff87431-7c04-4fde-bcef-f8f80e9e4744" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173429Z:bff87431-7c04-4fde-bcef-f8f80e9e4744" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6dd4d779-5303-4e2c-a7c6-915d231a1b02" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10557" - ], - "x-ms-request-id": [ - "e908446e-4238-4aa0-a12d-b38f152fe093" - ], - "x-ms-correlation-request-id": [ - "e908446e-4238-4aa0-a12d-b38f152fe093" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173429Z:e908446e-4238-4aa0-a12d-b38f152fe093" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "53f17b1e-183f-499d-9abc-599e3cd58258" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10556" - ], - "x-ms-request-id": [ - "4c2fb131-d75f-4e50-9aa9-1f5012110f32" - ], - "x-ms-correlation-request-id": [ - "4c2fb131-d75f-4e50-9aa9-1f5012110f32" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173429Z:4c2fb131-d75f-4e50-9aa9-1f5012110f32" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "586cf01a-79df-49cb-b08e-2f47fb0a97fc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10555" - ], - "x-ms-request-id": [ - "50dca61e-5289-4317-adec-471624710df6" - ], - "x-ms-correlation-request-id": [ - "50dca61e-5289-4317-adec-471624710df6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173429Z:50dca61e-5289-4317-adec-471624710df6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:28 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f57091ae-7655-42bb-b439-c8871ea10490" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10554" - ], - "x-ms-request-id": [ - "1522d1ee-0a34-4122-a5d7-2d7e2388c183" - ], - "x-ms-correlation-request-id": [ - "1522d1ee-0a34-4122-a5d7-2d7e2388c183" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173430Z:1522d1ee-0a34-4122-a5d7-2d7e2388c183" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b43a65dc-ff21-46ff-a576-2f8d6d77a265" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10553" - ], - "x-ms-request-id": [ - "9a244dd8-7789-4220-822e-40ffd8535493" - ], - "x-ms-correlation-request-id": [ - "9a244dd8-7789-4220-822e-40ffd8535493" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173430Z:9a244dd8-7789-4220-822e-40ffd8535493" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "83f433fb-0141-4173-b6cc-ba9124322636" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10552" - ], - "x-ms-request-id": [ - "ea519392-d141-4bea-848e-efb42709d2a8" - ], - "x-ms-correlation-request-id": [ - "ea519392-d141-4bea-848e-efb42709d2a8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173430Z:ea519392-d141-4bea-848e-efb42709d2a8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ddd0d30a-d5d5-4f2f-85ac-b27472950ff2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10551" - ], - "x-ms-request-id": [ - "f8753a1d-d18d-4280-af31-90d4d2d83a1a" - ], - "x-ms-correlation-request-id": [ - "f8753a1d-d18d-4280-af31-90d4d2d83a1a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173430Z:f8753a1d-d18d-4280-af31-90d4d2d83a1a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:30 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "24af957b-32a4-4357-8d68-8978aeb827fc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10550" - ], - "x-ms-request-id": [ - "df7e276c-3549-4271-aaa7-ba4efdce9523" - ], - "x-ms-correlation-request-id": [ - "df7e276c-3549-4271-aaa7-ba4efdce9523" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173431Z:df7e276c-3549-4271-aaa7-ba4efdce9523" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70beea82-ccaf-4d73-af4e-0e3bfb9c2190" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10549" - ], - "x-ms-request-id": [ - "d5f1a3d2-0478-4c0e-b94a-60391da1cda5" - ], - "x-ms-correlation-request-id": [ - "d5f1a3d2-0478-4c0e-b94a-60391da1cda5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173431Z:d5f1a3d2-0478-4c0e-b94a-60391da1cda5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "341170c8-97a5-42ca-93b3-8b8ba7c5e2db" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10548" - ], - "x-ms-request-id": [ - "e24ee0d9-a5a4-4ff6-bb71-05d48e238b51" - ], - "x-ms-correlation-request-id": [ - "e24ee0d9-a5a4-4ff6-bb71-05d48e238b51" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173431Z:e24ee0d9-a5a4-4ff6-bb71-05d48e238b51" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "811319e1-1e37-4e1a-aa8e-b05ba9678019" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10547" - ], - "x-ms-request-id": [ - "1c2c4c6a-5b39-43f8-8682-2dada8c1d81f" - ], - "x-ms-correlation-request-id": [ - "1c2c4c6a-5b39-43f8-8682-2dada8c1d81f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173431Z:1c2c4c6a-5b39-43f8-8682-2dada8c1d81f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:31 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5a1daf72-311c-41cc-87d5-a3183c60c6d4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10546" - ], - "x-ms-request-id": [ - "b4d6e8ec-96b0-4661-8189-6377c4684adf" - ], - "x-ms-correlation-request-id": [ - "b4d6e8ec-96b0-4661-8189-6377c4684adf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173432Z:b4d6e8ec-96b0-4661-8189-6377c4684adf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd37ca15-4f28-454b-a95c-dde240d613f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10545" - ], - "x-ms-request-id": [ - "4ebbd9d0-d0da-431f-b58e-30f283937b1b" - ], - "x-ms-correlation-request-id": [ - "4ebbd9d0-d0da-431f-b58e-30f283937b1b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173432Z:4ebbd9d0-d0da-431f-b58e-30f283937b1b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "629aeba9-e5b4-4a96-98ff-4658cddf825c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10544" - ], - "x-ms-request-id": [ - "5967570f-b10b-4f52-9802-fe5875125992" - ], - "x-ms-correlation-request-id": [ - "5967570f-b10b-4f52-9802-fe5875125992" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173432Z:5967570f-b10b-4f52-9802-fe5875125992" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e99b35c-e32c-41fc-81a2-41033c6a5c7f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10543" - ], - "x-ms-request-id": [ - "d45a41c5-9afd-407b-b89b-4902c948de6d" - ], - "x-ms-correlation-request-id": [ - "d45a41c5-9afd-407b-b89b-4902c948de6d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173432Z:d45a41c5-9afd-407b-b89b-4902c948de6d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:32 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c193a2c4-256d-468f-a306-14cb97a5da32" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10542" - ], - "x-ms-request-id": [ - "a47ad9b5-4fec-43bd-baf7-31c728ec2a49" - ], - "x-ms-correlation-request-id": [ - "a47ad9b5-4fec-43bd-baf7-31c728ec2a49" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173433Z:a47ad9b5-4fec-43bd-baf7-31c728ec2a49" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0b5b73e8-26ca-415e-855d-3ce9ddbb848e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10541" - ], - "x-ms-request-id": [ - "5e819b69-8e51-4927-9d37-023b14a3363e" - ], - "x-ms-correlation-request-id": [ - "5e819b69-8e51-4927-9d37-023b14a3363e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173433Z:5e819b69-8e51-4927-9d37-023b14a3363e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "27ebf1c0-b64f-40b2-8cee-33113e9b12a8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10540" - ], - "x-ms-request-id": [ - "79a96ca0-1052-411c-8dcc-17a039f1e6f7" - ], - "x-ms-correlation-request-id": [ - "79a96ca0-1052-411c-8dcc-17a039f1e6f7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173433Z:79a96ca0-1052-411c-8dcc-17a039f1e6f7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dc405dd0-0ab1-4fa6-8347-7dc4ecbe0b71" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10539" - ], - "x-ms-request-id": [ - "58859c28-a459-460c-82af-5db1a187507e" - ], - "x-ms-correlation-request-id": [ - "58859c28-a459-460c-82af-5db1a187507e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173434Z:58859c28-a459-460c-82af-5db1a187507e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:33 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59b72142-0276-46fa-ba1d-843e05bf50e2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10538" - ], - "x-ms-request-id": [ - "b07d3f0f-4150-43a0-8bef-0b83fe5ceaf5" - ], - "x-ms-correlation-request-id": [ - "b07d3f0f-4150-43a0-8bef-0b83fe5ceaf5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173434Z:b07d3f0f-4150-43a0-8bef-0b83fe5ceaf5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a304435-f888-48ae-8adb-37105b98c2fd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10537" - ], - "x-ms-request-id": [ - "ae37eab6-9175-4ac0-abfc-75188ff6a9ee" - ], - "x-ms-correlation-request-id": [ - "ae37eab6-9175-4ac0-abfc-75188ff6a9ee" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173434Z:ae37eab6-9175-4ac0-abfc-75188ff6a9ee" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7b731f30-953b-4dce-97c9-3364010f2877" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10536" - ], - "x-ms-request-id": [ - "2549f7b9-a5ca-423d-8da2-cd08f47cc4cb" - ], - "x-ms-correlation-request-id": [ - "2549f7b9-a5ca-423d-8da2-cd08f47cc4cb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173434Z:2549f7b9-a5ca-423d-8da2-cd08f47cc4cb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9bfa24d1-9cc8-404d-bbf3-eaae870841b0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10535" - ], - "x-ms-request-id": [ - "14cb85a5-4b8d-44b0-a5b4-0046567c9025" - ], - "x-ms-correlation-request-id": [ - "14cb85a5-4b8d-44b0-a5b4-0046567c9025" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173435Z:14cb85a5-4b8d-44b0-a5b4-0046567c9025" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:34 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "453c7706-5249-420b-8f5c-fc1728464bfd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10534" - ], - "x-ms-request-id": [ - "f81ff9a3-510b-4c00-9c3e-ad6f95388c47" - ], - "x-ms-correlation-request-id": [ - "f81ff9a3-510b-4c00-9c3e-ad6f95388c47" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173435Z:f81ff9a3-510b-4c00-9c3e-ad6f95388c47" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "83116445-4ef1-4e7a-a578-75ece26a4d8a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10533" - ], - "x-ms-request-id": [ - "b375991f-81dc-4c03-8600-5a834a7acecd" - ], - "x-ms-correlation-request-id": [ - "b375991f-81dc-4c03-8600-5a834a7acecd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173435Z:b375991f-81dc-4c03-8600-5a834a7acecd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1c95782-c22d-4f90-901f-1f5bc2f4b348" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10532" - ], - "x-ms-request-id": [ - "c05314cc-f273-4665-8027-119b63c9641e" - ], - "x-ms-correlation-request-id": [ - "c05314cc-f273-4665-8027-119b63c9641e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173435Z:c05314cc-f273-4665-8027-119b63c9641e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:35 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b8536775-6873-4ec8-9fef-8c3e54958253" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10531" - ], - "x-ms-request-id": [ - "c9df68e3-f398-4629-829d-b44780f6d7dd" - ], - "x-ms-correlation-request-id": [ - "c9df68e3-f398-4629-829d-b44780f6d7dd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173436Z:c9df68e3-f398-4629-829d-b44780f6d7dd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e0936b43-7115-4c1b-8a61-94e4d5228a95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10530" - ], - "x-ms-request-id": [ - "0bb34c81-fb53-4f3a-b4d5-aaa808c3e56f" - ], - "x-ms-correlation-request-id": [ - "0bb34c81-fb53-4f3a-b4d5-aaa808c3e56f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173436Z:0bb34c81-fb53-4f3a-b4d5-aaa808c3e56f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "827f9a73-c047-401f-94de-3166712f3f87" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10529" - ], - "x-ms-request-id": [ - "331bf58d-4b67-42d4-bb7b-38ea3d4f32cf" - ], - "x-ms-correlation-request-id": [ - "331bf58d-4b67-42d4-bb7b-38ea3d4f32cf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173436Z:331bf58d-4b67-42d4-bb7b-38ea3d4f32cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6869db27-8dbd-41e8-96f7-7bfec56865a9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10528" - ], - "x-ms-request-id": [ - "167fc58f-5bd4-45df-8d23-374d5f2f5d91" - ], - "x-ms-correlation-request-id": [ - "167fc58f-5bd4-45df-8d23-374d5f2f5d91" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173437Z:167fc58f-5bd4-45df-8d23-374d5f2f5d91" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:36 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c2751c44-0317-4533-9558-b047effecf86" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10527" - ], - "x-ms-request-id": [ - "6751950f-2304-41d0-9831-f2a7a2cc743c" - ], - "x-ms-correlation-request-id": [ - "6751950f-2304-41d0-9831-f2a7a2cc743c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173437Z:6751950f-2304-41d0-9831-f2a7a2cc743c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8e2b8a10-773d-48d2-957f-d54028b16e14" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10526" - ], - "x-ms-request-id": [ - "0668ad25-feec-440a-8c2b-b52e3784c533" - ], - "x-ms-correlation-request-id": [ - "0668ad25-feec-440a-8c2b-b52e3784c533" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173437Z:0668ad25-feec-440a-8c2b-b52e3784c533" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8c52d1e6-c4ef-4a87-a269-86656d131e60" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10525" - ], - "x-ms-request-id": [ - "164af30b-18a5-4fc0-b143-43b072e13b50" - ], - "x-ms-correlation-request-id": [ - "164af30b-18a5-4fc0-b143-43b072e13b50" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173437Z:164af30b-18a5-4fc0-b143-43b072e13b50" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8947f932-60b9-4160-baeb-5a9ccfe302bd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10524" - ], - "x-ms-request-id": [ - "7145d49d-b251-42cb-b70a-9f0973611c6a" - ], - "x-ms-correlation-request-id": [ - "7145d49d-b251-42cb-b70a-9f0973611c6a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173438Z:7145d49d-b251-42cb-b70a-9f0973611c6a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:37 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "22a14a05-2e00-4eb5-b7e3-364afe7d4dc5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10523" - ], - "x-ms-request-id": [ - "4b6ae055-f7d4-4953-bc62-fa3116acc707" - ], - "x-ms-correlation-request-id": [ - "4b6ae055-f7d4-4953-bc62-fa3116acc707" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173438Z:4b6ae055-f7d4-4953-bc62-fa3116acc707" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9fd92f30-f717-4639-8afc-c20f4469525e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10522" - ], - "x-ms-request-id": [ - "b402f86e-234e-46d0-859a-4a3705ddf8b8" - ], - "x-ms-correlation-request-id": [ - "b402f86e-234e-46d0-859a-4a3705ddf8b8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173438Z:b402f86e-234e-46d0-859a-4a3705ddf8b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "87857466-3de3-4835-9564-bc4582565758" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10521" - ], - "x-ms-request-id": [ - "6c1efc81-870f-45af-94a0-236827804a5d" - ], - "x-ms-correlation-request-id": [ - "6c1efc81-870f-45af-94a0-236827804a5d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173438Z:6c1efc81-870f-45af-94a0-236827804a5d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "38490722-a12a-4e51-b5df-75ff3a167ea7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10520" - ], - "x-ms-request-id": [ - "625bdbc2-d5b1-40bf-9561-b541585b1090" - ], - "x-ms-correlation-request-id": [ - "625bdbc2-d5b1-40bf-9561-b541585b1090" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173439Z:625bdbc2-d5b1-40bf-9561-b541585b1090" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:38 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ae2ebb3-e875-427e-971c-47e5af6d0765" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10519" - ], - "x-ms-request-id": [ - "00b12458-6ea8-451f-b287-295fc75c11c3" - ], - "x-ms-correlation-request-id": [ - "00b12458-6ea8-451f-b287-295fc75c11c3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173439Z:00b12458-6ea8-451f-b287-295fc75c11c3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1b7378a-cd17-4b91-ad73-690a7542588f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10518" - ], - "x-ms-request-id": [ - "6c685ccd-36de-4173-be24-4bcd804ec270" - ], - "x-ms-correlation-request-id": [ - "6c685ccd-36de-4173-be24-4bcd804ec270" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173439Z:6c685ccd-36de-4173-be24-4bcd804ec270" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7aa81f00-b74d-4b2b-8a6e-b6786e9ac7cc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10517" - ], - "x-ms-request-id": [ - "60332a08-8edc-4b45-9dd0-0715e0c4e150" - ], - "x-ms-correlation-request-id": [ - "60332a08-8edc-4b45-9dd0-0715e0c4e150" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173439Z:60332a08-8edc-4b45-9dd0-0715e0c4e150" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "78eae956-7f67-47e1-a2f1-cbe30ccc9bcb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10516" - ], - "x-ms-request-id": [ - "8ef263cc-44a4-47c5-b2af-aa2712120a13" - ], - "x-ms-correlation-request-id": [ - "8ef263cc-44a4-47c5-b2af-aa2712120a13" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173440Z:8ef263cc-44a4-47c5-b2af-aa2712120a13" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:39 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "efceba40-c315-464b-a213-89c1b79af7ae" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10515" - ], - "x-ms-request-id": [ - "a9debdd2-28f8-489d-adda-2ede8cade199" - ], - "x-ms-correlation-request-id": [ - "a9debdd2-28f8-489d-adda-2ede8cade199" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173440Z:a9debdd2-28f8-489d-adda-2ede8cade199" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc60e9f4-9306-4997-964f-34e63c0251c7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10514" - ], - "x-ms-request-id": [ - "f2e68f09-3675-432b-9d25-d8f85f7ca804" - ], - "x-ms-correlation-request-id": [ - "f2e68f09-3675-432b-9d25-d8f85f7ca804" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173440Z:f2e68f09-3675-432b-9d25-d8f85f7ca804" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e99f324-1496-4edd-b752-77f02aba154a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10513" - ], - "x-ms-request-id": [ - "0f69d60b-732c-491f-9f94-155040f4048d" - ], - "x-ms-correlation-request-id": [ - "0f69d60b-732c-491f-9f94-155040f4048d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173440Z:0f69d60b-732c-491f-9f94-155040f4048d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef9e7eee-e1de-4257-bd8c-bec57dbb3a6e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10512" - ], - "x-ms-request-id": [ - "cdb95592-49da-44e0-89d2-4988fd7abd6e" - ], - "x-ms-correlation-request-id": [ - "cdb95592-49da-44e0-89d2-4988fd7abd6e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173441Z:cdb95592-49da-44e0-89d2-4988fd7abd6e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:40 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c0262501-9324-4310-950d-37fef2ccea56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10511" - ], - "x-ms-request-id": [ - "eafa1178-4207-43a1-a214-f20421093e62" - ], - "x-ms-correlation-request-id": [ - "eafa1178-4207-43a1-a214-f20421093e62" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173441Z:eafa1178-4207-43a1-a214-f20421093e62" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "946bc9a7-5c9f-4958-b4fd-b99b32b8c190" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10510" - ], - "x-ms-request-id": [ - "eb43f706-afce-4c8e-a040-3ac861f06f6b" - ], - "x-ms-correlation-request-id": [ - "eb43f706-afce-4c8e-a040-3ac861f06f6b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173441Z:eb43f706-afce-4c8e-a040-3ac861f06f6b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc11774e-1b3d-473e-a18a-09a1343304ee" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10509" - ], - "x-ms-request-id": [ - "709f060b-177f-41bc-b7f1-7ffdc94f9ee5" - ], - "x-ms-correlation-request-id": [ - "709f060b-177f-41bc-b7f1-7ffdc94f9ee5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173442Z:709f060b-177f-41bc-b7f1-7ffdc94f9ee5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b21b72c5-0e0e-48ff-82ec-0d53f2ceca2b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10508" - ], - "x-ms-request-id": [ - "12260966-34ae-496f-9675-825a9c7df204" - ], - "x-ms-correlation-request-id": [ - "12260966-34ae-496f-9675-825a9c7df204" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173442Z:12260966-34ae-496f-9675-825a9c7df204" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:41 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9a4438fe-189c-49fe-ab58-ee345111094c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10507" - ], - "x-ms-request-id": [ - "7a5974a0-8164-487b-9235-66404fecff5f" - ], - "x-ms-correlation-request-id": [ - "7a5974a0-8164-487b-9235-66404fecff5f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173442Z:7a5974a0-8164-487b-9235-66404fecff5f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23574338-7f26-44d9-ac76-ee37c69ad755" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10506" - ], - "x-ms-request-id": [ - "48877ff8-d8a9-44cd-bd65-7bcc09446f90" - ], - "x-ms-correlation-request-id": [ - "48877ff8-d8a9-44cd-bd65-7bcc09446f90" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173442Z:48877ff8-d8a9-44cd-bd65-7bcc09446f90" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4df1e86a-cf4c-4332-ae15-f40a39390427" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10505" - ], - "x-ms-request-id": [ - "29b9812b-684f-43a5-afd2-2e459c44a9ae" - ], - "x-ms-correlation-request-id": [ - "29b9812b-684f-43a5-afd2-2e459c44a9ae" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173443Z:29b9812b-684f-43a5-afd2-2e459c44a9ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75b83798-8e7c-4e13-9e57-2c10660adb90" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10504" - ], - "x-ms-request-id": [ - "69151a43-f15e-41d1-92b9-eb712f7ef311" - ], - "x-ms-correlation-request-id": [ - "69151a43-f15e-41d1-92b9-eb712f7ef311" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173443Z:69151a43-f15e-41d1-92b9-eb712f7ef311" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:42 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce5dae0c-6a84-4727-be68-1622307b2bdc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10503" - ], - "x-ms-request-id": [ - "0eb01c74-f309-4c6c-9b59-f0cd6a09d216" - ], - "x-ms-correlation-request-id": [ - "0eb01c74-f309-4c6c-9b59-f0cd6a09d216" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173443Z:0eb01c74-f309-4c6c-9b59-f0cd6a09d216" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8e7a910c-5063-4ca5-ab5d-939fc9b54040" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10502" - ], - "x-ms-request-id": [ - "2f77adc1-2486-4b7d-99c7-06861f250b39" - ], - "x-ms-correlation-request-id": [ - "2f77adc1-2486-4b7d-99c7-06861f250b39" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173443Z:2f77adc1-2486-4b7d-99c7-06861f250b39" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "886242b6-4ac5-4b90-9209-c09812b530af" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10501" - ], - "x-ms-request-id": [ - "9d96abab-a8c2-4d9b-a3d6-e63dc19db774" - ], - "x-ms-correlation-request-id": [ - "9d96abab-a8c2-4d9b-a3d6-e63dc19db774" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173444Z:9d96abab-a8c2-4d9b-a3d6-e63dc19db774" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:43 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "45fddfcb-ced9-4035-bbb2-0cb25ab0e15b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10500" - ], - "x-ms-request-id": [ - "6553f570-a945-498f-88b4-44ed5bc4daac" - ], - "x-ms-correlation-request-id": [ - "6553f570-a945-498f-88b4-44ed5bc4daac" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173444Z:6553f570-a945-498f-88b4-44ed5bc4daac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6c513547-ce0c-4b12-9c70-b7b931d65dda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10499" - ], - "x-ms-request-id": [ - "70fc9a82-3a18-4ec2-ac6a-b5922c7b5558" - ], - "x-ms-correlation-request-id": [ - "70fc9a82-3a18-4ec2-ac6a-b5922c7b5558" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173444Z:70fc9a82-3a18-4ec2-ac6a-b5922c7b5558" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f9fb1292-71e5-4fe3-ad4d-439ce129fc7d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10498" - ], - "x-ms-request-id": [ - "b6754ff2-d7ec-4409-88f5-f728c1d4048a" - ], - "x-ms-correlation-request-id": [ - "b6754ff2-d7ec-4409-88f5-f728c1d4048a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173444Z:b6754ff2-d7ec-4409-88f5-f728c1d4048a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "beb8de57-843f-4482-b3e5-91b4c9935ab9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10497" - ], - "x-ms-request-id": [ - "e382f361-5ec4-4ac9-8ba6-bb925e0b2aeb" - ], - "x-ms-correlation-request-id": [ - "e382f361-5ec4-4ac9-8ba6-bb925e0b2aeb" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173445Z:e382f361-5ec4-4ac9-8ba6-bb925e0b2aeb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:44 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d86ad4e4-bac4-4305-bb7e-35848ccb991b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10496" - ], - "x-ms-request-id": [ - "4b555ae1-9fa2-40fd-b651-9901d88e82e2" - ], - "x-ms-correlation-request-id": [ - "4b555ae1-9fa2-40fd-b651-9901d88e82e2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173445Z:4b555ae1-9fa2-40fd-b651-9901d88e82e2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "649f5801-fe10-4393-8f92-8f2f33930c8e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10495" - ], - "x-ms-request-id": [ - "66945c29-758d-474f-8f15-5f6029db1fd6" - ], - "x-ms-correlation-request-id": [ - "66945c29-758d-474f-8f15-5f6029db1fd6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173445Z:66945c29-758d-474f-8f15-5f6029db1fd6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e38bc2a2-ebef-41bc-875d-2dea7a225f24" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10494" - ], - "x-ms-request-id": [ - "f93ad28a-b846-4b90-bd63-7245a523be30" - ], - "x-ms-correlation-request-id": [ - "f93ad28a-b846-4b90-bd63-7245a523be30" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173446Z:f93ad28a-b846-4b90-bd63-7245a523be30" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5bad42cb-eb6e-411c-a33a-cb9384f77292" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10493" - ], - "x-ms-request-id": [ - "8b1f134c-5754-4a3a-b04e-0225cceca05c" - ], - "x-ms-correlation-request-id": [ - "8b1f134c-5754-4a3a-b04e-0225cceca05c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173446Z:8b1f134c-5754-4a3a-b04e-0225cceca05c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:45 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa724416-49fe-4c2c-8419-4879dc3763ba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10492" - ], - "x-ms-request-id": [ - "8320898b-e794-49a1-9837-c376c88a6a55" - ], - "x-ms-correlation-request-id": [ - "8320898b-e794-49a1-9837-c376c88a6a55" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173446Z:8320898b-e794-49a1-9837-c376c88a6a55" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68e9fe34-b0bd-427c-9ac3-5c0b33de5311" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10491" - ], - "x-ms-request-id": [ - "03869cbf-ca86-4975-baf7-0cc3654e1f6b" - ], - "x-ms-correlation-request-id": [ - "03869cbf-ca86-4975-baf7-0cc3654e1f6b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173446Z:03869cbf-ca86-4975-baf7-0cc3654e1f6b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "57195f03-bb36-4a71-a7a8-538c65165aa1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10490" - ], - "x-ms-request-id": [ - "b85f3b9f-1cab-44f6-942b-f379fefd7cb6" - ], - "x-ms-correlation-request-id": [ - "b85f3b9f-1cab-44f6-942b-f379fefd7cb6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173447Z:b85f3b9f-1cab-44f6-942b-f379fefd7cb6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b773c963-7998-47b2-8160-d6a85dc23b69" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10489" - ], - "x-ms-request-id": [ - "c8ac9c98-43b3-4e8c-9acf-f55aa91beb0f" - ], - "x-ms-correlation-request-id": [ - "c8ac9c98-43b3-4e8c-9acf-f55aa91beb0f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173447Z:c8ac9c98-43b3-4e8c-9acf-f55aa91beb0f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:46 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d97dbb20-3bd3-4b33-960a-d2c827f1bcf3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10488" - ], - "x-ms-request-id": [ - "bcff3715-9640-4016-9d95-0489c1ff03d1" - ], - "x-ms-correlation-request-id": [ - "bcff3715-9640-4016-9d95-0489c1ff03d1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173447Z:bcff3715-9640-4016-9d95-0489c1ff03d1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "00b246df-7d09-4351-8bf4-b88e644eeea2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10487" - ], - "x-ms-request-id": [ - "5b2e798a-42ca-4efa-b6ea-b3d3a2276414" - ], - "x-ms-correlation-request-id": [ - "5b2e798a-42ca-4efa-b6ea-b3d3a2276414" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173447Z:5b2e798a-42ca-4efa-b6ea-b3d3a2276414" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "452b5935-0124-404c-bded-992248f061d7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10486" - ], - "x-ms-request-id": [ - "1653cb36-2d53-4e9b-9900-15b4c01e8d30" - ], - "x-ms-correlation-request-id": [ - "1653cb36-2d53-4e9b-9900-15b4c01e8d30" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173448Z:1653cb36-2d53-4e9b-9900-15b4c01e8d30" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "291a9625-3c9c-473c-939d-2e719361109c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10485" - ], - "x-ms-request-id": [ - "7c5d2eda-dab4-4a25-a181-ee4f08448b0e" - ], - "x-ms-correlation-request-id": [ - "7c5d2eda-dab4-4a25-a181-ee4f08448b0e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173448Z:7c5d2eda-dab4-4a25-a181-ee4f08448b0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:47 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9089d274-80cc-40ea-8f15-3fc767db2a81" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10484" - ], - "x-ms-request-id": [ - "49aaddab-2fcf-4b96-9362-db44c0f3ba99" - ], - "x-ms-correlation-request-id": [ - "49aaddab-2fcf-4b96-9362-db44c0f3ba99" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173448Z:49aaddab-2fcf-4b96-9362-db44c0f3ba99" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d657f024-43dd-43c3-848d-2f1ed568939c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10483" - ], - "x-ms-request-id": [ - "4c5172a3-722e-402e-b1d0-47541fbd14fa" - ], - "x-ms-correlation-request-id": [ - "4c5172a3-722e-402e-b1d0-47541fbd14fa" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173448Z:4c5172a3-722e-402e-b1d0-47541fbd14fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e22dd3e6-ae52-49d2-9219-1993b40e9e1a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10482" - ], - "x-ms-request-id": [ - "6e064bf5-b88f-41a5-a2b2-dae2b84c14a9" - ], - "x-ms-correlation-request-id": [ - "6e064bf5-b88f-41a5-a2b2-dae2b84c14a9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173449Z:6e064bf5-b88f-41a5-a2b2-dae2b84c14a9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "568a67f2-b4fe-4760-a055-3c884d7fffc2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10481" - ], - "x-ms-request-id": [ - "365886da-e7b4-48d8-acba-4aa2cb83b392" - ], - "x-ms-correlation-request-id": [ - "365886da-e7b4-48d8-acba-4aa2cb83b392" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173449Z:365886da-e7b4-48d8-acba-4aa2cb83b392" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:48 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c6e38461-bee5-414d-aecd-66287f760010" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10480" - ], - "x-ms-request-id": [ - "78ad0810-588d-499b-b9f9-3ffcaba03127" - ], - "x-ms-correlation-request-id": [ - "78ad0810-588d-499b-b9f9-3ffcaba03127" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173449Z:78ad0810-588d-499b-b9f9-3ffcaba03127" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf4da2c9-df51-42f7-8604-b5a01a69437a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10479" - ], - "x-ms-request-id": [ - "fcfb0008-6212-4544-a3c9-30b2101ae027" - ], - "x-ms-correlation-request-id": [ - "fcfb0008-6212-4544-a3c9-30b2101ae027" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173450Z:fcfb0008-6212-4544-a3c9-30b2101ae027" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9de25a9e-71a3-4243-a90b-b98265dc10ee" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10478" - ], - "x-ms-request-id": [ - "79607336-111d-4bbf-a263-f460f1e108a5" - ], - "x-ms-correlation-request-id": [ - "79607336-111d-4bbf-a263-f460f1e108a5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173450Z:79607336-111d-4bbf-a263-f460f1e108a5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:49 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "69bbc320-7c7e-4791-bf64-79936ef14368" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10477" - ], - "x-ms-request-id": [ - "02e839ff-e6b8-4a18-bd92-27877e05aeab" - ], - "x-ms-correlation-request-id": [ - "02e839ff-e6b8-4a18-bd92-27877e05aeab" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173450Z:02e839ff-e6b8-4a18-bd92-27877e05aeab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a5b28700-504a-48ff-a5f5-c52b9010d93a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10476" - ], - "x-ms-request-id": [ - "70226bf1-229b-4077-8274-e29c1bfb6256" - ], - "x-ms-correlation-request-id": [ - "70226bf1-229b-4077-8274-e29c1bfb6256" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173450Z:70226bf1-229b-4077-8274-e29c1bfb6256" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e4d13360-aeb7-455a-8d64-745029b43eb8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10475" - ], - "x-ms-request-id": [ - "e42ea141-fcb1-4c71-9ff8-fbf910a9286d" - ], - "x-ms-correlation-request-id": [ - "e42ea141-fcb1-4c71-9ff8-fbf910a9286d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173451Z:e42ea141-fcb1-4c71-9ff8-fbf910a9286d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ffe51e9-fc40-4a74-be9c-87fdb4e3d932" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10474" - ], - "x-ms-request-id": [ - "90870cc2-a074-45bc-8af6-f2eaae1216cd" - ], - "x-ms-correlation-request-id": [ - "90870cc2-a074-45bc-8af6-f2eaae1216cd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173451Z:90870cc2-a074-45bc-8af6-f2eaae1216cd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:50 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "91e449dd-89dc-45a8-8d46-6c68b595a098" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10473" - ], - "x-ms-request-id": [ - "5925e72f-4af1-4613-b68f-b1324e3ebeb1" - ], - "x-ms-correlation-request-id": [ - "5925e72f-4af1-4613-b68f-b1324e3ebeb1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173451Z:5925e72f-4af1-4613-b68f-b1324e3ebeb1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9f86f085-2652-42b0-b869-872e3b0fadb8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10472" - ], - "x-ms-request-id": [ - "d795cbda-6627-4a2e-a6c6-88b4c8fdef5a" - ], - "x-ms-correlation-request-id": [ - "d795cbda-6627-4a2e-a6c6-88b4c8fdef5a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173451Z:d795cbda-6627-4a2e-a6c6-88b4c8fdef5a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0de56f23-b44a-4979-b857-256773cfa333" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10471" - ], - "x-ms-request-id": [ - "52175c3e-89f6-4519-b78c-7af5d36a3647" - ], - "x-ms-correlation-request-id": [ - "52175c3e-89f6-4519-b78c-7af5d36a3647" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173452Z:52175c3e-89f6-4519-b78c-7af5d36a3647" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a248334e-777b-4c83-a925-4f67b294886c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10470" - ], - "x-ms-request-id": [ - "ab8631f7-576e-4d92-b9e1-f3182dfeabe4" - ], - "x-ms-correlation-request-id": [ - "ab8631f7-576e-4d92-b9e1-f3182dfeabe4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173452Z:ab8631f7-576e-4d92-b9e1-f3182dfeabe4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:51 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6f2f29fb-4706-4548-b38a-6f3a15cba1b8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10469" - ], - "x-ms-request-id": [ - "f3aeda26-4cf2-4d82-bfad-3634bb0c1e6d" - ], - "x-ms-correlation-request-id": [ - "f3aeda26-4cf2-4d82-bfad-3634bb0c1e6d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173452Z:f3aeda26-4cf2-4d82-bfad-3634bb0c1e6d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "797c0b7f-789d-4b6e-b74b-acafdb7d7a01" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10468" - ], - "x-ms-request-id": [ - "1c8112b0-c42d-402b-9d32-add82f5b18e7" - ], - "x-ms-correlation-request-id": [ - "1c8112b0-c42d-402b-9d32-add82f5b18e7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173453Z:1c8112b0-c42d-402b-9d32-add82f5b18e7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "616a3667-8978-41c6-a4b6-4d38934999ec" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10467" - ], - "x-ms-request-id": [ - "e8259ae2-bf05-4b0e-920a-9837dec6a1b4" - ], - "x-ms-correlation-request-id": [ - "e8259ae2-bf05-4b0e-920a-9837dec6a1b4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173453Z:e8259ae2-bf05-4b0e-920a-9837dec6a1b4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "895859bf-72d6-4e7e-b7bc-c860f0c022c2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10466" - ], - "x-ms-request-id": [ - "95bcb26d-40f8-4f46-8884-a3a1a678a90a" - ], - "x-ms-correlation-request-id": [ - "95bcb26d-40f8-4f46-8884-a3a1a678a90a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173453Z:95bcb26d-40f8-4f46-8884-a3a1a678a90a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:52 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "daae4d29-1f31-46d9-a8d9-ba5a17e5c677" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10465" - ], - "x-ms-request-id": [ - "3c819f76-d317-4fa4-893f-96544897f4a8" - ], - "x-ms-correlation-request-id": [ - "3c819f76-d317-4fa4-893f-96544897f4a8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173453Z:3c819f76-d317-4fa4-893f-96544897f4a8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c5148982-e3d3-452b-83c7-20ec09bb7992" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10464" - ], - "x-ms-request-id": [ - "87f13d24-a02e-409a-893e-f60f60b1914a" - ], - "x-ms-correlation-request-id": [ - "87f13d24-a02e-409a-893e-f60f60b1914a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173454Z:87f13d24-a02e-409a-893e-f60f60b1914a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ca779dcd-3102-4f1a-9c40-283e24734880" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10463" - ], - "x-ms-request-id": [ - "30261318-c592-44c3-a275-ece7dd2be469" - ], - "x-ms-correlation-request-id": [ - "30261318-c592-44c3-a275-ece7dd2be469" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173454Z:30261318-c592-44c3-a275-ece7dd2be469" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:53 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "305f3a01-facb-4995-b127-65c9d6a71bf3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10462" - ], - "x-ms-request-id": [ - "1f1b5d11-09be-470d-ab51-b16b11558e87" - ], - "x-ms-correlation-request-id": [ - "1f1b5d11-09be-470d-ab51-b16b11558e87" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173454Z:1f1b5d11-09be-470d-ab51-b16b11558e87" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aff0f217-8ba4-4761-8cce-1d4bcdd536f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10461" - ], - "x-ms-request-id": [ - "69d65f38-be17-4977-9fe6-04f4cbe9449a" - ], - "x-ms-correlation-request-id": [ - "69d65f38-be17-4977-9fe6-04f4cbe9449a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173454Z:69d65f38-be17-4977-9fe6-04f4cbe9449a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a0981c4-46cb-4c29-bb2a-6f70250ef0f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10460" - ], - "x-ms-request-id": [ - "46f873fd-0615-48b3-8537-c3cdea8ff768" - ], - "x-ms-correlation-request-id": [ - "46f873fd-0615-48b3-8537-c3cdea8ff768" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173455Z:46f873fd-0615-48b3-8537-c3cdea8ff768" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d6ebdea5-6f29-4a3e-ab23-153a5a805e14" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10459" - ], - "x-ms-request-id": [ - "e2910807-1e1c-4e19-a69a-2ccc438e1f21" - ], - "x-ms-correlation-request-id": [ - "e2910807-1e1c-4e19-a69a-2ccc438e1f21" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173455Z:e2910807-1e1c-4e19-a69a-2ccc438e1f21" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:54 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7102448f-59d0-4658-900c-781533f0095b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10458" - ], - "x-ms-request-id": [ - "0fb62ad2-00d0-4599-84b6-197ae30058da" - ], - "x-ms-correlation-request-id": [ - "0fb62ad2-00d0-4599-84b6-197ae30058da" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173455Z:0fb62ad2-00d0-4599-84b6-197ae30058da" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "170a60e8-c03d-4485-9e7a-ced3866bb27e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10457" - ], - "x-ms-request-id": [ - "05773970-a3cf-4b3c-a12b-5bc202de8952" - ], - "x-ms-correlation-request-id": [ - "05773970-a3cf-4b3c-a12b-5bc202de8952" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173455Z:05773970-a3cf-4b3c-a12b-5bc202de8952" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ebc9dc8-c748-4adc-85d0-8843eb6029c8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10456" - ], - "x-ms-request-id": [ - "f4186960-de87-4078-a0d4-85569daad54a" - ], - "x-ms-correlation-request-id": [ - "f4186960-de87-4078-a0d4-85569daad54a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173456Z:f4186960-de87-4078-a0d4-85569daad54a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8abd236e-2e34-42ed-8812-5ac021422202" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10455" - ], - "x-ms-request-id": [ - "9b947404-645c-4986-a039-44c55f9ce1d7" - ], - "x-ms-correlation-request-id": [ - "9b947404-645c-4986-a039-44c55f9ce1d7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173456Z:9b947404-645c-4986-a039-44c55f9ce1d7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:55 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6af8bada-0e1d-495e-990e-c9580687684a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10454" - ], - "x-ms-request-id": [ - "25518d51-1b35-40ac-b951-a47780c7da40" - ], - "x-ms-correlation-request-id": [ - "25518d51-1b35-40ac-b951-a47780c7da40" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173456Z:25518d51-1b35-40ac-b951-a47780c7da40" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "506d8823-93ea-47aa-99bc-dd4fafb7c378" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10453" - ], - "x-ms-request-id": [ - "22a2f593-3f38-44be-ba59-be1d4960c441" - ], - "x-ms-correlation-request-id": [ - "22a2f593-3f38-44be-ba59-be1d4960c441" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173457Z:22a2f593-3f38-44be-ba59-be1d4960c441" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "003e72ec-8728-489a-bf2c-df1124bbe038" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10452" - ], - "x-ms-request-id": [ - "1195d7f2-c5c6-4cc7-bfce-c165ae740144" - ], - "x-ms-correlation-request-id": [ - "1195d7f2-c5c6-4cc7-bfce-c165ae740144" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173457Z:1195d7f2-c5c6-4cc7-bfce-c165ae740144" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3e450854-6ac1-40fd-b02c-f11ced8a120b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10451" - ], - "x-ms-request-id": [ - "7e649c26-e112-4670-adc6-fb5d909633e5" - ], - "x-ms-correlation-request-id": [ - "7e649c26-e112-4670-adc6-fb5d909633e5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173457Z:7e649c26-e112-4670-adc6-fb5d909633e5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:56 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "24250f5b-b1e0-4539-90f9-3f399cd032c3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10450" - ], - "x-ms-request-id": [ - "caaf57e8-2f8b-4ae9-a4ce-7ae2eb12127a" - ], - "x-ms-correlation-request-id": [ - "caaf57e8-2f8b-4ae9-a4ce-7ae2eb12127a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173457Z:caaf57e8-2f8b-4ae9-a4ce-7ae2eb12127a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc0c9ed2-351f-4bc6-afb6-08389f8dae1d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10449" - ], - "x-ms-request-id": [ - "2a9c13a3-82fa-4ac6-a18f-6a5ff7b7aac5" - ], - "x-ms-correlation-request-id": [ - "2a9c13a3-82fa-4ac6-a18f-6a5ff7b7aac5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173458Z:2a9c13a3-82fa-4ac6-a18f-6a5ff7b7aac5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2cc979da-2554-41a2-99f9-bfc6fe8cda22" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10448" - ], - "x-ms-request-id": [ - "fcb7fedd-3cf5-4ec5-add4-c42e92692643" - ], - "x-ms-correlation-request-id": [ - "fcb7fedd-3cf5-4ec5-add4-c42e92692643" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173458Z:fcb7fedd-3cf5-4ec5-add4-c42e92692643" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2cf80ca-4277-4b49-aac1-e551e4d964c5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10447" - ], - "x-ms-request-id": [ - "645a9166-9865-427e-bfc7-f61d493f19cc" - ], - "x-ms-correlation-request-id": [ - "645a9166-9865-427e-bfc7-f61d493f19cc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173458Z:645a9166-9865-427e-bfc7-f61d493f19cc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:57 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a334e91-3d99-427d-8462-d53aab760f03" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10446" - ], - "x-ms-request-id": [ - "4f07acf9-0a93-410f-b929-0a656f09be7c" - ], - "x-ms-correlation-request-id": [ - "4f07acf9-0a93-410f-b929-0a656f09be7c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173458Z:4f07acf9-0a93-410f-b929-0a656f09be7c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "64dcc4ed-dada-4ad3-9c4e-98b29e9ef58c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10445" - ], - "x-ms-request-id": [ - "27e222dd-9918-46b8-a5b6-bb84e45ca9ba" - ], - "x-ms-correlation-request-id": [ - "27e222dd-9918-46b8-a5b6-bb84e45ca9ba" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173459Z:27e222dd-9918-46b8-a5b6-bb84e45ca9ba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5bb5090e-0291-437f-a7aa-0b0b7ba76054" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10444" - ], - "x-ms-request-id": [ - "ebc38a6b-41df-49f9-bafe-cfd7137e9474" - ], - "x-ms-correlation-request-id": [ - "ebc38a6b-41df-49f9-bafe-cfd7137e9474" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173459Z:ebc38a6b-41df-49f9-bafe-cfd7137e9474" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e0d4a3f-249a-437d-957a-3727517066f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10443" - ], - "x-ms-request-id": [ - "034b36a0-6f08-4201-b066-ea152ea79946" - ], - "x-ms-correlation-request-id": [ - "034b36a0-6f08-4201-b066-ea152ea79946" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173459Z:034b36a0-6f08-4201-b066-ea152ea79946" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:58 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1bf6757-df67-4a03-98ac-e387a4b2073e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10442" - ], - "x-ms-request-id": [ - "be2f4076-26f6-4f3f-bc3d-a8863afa013d" - ], - "x-ms-correlation-request-id": [ - "be2f4076-26f6-4f3f-bc3d-a8863afa013d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173459Z:be2f4076-26f6-4f3f-bc3d-a8863afa013d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf7e3b4f-be63-4613-b4f0-756e9fea4db5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10441" - ], - "x-ms-request-id": [ - "f664ee90-5269-4d78-8f12-f4f286251096" - ], - "x-ms-correlation-request-id": [ - "f664ee90-5269-4d78-8f12-f4f286251096" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173500Z:f664ee90-5269-4d78-8f12-f4f286251096" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0404a537-5833-42b2-83b2-ee764a81c02c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10440" - ], - "x-ms-request-id": [ - "233cb3e2-74d4-4df6-af1f-b19bacdade12" - ], - "x-ms-correlation-request-id": [ - "233cb3e2-74d4-4df6-af1f-b19bacdade12" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173500Z:233cb3e2-74d4-4df6-af1f-b19bacdade12" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "92eba784-7c64-461d-bde8-6f9ac7b271f5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10439" - ], - "x-ms-request-id": [ - "8c812b4b-d40e-4e3b-9379-05ed9710bd0e" - ], - "x-ms-correlation-request-id": [ - "8c812b4b-d40e-4e3b-9379-05ed9710bd0e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173500Z:8c812b4b-d40e-4e3b-9379-05ed9710bd0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:34:59 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "17e4e2df-0e87-4b4e-9c64-9e8c9df7c2f5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10438" - ], - "x-ms-request-id": [ - "b0432ad0-36da-4390-a77e-02f599fd1b73" - ], - "x-ms-correlation-request-id": [ - "b0432ad0-36da-4390-a77e-02f599fd1b73" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173501Z:b0432ad0-36da-4390-a77e-02f599fd1b73" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e928ed83-c5a4-450d-a70a-e3cd3537adf7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10437" - ], - "x-ms-request-id": [ - "51876ca5-0d0c-42c2-abed-acbe2374a605" - ], - "x-ms-correlation-request-id": [ - "51876ca5-0d0c-42c2-abed-acbe2374a605" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173501Z:51876ca5-0d0c-42c2-abed-acbe2374a605" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6c4f728d-95ca-4bf0-9336-6a011331a847" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10436" - ], - "x-ms-request-id": [ - "7e249366-8b89-4c5b-92c7-9108fe77bb85" - ], - "x-ms-correlation-request-id": [ - "7e249366-8b89-4c5b-92c7-9108fe77bb85" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173501Z:7e249366-8b89-4c5b-92c7-9108fe77bb85" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e584ca2e-e31e-49c0-95db-3c6c15f08567" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10435" - ], - "x-ms-request-id": [ - "bb56b18f-7f11-4e97-9cc4-b83c22ae3c64" - ], - "x-ms-correlation-request-id": [ - "bb56b18f-7f11-4e97-9cc4-b83c22ae3c64" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173501Z:bb56b18f-7f11-4e97-9cc4-b83c22ae3c64" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:00 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55efbb88-3a44-4453-90e0-f822de3bc8ee" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10434" - ], - "x-ms-request-id": [ - "d1a5aa71-bedf-49f2-b97b-01dd4d8b0420" - ], - "x-ms-correlation-request-id": [ - "d1a5aa71-bedf-49f2-b97b-01dd4d8b0420" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173502Z:d1a5aa71-bedf-49f2-b97b-01dd4d8b0420" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6e1e4ee3-7af6-4f5f-b3c7-4548481d7bbc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10433" - ], - "x-ms-request-id": [ - "0db78b81-1d3a-46f3-aed7-234fed382a8a" - ], - "x-ms-correlation-request-id": [ - "0db78b81-1d3a-46f3-aed7-234fed382a8a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173502Z:0db78b81-1d3a-46f3-aed7-234fed382a8a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33d6d157-41c4-48e9-8c3f-4d2fb064ae14" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10432" - ], - "x-ms-request-id": [ - "3778c2f5-f37a-41d3-b467-587ad981c62a" - ], - "x-ms-correlation-request-id": [ - "3778c2f5-f37a-41d3-b467-587ad981c62a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173502Z:3778c2f5-f37a-41d3-b467-587ad981c62a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:01 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a5b5d841-7237-45f9-8ceb-4c08bfcc57da" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10431" - ], - "x-ms-request-id": [ - "14a7f2bb-3cb3-46a3-91ae-4e0ce9a96c88" - ], - "x-ms-correlation-request-id": [ - "14a7f2bb-3cb3-46a3-91ae-4e0ce9a96c88" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173502Z:14a7f2bb-3cb3-46a3-91ae-4e0ce9a96c88" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "39e31eed-36f2-45de-a286-464be264f99f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10430" - ], - "x-ms-request-id": [ - "0e29a74a-8141-467e-9ce4-239a25e17f17" - ], - "x-ms-correlation-request-id": [ - "0e29a74a-8141-467e-9ce4-239a25e17f17" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173503Z:0e29a74a-8141-467e-9ce4-239a25e17f17" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8ad93f66-9a62-4b8b-95d9-1fe43559f90a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10429" - ], - "x-ms-request-id": [ - "52bec423-de34-417d-8b71-18659f587175" - ], - "x-ms-correlation-request-id": [ - "52bec423-de34-417d-8b71-18659f587175" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173503Z:52bec423-de34-417d-8b71-18659f587175" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fde92253-c54f-4a4c-930d-059929ebf2ee" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10428" - ], - "x-ms-request-id": [ - "6fbbb8c9-f4ae-4c6b-9d75-bf50314e9d5a" - ], - "x-ms-correlation-request-id": [ - "6fbbb8c9-f4ae-4c6b-9d75-bf50314e9d5a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173503Z:6fbbb8c9-f4ae-4c6b-9d75-bf50314e9d5a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:02 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2ddbc7ab-c5a2-4155-9e29-4e718c652cb0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10427" - ], - "x-ms-request-id": [ - "82e7e712-8552-4d64-9eba-8bbde06bcd1c" - ], - "x-ms-correlation-request-id": [ - "82e7e712-8552-4d64-9eba-8bbde06bcd1c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173503Z:82e7e712-8552-4d64-9eba-8bbde06bcd1c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef39dbf4-b0ca-4859-971b-bea06a4759c4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10426" - ], - "x-ms-request-id": [ - "58514172-8fc7-4705-9735-1d2a8478c304" - ], - "x-ms-correlation-request-id": [ - "58514172-8fc7-4705-9735-1d2a8478c304" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173504Z:58514172-8fc7-4705-9735-1d2a8478c304" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "674cebe3-9e47-4a48-9952-21bb3a2a4c36" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10425" - ], - "x-ms-request-id": [ - "ac387f4f-3b34-4268-817f-159b2d225fc0" - ], - "x-ms-correlation-request-id": [ - "ac387f4f-3b34-4268-817f-159b2d225fc0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173504Z:ac387f4f-3b34-4268-817f-159b2d225fc0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c7a9aa30-f183-4c30-8fae-8fb066261302" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10424" - ], - "x-ms-request-id": [ - "e2a2fa25-4127-417e-b25f-f6c03cc6aca2" - ], - "x-ms-correlation-request-id": [ - "e2a2fa25-4127-417e-b25f-f6c03cc6aca2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173504Z:e2a2fa25-4127-417e-b25f-f6c03cc6aca2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:03 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d140cb0-10d9-4496-a0dd-a85831fd7ad5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10423" - ], - "x-ms-request-id": [ - "9f44da0f-f58b-4a46-8991-d1ed17f782ad" - ], - "x-ms-correlation-request-id": [ - "9f44da0f-f58b-4a46-8991-d1ed17f782ad" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173504Z:9f44da0f-f58b-4a46-8991-d1ed17f782ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a09d2a33-ad83-430e-b81a-ae1e971cacc4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10422" - ], - "x-ms-request-id": [ - "973f6b6e-1c57-45cc-840d-80b2ee5b133a" - ], - "x-ms-correlation-request-id": [ - "973f6b6e-1c57-45cc-840d-80b2ee5b133a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173505Z:973f6b6e-1c57-45cc-840d-80b2ee5b133a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70c7c474-624f-4696-b191-b837e5c308ff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10421" - ], - "x-ms-request-id": [ - "e28c4eb1-ae31-4590-9014-f597901ec4db" - ], - "x-ms-correlation-request-id": [ - "e28c4eb1-ae31-4590-9014-f597901ec4db" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173505Z:e28c4eb1-ae31-4590-9014-f597901ec4db" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8d3bba6-32d4-471f-838a-5ce886e9fd7e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10420" - ], - "x-ms-request-id": [ - "47d1fe71-783e-4b10-8b7f-6cbeee5c4792" - ], - "x-ms-correlation-request-id": [ - "47d1fe71-783e-4b10-8b7f-6cbeee5c4792" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173505Z:47d1fe71-783e-4b10-8b7f-6cbeee5c4792" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:04 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "10b13c01-35c7-4da6-a220-8ef84472ac7f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10419" - ], - "x-ms-request-id": [ - "ea51a799-df6a-4455-ac46-3ed50452ba79" - ], - "x-ms-correlation-request-id": [ - "ea51a799-df6a-4455-ac46-3ed50452ba79" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173506Z:ea51a799-df6a-4455-ac46-3ed50452ba79" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0dd900c1-b007-499a-a355-c055581450bb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10418" - ], - "x-ms-request-id": [ - "619da72d-3b69-4dd0-aade-15a4f278e8ec" - ], - "x-ms-correlation-request-id": [ - "619da72d-3b69-4dd0-aade-15a4f278e8ec" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173506Z:619da72d-3b69-4dd0-aade-15a4f278e8ec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "62b91315-db3a-4a8e-8a7a-66316eb20f05" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10417" - ], - "x-ms-request-id": [ - "9cf19896-b1e9-44bc-8279-8a192b2fcbed" - ], - "x-ms-correlation-request-id": [ - "9cf19896-b1e9-44bc-8279-8a192b2fcbed" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173506Z:9cf19896-b1e9-44bc-8279-8a192b2fcbed" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fecbf51e-9c67-4e48-8a67-975bf4987bad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10416" - ], - "x-ms-request-id": [ - "a3b5dc74-f0c5-4e60-8272-189e3ac894a4" - ], - "x-ms-correlation-request-id": [ - "a3b5dc74-f0c5-4e60-8272-189e3ac894a4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173506Z:a3b5dc74-f0c5-4e60-8272-189e3ac894a4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:05 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68fd5b51-c105-4db8-a3a7-2408c1c0da0c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10415" - ], - "x-ms-request-id": [ - "52e97507-aeff-4d93-aba4-32ffec4c3e19" - ], - "x-ms-correlation-request-id": [ - "52e97507-aeff-4d93-aba4-32ffec4c3e19" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173507Z:52e97507-aeff-4d93-aba4-32ffec4c3e19" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0f93c9cf-55df-4032-bf0c-0ad82684cbf8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10414" - ], - "x-ms-request-id": [ - "4fb05542-e2e7-4f67-acb3-d9622995b60a" - ], - "x-ms-correlation-request-id": [ - "4fb05542-e2e7-4f67-acb3-d9622995b60a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173507Z:4fb05542-e2e7-4f67-acb3-d9622995b60a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "effbbd7e-1dc1-4826-ab67-bd8323411f4a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10413" - ], - "x-ms-request-id": [ - "350b8803-b58e-4938-b419-32ff44456263" - ], - "x-ms-correlation-request-id": [ - "350b8803-b58e-4938-b419-32ff44456263" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173507Z:350b8803-b58e-4938-b419-32ff44456263" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49229036-d1c4-40aa-9e09-443ac59e460b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10412" - ], - "x-ms-request-id": [ - "64b5ce9a-1d07-4a34-89d1-c1ae548c7d0e" - ], - "x-ms-correlation-request-id": [ - "64b5ce9a-1d07-4a34-89d1-c1ae548c7d0e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173507Z:64b5ce9a-1d07-4a34-89d1-c1ae548c7d0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:07 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0e444891-02c7-42b6-8eb6-69ddaf2a3e63" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10411" - ], - "x-ms-request-id": [ - "b411996a-69ea-424e-9ad2-000cba506876" - ], - "x-ms-correlation-request-id": [ - "b411996a-69ea-424e-9ad2-000cba506876" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173508Z:b411996a-69ea-424e-9ad2-000cba506876" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f68bf736-15e9-4e03-9eb8-8b607eca5515" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10410" - ], - "x-ms-request-id": [ - "d60f7a17-aba4-411b-bb0b-4784ea2bca6c" - ], - "x-ms-correlation-request-id": [ - "d60f7a17-aba4-411b-bb0b-4784ea2bca6c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173508Z:d60f7a17-aba4-411b-bb0b-4784ea2bca6c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a28c0f08-1381-4270-b78d-34f7c53b3088" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10409" - ], - "x-ms-request-id": [ - "68a69b73-d536-4f34-bacc-ad918e1a4f0b" - ], - "x-ms-correlation-request-id": [ - "68a69b73-d536-4f34-bacc-ad918e1a4f0b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173508Z:68a69b73-d536-4f34-bacc-ad918e1a4f0b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3635109-30a5-4360-a699-f86ddf23ee39" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10408" - ], - "x-ms-request-id": [ - "1f3db125-b1dc-43e7-a8e5-64e09f69d2af" - ], - "x-ms-correlation-request-id": [ - "1f3db125-b1dc-43e7-a8e5-64e09f69d2af" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173508Z:1f3db125-b1dc-43e7-a8e5-64e09f69d2af" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:08 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "743c34a9-e301-4718-9b4d-dc43eb3722b8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10407" - ], - "x-ms-request-id": [ - "3f9f07e9-c306-41de-8b39-23a67a91686c" - ], - "x-ms-correlation-request-id": [ - "3f9f07e9-c306-41de-8b39-23a67a91686c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173509Z:3f9f07e9-c306-41de-8b39-23a67a91686c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ec89a8a1-118e-4378-9bdb-d34bbc419607" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10406" - ], - "x-ms-request-id": [ - "ab4b3588-0db8-4888-aef9-ef1516449e0e" - ], - "x-ms-correlation-request-id": [ - "ab4b3588-0db8-4888-aef9-ef1516449e0e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173509Z:ab4b3588-0db8-4888-aef9-ef1516449e0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "daf6d10a-6e84-4692-951e-e83aa6857c34" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10405" - ], - "x-ms-request-id": [ - "dc067ed2-4b10-46b2-bfff-deb2bd0f31cf" - ], - "x-ms-correlation-request-id": [ - "dc067ed2-4b10-46b2-bfff-deb2bd0f31cf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173509Z:dc067ed2-4b10-46b2-bfff-deb2bd0f31cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "904f5a55-dd22-48f2-90f0-d7231abfa28a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10404" - ], - "x-ms-request-id": [ - "76703922-dfab-4f41-b4b5-9472cb74ce46" - ], - "x-ms-correlation-request-id": [ - "76703922-dfab-4f41-b4b5-9472cb74ce46" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173509Z:76703922-dfab-4f41-b4b5-9472cb74ce46" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:09 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8ba92964-5e03-4993-95b9-72c1b312a579" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10403" - ], - "x-ms-request-id": [ - "fc507118-957e-4aeb-9582-19d24d8333e7" - ], - "x-ms-correlation-request-id": [ - "fc507118-957e-4aeb-9582-19d24d8333e7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173510Z:fc507118-957e-4aeb-9582-19d24d8333e7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dd8c50f6-ebf1-4bbf-9fb9-72fb414956aa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10402" - ], - "x-ms-request-id": [ - "0cc35117-6403-4914-bc85-1ee752eb6ee3" - ], - "x-ms-correlation-request-id": [ - "0cc35117-6403-4914-bc85-1ee752eb6ee3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173510Z:0cc35117-6403-4914-bc85-1ee752eb6ee3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71caa1eb-88f3-4712-bf51-4028e2782224" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10401" - ], - "x-ms-request-id": [ - "9a7942fd-aed8-4000-94d7-4c8338634ab8" - ], - "x-ms-correlation-request-id": [ - "9a7942fd-aed8-4000-94d7-4c8338634ab8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173510Z:9a7942fd-aed8-4000-94d7-4c8338634ab8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "86b0c882-b26a-4401-a1c3-f42c6c382af9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10400" - ], - "x-ms-request-id": [ - "4810a9fa-3f7a-400d-bf1f-c97428498bd7" - ], - "x-ms-correlation-request-id": [ - "4810a9fa-3f7a-400d-bf1f-c97428498bd7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173511Z:4810a9fa-3f7a-400d-bf1f-c97428498bd7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:10 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "24bd98cf-5406-4c2a-b8ea-08bc7a909147" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10399" - ], - "x-ms-request-id": [ - "1fc00089-29f6-47e3-ae23-9424373ee2d5" - ], - "x-ms-correlation-request-id": [ - "1fc00089-29f6-47e3-ae23-9424373ee2d5" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173511Z:1fc00089-29f6-47e3-ae23-9424373ee2d5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eea6f765-e1cb-48e6-a423-6fef860c412a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10398" - ], - "x-ms-request-id": [ - "3b98585b-30ca-4f4c-ac95-819dfc9b1b9b" - ], - "x-ms-correlation-request-id": [ - "3b98585b-30ca-4f4c-ac95-819dfc9b1b9b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173511Z:3b98585b-30ca-4f4c-ac95-819dfc9b1b9b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c9e2f602-a174-4e84-a546-530a648d8b43" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10397" - ], - "x-ms-request-id": [ - "c5dbefce-84a5-493d-a215-3f956828e3ea" - ], - "x-ms-correlation-request-id": [ - "c5dbefce-84a5-493d-a215-3f956828e3ea" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173511Z:c5dbefce-84a5-493d-a215-3f956828e3ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "883eb8ab-67dc-471a-b4a9-99387305adec" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10396" - ], - "x-ms-request-id": [ - "00fc8902-1b85-4e63-b9aa-f0e532e354f3" - ], - "x-ms-correlation-request-id": [ - "00fc8902-1b85-4e63-b9aa-f0e532e354f3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173512Z:00fc8902-1b85-4e63-b9aa-f0e532e354f3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:11 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "890aae81-e7af-49fa-b183-1e8ba8488c20" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10395" - ], - "x-ms-request-id": [ - "4cb09a83-d114-48ce-a05c-fa7fea43164b" - ], - "x-ms-correlation-request-id": [ - "4cb09a83-d114-48ce-a05c-fa7fea43164b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173512Z:4cb09a83-d114-48ce-a05c-fa7fea43164b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31deed28-4f8b-4ac2-8773-022870eb1db3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10394" - ], - "x-ms-request-id": [ - "1f14ea96-265c-45a9-986f-45d213389e5d" - ], - "x-ms-correlation-request-id": [ - "1f14ea96-265c-45a9-986f-45d213389e5d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173512Z:1f14ea96-265c-45a9-986f-45d213389e5d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "03930b64-0933-4850-a965-8d0ca9d7e930" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10393" - ], - "x-ms-request-id": [ - "9e7310bf-e59b-4c1e-8fb3-3361103cb032" - ], - "x-ms-correlation-request-id": [ - "9e7310bf-e59b-4c1e-8fb3-3361103cb032" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173512Z:9e7310bf-e59b-4c1e-8fb3-3361103cb032" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f5086dbf-ae6a-4a7e-85d6-85618890c521" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10392" - ], - "x-ms-request-id": [ - "09a518a3-91c6-4dd4-85c1-7f90f6b26160" - ], - "x-ms-correlation-request-id": [ - "09a518a3-91c6-4dd4-85c1-7f90f6b26160" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173513Z:09a518a3-91c6-4dd4-85c1-7f90f6b26160" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:12 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4b0f2a98-7944-42fc-b631-d3c41210c165" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10391" - ], - "x-ms-request-id": [ - "38c368e2-07c9-456e-a60f-4667761025dd" - ], - "x-ms-correlation-request-id": [ - "38c368e2-07c9-456e-a60f-4667761025dd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173513Z:38c368e2-07c9-456e-a60f-4667761025dd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "af4d8c66-2273-4428-9bc7-4be11284b15d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10390" - ], - "x-ms-request-id": [ - "f62cfcf5-0bb9-46e6-99a0-1dcbfeab3f38" - ], - "x-ms-correlation-request-id": [ - "f62cfcf5-0bb9-46e6-99a0-1dcbfeab3f38" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173513Z:f62cfcf5-0bb9-46e6-99a0-1dcbfeab3f38" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c5ab8487-d552-4b29-8e02-3b78b02aafd0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10389" - ], - "x-ms-request-id": [ - "b1db200b-fc24-4af5-b51a-0ceb2725d582" - ], - "x-ms-correlation-request-id": [ - "b1db200b-fc24-4af5-b51a-0ceb2725d582" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173513Z:b1db200b-fc24-4af5-b51a-0ceb2725d582" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef847f6a-3264-4e1b-8f85-637fc350a5f0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10388" - ], - "x-ms-request-id": [ - "ac8aff9c-be1b-4b3c-917f-a9a0af2d3421" - ], - "x-ms-correlation-request-id": [ - "ac8aff9c-be1b-4b3c-917f-a9a0af2d3421" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173514Z:ac8aff9c-be1b-4b3c-917f-a9a0af2d3421" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:13 GMT" - ], - "Content-Length": [ - "602" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6c901e14-de22-4afb-ae74-cdb7ca077927" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10387" - ], - "x-ms-request-id": [ - "45f2d6db-eece-4781-a78c-09f9a1587f82" - ], - "x-ms-correlation-request-id": [ - "45f2d6db-eece-4781-a78c-09f9a1587f82" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173514Z:45f2d6db-eece-4781-a78c-09f9a1587f82" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:14 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cde7182a-be5a-4fce-8219-4a9cfe5a172c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10386" - ], - "x-ms-request-id": [ - "11d4ed4a-09f8-4272-af20-c1759d8dcf58" - ], - "x-ms-correlation-request-id": [ - "11d4ed4a-09f8-4272-af20-c1759d8dcf58" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173516Z:11d4ed4a-09f8-4272-af20-c1759d8dcf58" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:15 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8828ebd4-afbc-4498-8ad6-58d6b237eaab" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10385" - ], - "x-ms-request-id": [ - "ef03ead4-b6f2-4e59-a230-1292a53cd201" - ], - "x-ms-correlation-request-id": [ - "ef03ead4-b6f2-4e59-a230-1292a53cd201" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173516Z:ef03ead4-b6f2-4e59-a230-1292a53cd201" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:16 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "93837d4f-4448-41e6-b85c-6ab437b22419" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10384" - ], - "x-ms-request-id": [ - "24813439-2cad-4088-937a-8a75f6c868e1" - ], - "x-ms-correlation-request-id": [ - "24813439-2cad-4088-937a-8a75f6c868e1" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173516Z:24813439-2cad-4088-937a-8a75f6c868e1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:16 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1efb4fb7-0519-45b7-91ca-9871e21d2601" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10383" - ], - "x-ms-request-id": [ - "0e9aeb18-e8a6-4fab-87ba-eef0e92cb93c" - ], - "x-ms-correlation-request-id": [ - "0e9aeb18-e8a6-4fab-87ba-eef0e92cb93c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173516Z:0e9aeb18-e8a6-4fab-87ba-eef0e92cb93c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:16 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1cb6e708-1198-45df-909a-5b2431d80b8f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10382" - ], - "x-ms-request-id": [ - "ea6f083f-553f-402b-a35b-7798cc1da174" - ], - "x-ms-correlation-request-id": [ - "ea6f083f-553f-402b-a35b-7798cc1da174" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173517Z:ea6f083f-553f-402b-a35b-7798cc1da174" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:16 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f3e9953b-60d3-481a-90ca-21e882cb79a1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10381" - ], - "x-ms-request-id": [ - "52952aff-f16c-44a2-8d9a-cf27a8056680" - ], - "x-ms-correlation-request-id": [ - "52952aff-f16c-44a2-8d9a-cf27a8056680" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173517Z:52952aff-f16c-44a2-8d9a-cf27a8056680" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:17 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2372d293-ae35-4512-aa49-9fb4be742b0d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10380" - ], - "x-ms-request-id": [ - "01dd7aa0-ecd4-42de-b730-0b6c0e9da057" - ], - "x-ms-correlation-request-id": [ - "01dd7aa0-ecd4-42de-b730-0b6c0e9da057" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173517Z:01dd7aa0-ecd4-42de-b730-0b6c0e9da057" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:17 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f6acd42-a6eb-433e-9c25-30fb4e03b0fc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10379" - ], - "x-ms-request-id": [ - "02364f4b-1584-4a28-9e11-c349b8fdd795" - ], - "x-ms-correlation-request-id": [ - "02364f4b-1584-4a28-9e11-c349b8fdd795" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173518Z:02364f4b-1584-4a28-9e11-c349b8fdd795" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:17 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "abe253c3-c6c7-4c6e-9e2d-0b5ee524e7b8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10378" - ], - "x-ms-request-id": [ - "8dba21e8-737c-4206-8264-64f887e691b9" - ], - "x-ms-correlation-request-id": [ - "8dba21e8-737c-4206-8264-64f887e691b9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173518Z:8dba21e8-737c-4206-8264-64f887e691b9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:17 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba5fcd12-553f-455b-923b-d86792d931dd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10377" - ], - "x-ms-request-id": [ - "a4176831-754a-4a1a-ad78-8844c32e5184" - ], - "x-ms-correlation-request-id": [ - "a4176831-754a-4a1a-ad78-8844c32e5184" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173518Z:a4176831-754a-4a1a-ad78-8844c32e5184" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:18 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a74d62b-16cf-4b04-9292-674fe18ec134" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10376" - ], - "x-ms-request-id": [ - "8bc97cb6-d6fc-4ebf-9e77-598e80d9e1c0" - ], - "x-ms-correlation-request-id": [ - "8bc97cb6-d6fc-4ebf-9e77-598e80d9e1c0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173518Z:8bc97cb6-d6fc-4ebf-9e77-598e80d9e1c0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:18 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a236ff9a-6e05-472a-a156-682b97a305cf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10375" - ], - "x-ms-request-id": [ - "b7ac9806-131b-4188-9957-a4c1ede8b132" - ], - "x-ms-correlation-request-id": [ - "b7ac9806-131b-4188-9957-a4c1ede8b132" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173519Z:b7ac9806-131b-4188-9957-a4c1ede8b132" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:18 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ca7307f-ff92-42d1-803f-66f6f95973d8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10374" - ], - "x-ms-request-id": [ - "7b74a71e-d9d0-41c4-89db-56077721bc1d" - ], - "x-ms-correlation-request-id": [ - "7b74a71e-d9d0-41c4-89db-56077721bc1d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173519Z:7b74a71e-d9d0-41c4-89db-56077721bc1d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:19 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b9cc5861-099b-429a-ae64-20a2f72aeabe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10373" - ], - "x-ms-request-id": [ - "d59475f3-da84-4a50-adef-640f5d3fd33b" - ], - "x-ms-correlation-request-id": [ - "d59475f3-da84-4a50-adef-640f5d3fd33b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173519Z:d59475f3-da84-4a50-adef-640f5d3fd33b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:19 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4bd70a77-20e7-45a7-ba30-4c39cf49cef6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10372" - ], - "x-ms-request-id": [ - "7169f581-4dec-4148-bc8a-50acc7755594" - ], - "x-ms-correlation-request-id": [ - "7169f581-4dec-4148-bc8a-50acc7755594" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173519Z:7169f581-4dec-4148-bc8a-50acc7755594" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:19 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d2e82d8-cb11-47f5-90a3-da563baf7cba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10371" - ], - "x-ms-request-id": [ - "d211ecd8-f526-49b6-b46d-ae6be0af0daf" - ], - "x-ms-correlation-request-id": [ - "d211ecd8-f526-49b6-b46d-ae6be0af0daf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173520Z:d211ecd8-f526-49b6-b46d-ae6be0af0daf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:19 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "297a8257-e5ed-4094-9c62-07f0044d0733" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10370" - ], - "x-ms-request-id": [ - "7fff24f3-937e-4d48-8ef7-ec8da13bb1fe" - ], - "x-ms-correlation-request-id": [ - "7fff24f3-937e-4d48-8ef7-ec8da13bb1fe" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173520Z:7fff24f3-937e-4d48-8ef7-ec8da13bb1fe" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:20 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9908d7ee-537d-4118-9a58-e3c2ad73f971" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10369" - ], - "x-ms-request-id": [ - "334fa9c8-cf99-4004-9e4f-f5fee8343ba9" - ], - "x-ms-correlation-request-id": [ - "334fa9c8-cf99-4004-9e4f-f5fee8343ba9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173520Z:334fa9c8-cf99-4004-9e4f-f5fee8343ba9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:20 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5945d05d-0168-4c3b-a0b2-426e10b49763" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10368" - ], - "x-ms-request-id": [ - "e3a12ce6-193a-4255-8c59-8bbb7e8e7827" - ], - "x-ms-correlation-request-id": [ - "e3a12ce6-193a-4255-8c59-8bbb7e8e7827" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173521Z:e3a12ce6-193a-4255-8c59-8bbb7e8e7827" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:20 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e370d9f3-de3b-4ccd-859c-72c0e4235431" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10367" - ], - "x-ms-request-id": [ - "7603d128-8b2a-403c-9099-f651f621f47e" - ], - "x-ms-correlation-request-id": [ - "7603d128-8b2a-403c-9099-f651f621f47e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173521Z:7603d128-8b2a-403c-9099-f651f621f47e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:20 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "39c69333-2758-4ed1-b23a-85a74eaac30d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10366" - ], - "x-ms-request-id": [ - "d7909bd2-cce7-4860-878d-03f2dec78de2" - ], - "x-ms-correlation-request-id": [ - "d7909bd2-cce7-4860-878d-03f2dec78de2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173521Z:d7909bd2-cce7-4860-878d-03f2dec78de2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:21 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9252972b-1608-4b69-8f7e-d8b569101a83" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10365" - ], - "x-ms-request-id": [ - "c3c90e89-128a-4825-88cf-ead5955642bf" - ], - "x-ms-correlation-request-id": [ - "c3c90e89-128a-4825-88cf-ead5955642bf" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173521Z:c3c90e89-128a-4825-88cf-ead5955642bf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:21 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a9f64ff-e9ed-47cb-8214-5ded9c27cc65" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10364" - ], - "x-ms-request-id": [ - "5b552d83-1a3a-4a0b-a55d-f6486ac03029" - ], - "x-ms-correlation-request-id": [ - "5b552d83-1a3a-4a0b-a55d-f6486ac03029" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173522Z:5b552d83-1a3a-4a0b-a55d-f6486ac03029" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:21 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "78eabe53-010b-448a-9473-61a91c08c90b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10363" - ], - "x-ms-request-id": [ - "43626952-7a39-4a6a-8f8f-65ab65cfb775" - ], - "x-ms-correlation-request-id": [ - "43626952-7a39-4a6a-8f8f-65ab65cfb775" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173522Z:43626952-7a39-4a6a-8f8f-65ab65cfb775" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:21 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70f43304-02a9-4d5d-8aa4-0da2dc001115" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10362" - ], - "x-ms-request-id": [ - "93478ddf-38e5-4b9f-ab5c-1b96ad17aa89" - ], - "x-ms-correlation-request-id": [ - "93478ddf-38e5-4b9f-ab5c-1b96ad17aa89" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173522Z:93478ddf-38e5-4b9f-ab5c-1b96ad17aa89" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:22 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c6e0712-b5df-4b65-93f8-169d1bf7aa13" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10361" - ], - "x-ms-request-id": [ - "d8a3c424-4412-4d76-98a7-f385a728976e" - ], - "x-ms-correlation-request-id": [ - "d8a3c424-4412-4d76-98a7-f385a728976e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173523Z:d8a3c424-4412-4d76-98a7-f385a728976e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:22 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ec5b7c7f-9f27-44bc-8d56-36b6f339963a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10360" - ], - "x-ms-request-id": [ - "905ed17f-b970-45c2-9362-aea80c52df51" - ], - "x-ms-correlation-request-id": [ - "905ed17f-b970-45c2-9362-aea80c52df51" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173523Z:905ed17f-b970-45c2-9362-aea80c52df51" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:22 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7beb1fae-834a-490f-8181-8a4af38a472e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10359" - ], - "x-ms-request-id": [ - "0327a93b-39df-480f-b4cb-c7ccee6b2481" - ], - "x-ms-correlation-request-id": [ - "0327a93b-39df-480f-b4cb-c7ccee6b2481" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173523Z:0327a93b-39df-480f-b4cb-c7ccee6b2481" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:22 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f5c6b748-e0d5-4f4e-8369-28e3fed97cdf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10358" - ], - "x-ms-request-id": [ - "caf5f93a-1eac-4cfd-9001-727e152de9ef" - ], - "x-ms-correlation-request-id": [ - "caf5f93a-1eac-4cfd-9001-727e152de9ef" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173523Z:caf5f93a-1eac-4cfd-9001-727e152de9ef" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:23 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c382a523-e8b1-4cdc-a91d-a6ee4554027a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10357" - ], - "x-ms-request-id": [ - "6ba24e98-df0e-4f73-881d-aef67dc93b6e" - ], - "x-ms-correlation-request-id": [ - "6ba24e98-df0e-4f73-881d-aef67dc93b6e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173524Z:6ba24e98-df0e-4f73-881d-aef67dc93b6e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:23 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8053b5db-de3d-4611-89d1-d1c3b9617236" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10356" - ], - "x-ms-request-id": [ - "10097d04-7d3b-4d88-a176-8aaed6b3c81e" - ], - "x-ms-correlation-request-id": [ - "10097d04-7d3b-4d88-a176-8aaed6b3c81e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173524Z:10097d04-7d3b-4d88-a176-8aaed6b3c81e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:23 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1e923582-5e7e-407b-a9b4-93073925f83c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10355" - ], - "x-ms-request-id": [ - "6d0163aa-0a8d-4465-bf87-83a7eadbdf9c" - ], - "x-ms-correlation-request-id": [ - "6d0163aa-0a8d-4465-bf87-83a7eadbdf9c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173524Z:6d0163aa-0a8d-4465-bf87-83a7eadbdf9c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:24 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4891db80-17b3-4b84-9459-caa9dfb88aeb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10354" - ], - "x-ms-request-id": [ - "76620089-14da-4f2a-9e45-9d2ac88427fd" - ], - "x-ms-correlation-request-id": [ - "76620089-14da-4f2a-9e45-9d2ac88427fd" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173524Z:76620089-14da-4f2a-9e45-9d2ac88427fd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:24 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ad62ddf-360e-4cad-ab7f-373747611d0e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10353" - ], - "x-ms-request-id": [ - "cbee4fcf-de30-48de-83e3-5229d9b9b37c" - ], - "x-ms-correlation-request-id": [ - "cbee4fcf-de30-48de-83e3-5229d9b9b37c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173525Z:cbee4fcf-de30-48de-83e3-5229d9b9b37c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:24 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c4b01ce-8601-4310-95e1-c4c39449c113" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10352" - ], - "x-ms-request-id": [ - "77407b2a-46ac-4da5-83ef-a109485d62e8" - ], - "x-ms-correlation-request-id": [ - "77407b2a-46ac-4da5-83ef-a109485d62e8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173525Z:77407b2a-46ac-4da5-83ef-a109485d62e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:24 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "79f9b5f1-a8e7-4f8a-9867-63fe75e071eb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10351" - ], - "x-ms-request-id": [ - "cdec1102-095a-4545-a54b-7c4629b31005" - ], - "x-ms-correlation-request-id": [ - "cdec1102-095a-4545-a54b-7c4629b31005" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173525Z:cdec1102-095a-4545-a54b-7c4629b31005" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:25 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a0b58b8-b733-4ecb-b1da-067ae2621c4d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10350" - ], - "x-ms-request-id": [ - "38313d7c-6593-4e82-b5a3-7dd6dbe3d517" - ], - "x-ms-correlation-request-id": [ - "38313d7c-6593-4e82-b5a3-7dd6dbe3d517" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173525Z:38313d7c-6593-4e82-b5a3-7dd6dbe3d517" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:25 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6077aca7-3512-4999-ba75-b1c2627c29bf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10349" - ], - "x-ms-request-id": [ - "30fb4d2f-4ad0-4450-819a-d0b7d4ed71d7" - ], - "x-ms-correlation-request-id": [ - "30fb4d2f-4ad0-4450-819a-d0b7d4ed71d7" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173526Z:30fb4d2f-4ad0-4450-819a-d0b7d4ed71d7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:25 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2109706-54e9-4627-8d72-61067208dd95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10348" - ], - "x-ms-request-id": [ - "9111ab0b-e38d-49e7-a6fa-9960762e957f" - ], - "x-ms-correlation-request-id": [ - "9111ab0b-e38d-49e7-a6fa-9960762e957f" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173526Z:9111ab0b-e38d-49e7-a6fa-9960762e957f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:25 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b9daae0e-c8cd-46c7-b131-ba3754ca5074" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10347" - ], - "x-ms-request-id": [ - "9afd40e6-b672-4f58-9c03-f1f0e04fac9b" - ], - "x-ms-correlation-request-id": [ - "9afd40e6-b672-4f58-9c03-f1f0e04fac9b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173526Z:9afd40e6-b672-4f58-9c03-f1f0e04fac9b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:26 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71a588bf-b8e4-429e-a874-1f612d31ae36" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10346" - ], - "x-ms-request-id": [ - "a245ab91-46e0-447e-b84b-2ea2afe9e360" - ], - "x-ms-correlation-request-id": [ - "a245ab91-46e0-447e-b84b-2ea2afe9e360" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173527Z:a245ab91-46e0-447e-b84b-2ea2afe9e360" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:26 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3aea516e-2592-4989-ae5e-ef5f03934f9b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10345" - ], - "x-ms-request-id": [ - "c8ea4ccd-b7d2-4b26-9dcb-378264253e75" - ], - "x-ms-correlation-request-id": [ - "c8ea4ccd-b7d2-4b26-9dcb-378264253e75" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173527Z:c8ea4ccd-b7d2-4b26-9dcb-378264253e75" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:26 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f0416545-e914-4962-9df1-c535452d546e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10344" - ], - "x-ms-request-id": [ - "97cc3ecc-da6f-4713-99f5-b79607de1b03" - ], - "x-ms-correlation-request-id": [ - "97cc3ecc-da6f-4713-99f5-b79607de1b03" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173527Z:97cc3ecc-da6f-4713-99f5-b79607de1b03" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:26 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "65b05f06-ce0d-419f-bf3b-09d525421d04" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10343" - ], - "x-ms-request-id": [ - "31afa242-dfc4-484e-a257-21b90d72fe6e" - ], - "x-ms-correlation-request-id": [ - "31afa242-dfc4-484e-a257-21b90d72fe6e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173527Z:31afa242-dfc4-484e-a257-21b90d72fe6e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:27 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ce09aba-8b88-47fd-a5d7-dab2d0b48ffb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10342" - ], - "x-ms-request-id": [ - "7690f643-1277-4a4b-a5da-eafac36370bc" - ], - "x-ms-correlation-request-id": [ - "7690f643-1277-4a4b-a5da-eafac36370bc" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173528Z:7690f643-1277-4a4b-a5da-eafac36370bc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:27 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e56043be-349d-48f4-9084-9e9723554c95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10341" - ], - "x-ms-request-id": [ - "b36c2f5b-5242-4208-bf09-29bb2c1a7345" - ], - "x-ms-correlation-request-id": [ - "b36c2f5b-5242-4208-bf09-29bb2c1a7345" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173528Z:b36c2f5b-5242-4208-bf09-29bb2c1a7345" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:27 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf0b3ca9-84fa-4660-b2d8-137c599a4c5a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10340" - ], - "x-ms-request-id": [ - "5470f5bf-125b-4af5-8215-46d5b964875c" - ], - "x-ms-correlation-request-id": [ - "5470f5bf-125b-4af5-8215-46d5b964875c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173528Z:5470f5bf-125b-4af5-8215-46d5b964875c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:27 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1cbdc51d-abcb-4632-b94b-c3195156fa43" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10339" - ], - "x-ms-request-id": [ - "0e15c4b6-b4d8-49bc-94ac-42db4b0fac23" - ], - "x-ms-correlation-request-id": [ - "0e15c4b6-b4d8-49bc-94ac-42db4b0fac23" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173528Z:0e15c4b6-b4d8-49bc-94ac-42db4b0fac23" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:28 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eafdafc1-674b-44d9-a838-c11ae78e70e9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10338" - ], - "x-ms-request-id": [ - "4e5f532d-52ee-4ce6-836f-60970b1e783d" - ], - "x-ms-correlation-request-id": [ - "4e5f532d-52ee-4ce6-836f-60970b1e783d" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173529Z:4e5f532d-52ee-4ce6-836f-60970b1e783d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:28 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "17704db3-9c25-4d45-894b-50c9aa8c2a86" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10337" - ], - "x-ms-request-id": [ - "8635bf31-535c-46cb-aada-9a2eb0cbd0f0" - ], - "x-ms-correlation-request-id": [ - "8635bf31-535c-46cb-aada-9a2eb0cbd0f0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173529Z:8635bf31-535c-46cb-aada-9a2eb0cbd0f0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:28 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cf758af7-fba0-4a84-a5d4-563ebea116de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10336" - ], - "x-ms-request-id": [ - "eba210ef-8e98-4bbe-bdc2-c8073a05bbc4" - ], - "x-ms-correlation-request-id": [ - "eba210ef-8e98-4bbe-bdc2-c8073a05bbc4" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173529Z:eba210ef-8e98-4bbe-bdc2-c8073a05bbc4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:28 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ffacc41-4037-42d6-a5be-36146ec52995" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10335" - ], - "x-ms-request-id": [ - "3c0aaed6-07e6-4d1f-99cf-692edf277258" - ], - "x-ms-correlation-request-id": [ - "3c0aaed6-07e6-4d1f-99cf-692edf277258" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173529Z:3c0aaed6-07e6-4d1f-99cf-692edf277258" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:29 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3a5fcd7-4f09-47db-a5b4-87d552675dc1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10334" - ], - "x-ms-request-id": [ - "80f74894-f17e-4e45-846e-fa6d67d7c83c" - ], - "x-ms-correlation-request-id": [ - "80f74894-f17e-4e45-846e-fa6d67d7c83c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173530Z:80f74894-f17e-4e45-846e-fa6d67d7c83c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:29 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "933284c0-563f-4491-841b-b7901d8a064d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10333" - ], - "x-ms-request-id": [ - "161bee07-c9ed-46b8-a0f3-d16a521fb5a0" - ], - "x-ms-correlation-request-id": [ - "161bee07-c9ed-46b8-a0f3-d16a521fb5a0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173530Z:161bee07-c9ed-46b8-a0f3-d16a521fb5a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:29 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7414d8bd-4580-4327-b3b9-f31c24592e3f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10332" - ], - "x-ms-request-id": [ - "73b4d0be-5c25-4151-ad27-bd52861b8a06" - ], - "x-ms-correlation-request-id": [ - "73b4d0be-5c25-4151-ad27-bd52861b8a06" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173530Z:73b4d0be-5c25-4151-ad27-bd52861b8a06" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:29 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb21dee6-0f41-48d0-986b-9cda33e11b05" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10331" - ], - "x-ms-request-id": [ - "ea22c965-51b3-4ff9-9c81-c42ea68448e8" - ], - "x-ms-correlation-request-id": [ - "ea22c965-51b3-4ff9-9c81-c42ea68448e8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173531Z:ea22c965-51b3-4ff9-9c81-c42ea68448e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:30 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "207a498d-2529-41f4-be11-c888920c6890" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10330" - ], - "x-ms-request-id": [ - "a080a077-2f8f-415f-9558-2c81e927cbe9" - ], - "x-ms-correlation-request-id": [ - "a080a077-2f8f-415f-9558-2c81e927cbe9" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173531Z:a080a077-2f8f-415f-9558-2c81e927cbe9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:30 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d219d11e-1104-462c-a05a-85df8047ae4f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10329" - ], - "x-ms-request-id": [ - "60bc3018-18e6-471d-b026-c98b22375cba" - ], - "x-ms-correlation-request-id": [ - "60bc3018-18e6-471d-b026-c98b22375cba" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173531Z:60bc3018-18e6-471d-b026-c98b22375cba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:30 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "39ccdac7-37aa-46d9-a07d-29661b66305c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10328" - ], - "x-ms-request-id": [ - "a3574b52-1bac-4051-9e8b-e02af6133bae" - ], - "x-ms-correlation-request-id": [ - "a3574b52-1bac-4051-9e8b-e02af6133bae" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173531Z:a3574b52-1bac-4051-9e8b-e02af6133bae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:30 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5fbf2cd9-be44-4eb0-92e7-95f4cc00e6fb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10327" - ], - "x-ms-request-id": [ - "b959c164-9dca-404a-acdd-3c2155299cf8" - ], - "x-ms-correlation-request-id": [ - "b959c164-9dca-404a-acdd-3c2155299cf8" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173532Z:b959c164-9dca-404a-acdd-3c2155299cf8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:31 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d5ffd00-491d-44cf-bed4-aa641f6ca4f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10326" - ], - "x-ms-request-id": [ - "b827a63d-1864-45ff-a2b4-bc4f2fc0127e" - ], - "x-ms-correlation-request-id": [ - "b827a63d-1864-45ff-a2b4-bc4f2fc0127e" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173532Z:b827a63d-1864-45ff-a2b4-bc4f2fc0127e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:31 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa7f2766-de03-4cd7-ba1c-6ca729153f95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10325" - ], - "x-ms-request-id": [ - "223f1b5a-7809-48f6-94fc-fd3bd13fa1ad" - ], - "x-ms-correlation-request-id": [ - "223f1b5a-7809-48f6-94fc-fd3bd13fa1ad" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173532Z:223f1b5a-7809-48f6-94fc-fd3bd13fa1ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:31 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e08aba83-a356-41ff-9b15-0aba6f7d2b4f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10324" - ], - "x-ms-request-id": [ - "034d3b08-addf-4b61-9097-ff369bdcf3ac" - ], - "x-ms-correlation-request-id": [ - "034d3b08-addf-4b61-9097-ff369bdcf3ac" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173532Z:034d3b08-addf-4b61-9097-ff369bdcf3ac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:31 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c206ea8-5130-4be6-a52c-5221d4906721" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10323" - ], - "x-ms-request-id": [ - "6630cf3d-9d01-46d1-b406-bf8144a3bfb0" - ], - "x-ms-correlation-request-id": [ - "6630cf3d-9d01-46d1-b406-bf8144a3bfb0" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173533Z:6630cf3d-9d01-46d1-b406-bf8144a3bfb0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:32 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "64810dea-4485-4dfc-ae31-b8ac6d774641" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10322" - ], - "x-ms-request-id": [ - "99ae63bb-bffc-4479-b49c-bdfffcd257e6" - ], - "x-ms-correlation-request-id": [ - "99ae63bb-bffc-4479-b49c-bdfffcd257e6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173533Z:99ae63bb-bffc-4479-b49c-bdfffcd257e6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:32 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c1fd8136-ea96-4b6c-80ce-d513ded184d2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10321" - ], - "x-ms-request-id": [ - "1d9e20f5-a7cc-45fc-b645-cfd1b777c547" - ], - "x-ms-correlation-request-id": [ - "1d9e20f5-a7cc-45fc-b645-cfd1b777c547" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173533Z:1d9e20f5-a7cc-45fc-b645-cfd1b777c547" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:32 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f28588cd-d08b-4082-a0fa-21de43a4f355" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10320" - ], - "x-ms-request-id": [ - "bdd0307f-f546-4613-90dc-fef22bdf24ac" - ], - "x-ms-correlation-request-id": [ - "bdd0307f-f546-4613-90dc-fef22bdf24ac" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173533Z:bdd0307f-f546-4613-90dc-fef22bdf24ac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:33 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c61884ea-e2e3-4d89-a2f2-3970a24d942c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10319" - ], - "x-ms-request-id": [ - "3328685e-7c33-4f9e-b17f-a7cd939e6f9b" - ], - "x-ms-correlation-request-id": [ - "3328685e-7c33-4f9e-b17f-a7cd939e6f9b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173534Z:3328685e-7c33-4f9e-b17f-a7cd939e6f9b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:33 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b87d1371-4024-4850-b5ec-b457e630126e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10318" - ], - "x-ms-request-id": [ - "55f7b1f3-f066-4973-a285-8bb9537c8121" - ], - "x-ms-correlation-request-id": [ - "55f7b1f3-f066-4973-a285-8bb9537c8121" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173534Z:55f7b1f3-f066-4973-a285-8bb9537c8121" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:33 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "be142e41-3fe6-42fd-85d4-7afc4ab4f9a7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10317" - ], - "x-ms-request-id": [ - "2065c633-6cc9-4994-b8f8-4a6683e8763b" - ], - "x-ms-correlation-request-id": [ - "2065c633-6cc9-4994-b8f8-4a6683e8763b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173534Z:2065c633-6cc9-4994-b8f8-4a6683e8763b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:33 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23b322d2-b811-4e81-9aed-ebb5738e6000" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10316" - ], - "x-ms-request-id": [ - "a92bc760-15b5-4a57-81dc-60e55887661b" - ], - "x-ms-correlation-request-id": [ - "a92bc760-15b5-4a57-81dc-60e55887661b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173534Z:a92bc760-15b5-4a57-81dc-60e55887661b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:34 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1bee1d30-2a33-49db-beb3-91daa5911432" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10315" - ], - "x-ms-request-id": [ - "4f478b54-a7a8-4156-b376-8e75cfca2826" - ], - "x-ms-correlation-request-id": [ - "4f478b54-a7a8-4156-b376-8e75cfca2826" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173535Z:4f478b54-a7a8-4156-b376-8e75cfca2826" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:34 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "85adb271-374b-44b7-a366-3573e9cc1f79" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10314" - ], - "x-ms-request-id": [ - "d7dc9cf8-f199-4023-ae7f-ff03738f52c2" - ], - "x-ms-correlation-request-id": [ - "d7dc9cf8-f199-4023-ae7f-ff03738f52c2" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173535Z:d7dc9cf8-f199-4023-ae7f-ff03738f52c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:34 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8600d496-6af1-4967-88a3-6070f96feda2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10313" - ], - "x-ms-request-id": [ - "4cedea4c-64a0-4d84-84f3-c60a1701e694" - ], - "x-ms-correlation-request-id": [ - "4cedea4c-64a0-4d84-84f3-c60a1701e694" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173535Z:4cedea4c-64a0-4d84-84f3-c60a1701e694" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:34 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2bbf1c7c-193f-493d-bcff-af49e425281f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10312" - ], - "x-ms-request-id": [ - "a79f5d9f-b7d3-4849-9dc7-62f1e73e0221" - ], - "x-ms-correlation-request-id": [ - "a79f5d9f-b7d3-4849-9dc7-62f1e73e0221" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173536Z:a79f5d9f-b7d3-4849-9dc7-62f1e73e0221" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:35 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "74884e18-59a8-44b4-a6df-f2ea65c2a18a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10311" - ], - "x-ms-request-id": [ - "57362285-b14e-4df4-8db0-ed4f681e30b3" - ], - "x-ms-correlation-request-id": [ - "57362285-b14e-4df4-8db0-ed4f681e30b3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173536Z:57362285-b14e-4df4-8db0-ed4f681e30b3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:35 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "26933819-c17c-4581-ba24-7663f675eece" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10310" - ], - "x-ms-request-id": [ - "6746916a-a58a-483b-9ef6-471744f90dd6" - ], - "x-ms-correlation-request-id": [ - "6746916a-a58a-483b-9ef6-471744f90dd6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173536Z:6746916a-a58a-483b-9ef6-471744f90dd6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:35 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1d17b861-5a00-4e2a-881a-324f57aa0045" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10309" - ], - "x-ms-request-id": [ - "3f0037f3-f2e5-4c4a-b368-61d2380d26c6" - ], - "x-ms-correlation-request-id": [ - "3f0037f3-f2e5-4c4a-b368-61d2380d26c6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173536Z:3f0037f3-f2e5-4c4a-b368-61d2380d26c6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:35 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f2b58291-fba2-42c8-ae15-1b927c843adc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10308" - ], - "x-ms-request-id": [ - "4b4ab8b6-4c2c-4cb4-86ee-d192e2ce1e3a" - ], - "x-ms-correlation-request-id": [ - "4b4ab8b6-4c2c-4cb4-86ee-d192e2ce1e3a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173537Z:4b4ab8b6-4c2c-4cb4-86ee-d192e2ce1e3a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:36 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3beaff7e-de85-47de-bfe5-11f79d4e42e2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10307" - ], - "x-ms-request-id": [ - "57bd5513-9ea4-4911-bdc4-1aaecc660385" - ], - "x-ms-correlation-request-id": [ - "57bd5513-9ea4-4911-bdc4-1aaecc660385" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173537Z:57bd5513-9ea4-4911-bdc4-1aaecc660385" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:36 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "30440196-d1ba-4f77-bba0-3feabc5ea127" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10306" - ], - "x-ms-request-id": [ - "db035283-f921-41b1-94a4-ed31ff75327b" - ], - "x-ms-correlation-request-id": [ - "db035283-f921-41b1-94a4-ed31ff75327b" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173537Z:db035283-f921-41b1-94a4-ed31ff75327b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:36 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bba1e4dc-1dc1-4f20-9577-391cb3f0378f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10305" - ], - "x-ms-request-id": [ - "bdf0eec5-0a81-4620-8de7-caffb2fd6401" - ], - "x-ms-correlation-request-id": [ - "bdf0eec5-0a81-4620-8de7-caffb2fd6401" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173538Z:bdf0eec5-0a81-4620-8de7-caffb2fd6401" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 17:35:38 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections?api-version=2019-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDcvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71c4ba16-f160-49d9-a91c-ebf1fac825b9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "10304" + "11946" ], "x-ms-request-id": [ - "c9a01116-0d0d-4c89-9af6-50f7796b16a7" + "7bc37695-29f8-498d-bcd9-77c6106ed881" ], "x-ms-correlation-request-id": [ - "c9a01116-0d0d-4c89-9af6-50f7796b16a7" + "7bc37695-29f8-498d-bcd9-77c6106ed881" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173538Z:c9a01116-0d0d-4c89-9af6-50f7796b16a7" + "JIOINDIACENTRAL:20220512T083827Z:7bc37695-29f8-498d-bcd9-77c6106ed881" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:38 GMT" + "Thu, 12 May 2022 08:38:27 GMT" ], "Content-Length": [ "603" @@ -108054,16 +35355,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a62f4539-84f4-4b89-923a-f998f89bc433" + "48f8a68a-3aba-4fb4-a1e5-0f778b5b1cd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108083,22 +35384,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10303" + "11930" ], "x-ms-request-id": [ - "1bc5348e-41a6-4b16-9330-d52c160575c4" + "8b563895-227f-4fd0-b692-1d91a55ab238" ], "x-ms-correlation-request-id": [ - "1bc5348e-41a6-4b16-9330-d52c160575c4" + "8b563895-227f-4fd0-b692-1d91a55ab238" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173538Z:1bc5348e-41a6-4b16-9330-d52c160575c4" + "JIOINDIACENTRAL:20220512T083828Z:8b563895-227f-4fd0-b692-1d91a55ab238" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:38 GMT" + "Thu, 12 May 2022 08:38:28 GMT" ], "Content-Length": [ "603" @@ -108117,16 +35418,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8efb2065-ff20-4c4b-a694-f02862912440" + "5c7a2ae7-d929-462b-a495-d065021c4534" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108146,22 +35447,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10302" + "11940" ], "x-ms-request-id": [ - "cd195125-387f-41f2-9024-cfb4be2dad4d" + "c7dd6cfb-dde0-4022-bc36-fc1767a453ba" ], "x-ms-correlation-request-id": [ - "cd195125-387f-41f2-9024-cfb4be2dad4d" + "c7dd6cfb-dde0-4022-bc36-fc1767a453ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173538Z:cd195125-387f-41f2-9024-cfb4be2dad4d" + "JIOINDIACENTRAL:20220512T083829Z:c7dd6cfb-dde0-4022-bc36-fc1767a453ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:38 GMT" + "Thu, 12 May 2022 08:38:28 GMT" ], "Content-Length": [ "603" @@ -108180,16 +35481,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1d9e06f-1ffa-47e3-a133-b8fd3ea39d93" + "fe968047-63d8-4e42-8eae-9893b0782a93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108209,22 +35510,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10301" + "11945" ], "x-ms-request-id": [ - "4fba7273-b91f-4a20-a645-ddf908c69bcb" + "9702ece7-95ec-4be3-9022-6de9167b8200" ], "x-ms-correlation-request-id": [ - "4fba7273-b91f-4a20-a645-ddf908c69bcb" + "9702ece7-95ec-4be3-9022-6de9167b8200" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173539Z:4fba7273-b91f-4a20-a645-ddf908c69bcb" + "JIOINDIACENTRAL:20220512T083829Z:9702ece7-95ec-4be3-9022-6de9167b8200" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:39 GMT" + "Thu, 12 May 2022 08:38:29 GMT" ], "Content-Length": [ "603" @@ -108243,16 +35544,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25892813-418e-47ec-9ec6-a1e556dfad8a" + "fd1a667f-59b4-4436-a0e9-0a00afb1f00e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108272,22 +35573,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10300" + "11938" ], "x-ms-request-id": [ - "a5d04c69-532f-4855-9d6d-e0f5be26670a" + "1317c16f-4041-4c82-a338-12ceb0fbd1e2" ], "x-ms-correlation-request-id": [ - "a5d04c69-532f-4855-9d6d-e0f5be26670a" + "1317c16f-4041-4c82-a338-12ceb0fbd1e2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173539Z:a5d04c69-532f-4855-9d6d-e0f5be26670a" + "JIOINDIACENTRAL:20220512T083830Z:1317c16f-4041-4c82-a338-12ceb0fbd1e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:39 GMT" + "Thu, 12 May 2022 08:38:30 GMT" ], "Content-Length": [ "603" @@ -108306,16 +35607,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfd01ea2-4e5d-4485-bb93-353d565e9ad7" + "d32e8f71-7187-44c2-970e-e1d3980a1724" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108335,22 +35636,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10299" + "11939" ], "x-ms-request-id": [ - "0f5e3605-38ae-4a59-8d35-0663e873f68d" + "0280f8d1-65a0-4dab-9f28-2de8c1121846" ], "x-ms-correlation-request-id": [ - "0f5e3605-38ae-4a59-8d35-0663e873f68d" + "0280f8d1-65a0-4dab-9f28-2de8c1121846" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173539Z:0f5e3605-38ae-4a59-8d35-0663e873f68d" + "JIOINDIACENTRAL:20220512T083831Z:0280f8d1-65a0-4dab-9f28-2de8c1121846" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:39 GMT" + "Thu, 12 May 2022 08:38:30 GMT" ], "Content-Length": [ "603" @@ -108369,16 +35670,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16d6ca23-4bfb-476f-88c0-74908693c37b" + "6f426250-34f8-49d8-b128-bad349bad4df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108398,22 +35699,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10298" + "11948" ], "x-ms-request-id": [ - "2d30c0c4-5787-440c-a114-43312123b10d" + "eacd8e70-edef-4d33-8e73-ccd0e10bbc4f" ], "x-ms-correlation-request-id": [ - "2d30c0c4-5787-440c-a114-43312123b10d" + "eacd8e70-edef-4d33-8e73-ccd0e10bbc4f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173539Z:2d30c0c4-5787-440c-a114-43312123b10d" + "JIOINDIACENTRAL:20220512T083832Z:eacd8e70-edef-4d33-8e73-ccd0e10bbc4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:39 GMT" + "Thu, 12 May 2022 08:38:32 GMT" ], "Content-Length": [ "603" @@ -108432,16 +35733,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11e61e8c-c6d6-41a3-bb3a-89ce6ea98d56" + "8ede5ca4-30de-4f6b-a1d3-0155b7926b38" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108461,22 +35762,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10297" + "11929" ], "x-ms-request-id": [ - "45cc1139-4661-4dc5-9086-5bdef348070d" + "39c86486-1b75-49a8-8a46-4537897147e1" ], "x-ms-correlation-request-id": [ - "45cc1139-4661-4dc5-9086-5bdef348070d" + "39c86486-1b75-49a8-8a46-4537897147e1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173540Z:45cc1139-4661-4dc5-9086-5bdef348070d" + "JIOINDIACENTRAL:20220512T083833Z:39c86486-1b75-49a8-8a46-4537897147e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:40 GMT" + "Thu, 12 May 2022 08:38:32 GMT" ], "Content-Length": [ "603" @@ -108495,16 +35796,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21625f52-7eca-47d6-a898-223907cdab47" + "552e861c-fb44-44ea-8981-ea02e90113d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108524,22 +35825,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10296" + "11944" ], "x-ms-request-id": [ - "fc3deeac-c52b-4f06-b516-ffc1e5453af5" + "089b8b1c-4645-48fc-911e-1b20e58d0c73" ], "x-ms-correlation-request-id": [ - "fc3deeac-c52b-4f06-b516-ffc1e5453af5" + "089b8b1c-4645-48fc-911e-1b20e58d0c73" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173540Z:fc3deeac-c52b-4f06-b516-ffc1e5453af5" + "JIOINDIACENTRAL:20220512T083833Z:089b8b1c-4645-48fc-911e-1b20e58d0c73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:40 GMT" + "Thu, 12 May 2022 08:38:33 GMT" ], "Content-Length": [ "603" @@ -108558,16 +35859,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40b40ae0-767c-4130-ac08-352726e03fd8" + "e425c019-25ab-46e7-9331-bd890a154347" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108587,22 +35888,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10295" + "11943" ], "x-ms-request-id": [ - "5df6025c-0a43-4ed2-8b8b-084729494f09" + "7a3d225c-9914-4f53-950d-7a8de1b4834e" ], "x-ms-correlation-request-id": [ - "5df6025c-0a43-4ed2-8b8b-084729494f09" + "7a3d225c-9914-4f53-950d-7a8de1b4834e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173540Z:5df6025c-0a43-4ed2-8b8b-084729494f09" + "JIOINDIACENTRAL:20220512T083834Z:7a3d225c-9914-4f53-950d-7a8de1b4834e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:40 GMT" + "Thu, 12 May 2022 08:38:34 GMT" ], "Content-Length": [ "603" @@ -108621,16 +35922,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c52a3bcb-1af2-4210-9bdb-af24ca671f5d" + "4597d1b1-69d6-4238-90b8-a1416c74e1a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108650,22 +35951,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10294" + "11942" ], "x-ms-request-id": [ - "36874b7e-b39e-4135-803e-d3bb043e5133" + "f6f6fcae-ab0f-40d7-8674-b4cf635bbd3f" ], "x-ms-correlation-request-id": [ - "36874b7e-b39e-4135-803e-d3bb043e5133" + "f6f6fcae-ab0f-40d7-8674-b4cf635bbd3f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173541Z:36874b7e-b39e-4135-803e-d3bb043e5133" + "JIOINDIACENTRAL:20220512T083835Z:f6f6fcae-ab0f-40d7-8674-b4cf635bbd3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:40 GMT" + "Thu, 12 May 2022 08:38:34 GMT" ], "Content-Length": [ "603" @@ -108684,16 +35985,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f56c9610-1613-41c5-8841-77f934e60300" + "e0e789e7-fbd5-4ca1-883c-c7d78b5af6f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108713,22 +36014,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10293" + "11928" ], "x-ms-request-id": [ - "b4a570df-6603-4334-bf82-1df5151ababa" + "a477732b-52ea-49f2-a624-ab6726fdd48b" ], "x-ms-correlation-request-id": [ - "b4a570df-6603-4334-bf82-1df5151ababa" + "a477732b-52ea-49f2-a624-ab6726fdd48b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173541Z:b4a570df-6603-4334-bf82-1df5151ababa" + "JIOINDIACENTRAL:20220512T083835Z:a477732b-52ea-49f2-a624-ab6726fdd48b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:41 GMT" + "Thu, 12 May 2022 08:38:35 GMT" ], "Content-Length": [ "603" @@ -108747,16 +36048,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38c819a6-e195-4501-891b-5f8e6fe66fde" + "14aac7a0-ab64-4af4-9397-bd849fa206ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108776,22 +36077,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10292" + "11941" ], "x-ms-request-id": [ - "b3b3618b-50c6-4239-8dbb-f65f5cfe0da7" + "81208a48-d8e5-4c00-a53e-0d820a2bd5b5" ], "x-ms-correlation-request-id": [ - "b3b3618b-50c6-4239-8dbb-f65f5cfe0da7" + "81208a48-d8e5-4c00-a53e-0d820a2bd5b5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173541Z:b3b3618b-50c6-4239-8dbb-f65f5cfe0da7" + "JIOINDIACENTRAL:20220512T083836Z:81208a48-d8e5-4c00-a53e-0d820a2bd5b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:41 GMT" + "Thu, 12 May 2022 08:38:36 GMT" ], "Content-Length": [ "603" @@ -108810,16 +36111,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5fe5423-27cb-425b-b671-671569811aa7" + "706d5e91-10d9-4dcc-9c67-90ceaf920c86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108839,22 +36140,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10291" + "11939" ], "x-ms-request-id": [ - "352269c7-99e9-4660-ad3c-faa679ee75df" + "e58aa821-e06c-453e-a106-87f6ce14e3cb" ], "x-ms-correlation-request-id": [ - "352269c7-99e9-4660-ad3c-faa679ee75df" + "e58aa821-e06c-453e-a106-87f6ce14e3cb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173541Z:352269c7-99e9-4660-ad3c-faa679ee75df" + "JIOINDIACENTRAL:20220512T083837Z:e58aa821-e06c-453e-a106-87f6ce14e3cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:41 GMT" + "Thu, 12 May 2022 08:38:36 GMT" ], "Content-Length": [ "603" @@ -108873,16 +36174,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0cc24e5-0fcb-474f-9f28-544aa1140762" + "d998ccc8-c478-46c3-a970-c9274c5acc7b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108902,22 +36203,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10290" + "11927" ], "x-ms-request-id": [ - "61b8ace0-a83a-4328-98a1-1debde5213cf" + "e305ff8c-104c-4c57-9d44-801b773e58f7" ], "x-ms-correlation-request-id": [ - "61b8ace0-a83a-4328-98a1-1debde5213cf" + "e305ff8c-104c-4c57-9d44-801b773e58f7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173542Z:61b8ace0-a83a-4328-98a1-1debde5213cf" + "JIOINDIACENTRAL:20220512T083838Z:e305ff8c-104c-4c57-9d44-801b773e58f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:42 GMT" + "Thu, 12 May 2022 08:38:38 GMT" ], "Content-Length": [ "603" @@ -108936,16 +36237,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b3574ea-82ff-47be-9a49-4c61c03fb4e5" + "a30543f7-1280-4432-9353-aaf53ae08da2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -108965,22 +36266,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10289" + "11927" ], "x-ms-request-id": [ - "9d237633-8469-44a5-8e65-96990fdfe94d" + "4ea2e61f-629f-49c5-a0a9-1b7be6efe269" ], "x-ms-correlation-request-id": [ - "9d237633-8469-44a5-8e65-96990fdfe94d" + "4ea2e61f-629f-49c5-a0a9-1b7be6efe269" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173542Z:9d237633-8469-44a5-8e65-96990fdfe94d" + "JIOINDIACENTRAL:20220512T083839Z:4ea2e61f-629f-49c5-a0a9-1b7be6efe269" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:42 GMT" + "Thu, 12 May 2022 08:38:38 GMT" ], "Content-Length": [ "603" @@ -108999,16 +36300,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e4071cd-b38f-4ac6-90b8-5d37d4ac1822" + "fb1c488a-ae42-4277-bc50-6fbb79a251b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -109028,22 +36329,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10288" + "11926" ], "x-ms-request-id": [ - "1ba220e7-5502-4332-90e1-709f54f00aed" + "e88a8fcc-ae98-4af5-ad53-10c98035ad4d" ], "x-ms-correlation-request-id": [ - "1ba220e7-5502-4332-90e1-709f54f00aed" + "e88a8fcc-ae98-4af5-ad53-10c98035ad4d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173542Z:1ba220e7-5502-4332-90e1-709f54f00aed" + "JIOINDIACENTRAL:20220512T083839Z:e88a8fcc-ae98-4af5-ad53-10c98035ad4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:42 GMT" + "Thu, 12 May 2022 08:38:39 GMT" ], "Content-Length": [ "603" @@ -109062,16 +36363,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6470a978-0635-4c89-a74b-998ebde763f6" + "ab8a1de7-db84-47a1-9224-27a0b4164179" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -109091,22 +36392,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10287" + "11926" ], "x-ms-request-id": [ - "0de7e19c-eefe-4e6a-8d69-5cd36f777f1e" + "0211fbff-a25f-4524-a0b8-e62c1f53d499" ], "x-ms-correlation-request-id": [ - "0de7e19c-eefe-4e6a-8d69-5cd36f777f1e" + "0211fbff-a25f-4524-a0b8-e62c1f53d499" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173542Z:0de7e19c-eefe-4e6a-8d69-5cd36f777f1e" + "JIOINDIACENTRAL:20220512T083840Z:0211fbff-a25f-4524-a0b8-e62c1f53d499" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:42 GMT" + "Thu, 12 May 2022 08:38:40 GMT" ], "Content-Length": [ "603" @@ -109125,16 +36426,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75f07f98-6b2b-4812-bff4-e560cf2aa686" + "0631814b-ad77-430a-bceb-e12d62603e5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -109154,22 +36455,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10286" + "11936" ], "x-ms-request-id": [ - "3050e38a-d312-4130-befc-7f2022c0ebec" + "6419c4b2-9639-4d60-a29c-1820d4d9f37f" ], "x-ms-correlation-request-id": [ - "3050e38a-d312-4130-befc-7f2022c0ebec" + "6419c4b2-9639-4d60-a29c-1820d4d9f37f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173543Z:3050e38a-d312-4130-befc-7f2022c0ebec" + "JIOINDIACENTRAL:20220512T083841Z:6419c4b2-9639-4d60-a29c-1820d4d9f37f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:43 GMT" + "Thu, 12 May 2022 08:38:41 GMT" ], "Content-Length": [ "603" @@ -109188,16 +36489,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c36d18ba-34dd-440d-b18a-cd6b9b0ee9b1" + "4b835dca-05a6-4a2c-b044-c752d2c1569f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -109217,22 +36518,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "10285" + "11938" ], "x-ms-request-id": [ - "a3466cde-b12e-47f9-b27c-95e3404fb23e" + "8f54e916-083c-44f4-adbf-ec7aabece34c" ], "x-ms-correlation-request-id": [ - "a3466cde-b12e-47f9-b27c-95e3404fb23e" + "8f54e916-083c-44f4-adbf-ec7aabece34c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173543Z:a3466cde-b12e-47f9-b27c-95e3404fb23e" + "JIOINDIACENTRAL:20220512T083842Z:8f54e916-083c-44f4-adbf-ec7aabece34c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:43 GMT" + "Thu, 12 May 2022 08:38:42 GMT" ], "Content-Length": [ "12" @@ -109251,16 +36552,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0044b14a-3b9f-4b88-b4e4-f54ce009493c" + "df969366-52e1-4722-9140-9ef9629a865a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -109280,22 +36581,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "9ff140aa-b33a-496c-8cbf-c3ca1e0009b5" + "157a51fd-5e46-41bf-9754-bbed302a189a" ], "x-ms-correlation-request-id": [ - "9ff140aa-b33a-496c-8cbf-c3ca1e0009b5" + "157a51fd-5e46-41bf-9754-bbed302a189a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172758Z:9ff140aa-b33a-496c-8cbf-c3ca1e0009b5" + "JIOINDIACENTRAL:20220512T083048Z:157a51fd-5e46-41bf-9754-bbed302a189a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:57 GMT" + "Thu, 12 May 2022 08:30:48 GMT" ], "Content-Length": [ "590" @@ -109314,16 +36615,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0044b14a-3b9f-4b88-b4e4-f54ce009493c" + "df969366-52e1-4722-9140-9ef9629a865a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -109343,22 +36644,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "28e9e584-918e-4184-adc5-7edd29ea5f98" + "ed95017c-f947-4871-80e0-1ebdff22da43" ], "x-ms-correlation-request-id": [ - "28e9e584-918e-4184-adc5-7edd29ea5f98" + "ed95017c-f947-4871-80e0-1ebdff22da43" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172759Z:28e9e584-918e-4184-adc5-7edd29ea5f98" + "JIOINDIACENTRAL:20220512T083052Z:ed95017c-f947-4871-80e0-1ebdff22da43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:58 GMT" + "Thu, 12 May 2022 08:30:52 GMT" ], "Content-Length": [ "590" @@ -109377,16 +36678,16 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0044b14a-3b9f-4b88-b4e4-f54ce009493c" + "df969366-52e1-4722-9140-9ef9629a865a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -109403,13 +36704,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype/operationResults/c1d2548d-d9be-4da0-9391-54e4382c9ad1?api-version=2019-08-01-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype/operationResults/87168594-1f91-4a8b-99de-5b2c68ba0a0f?api-version=2019-08-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c1d2548d-d9be-4da0-9391-54e4382c9ad1?api-version=2019-08-01-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/87168594-1f91-4a8b-99de-5b2c68ba0a0f?api-version=2019-08-01-preview" ], "x-ms-request-id": [ - "c1d2548d-d9be-4da0-9391-54e4382c9ad1" + "87168594-1f91-4a8b-99de-5b2c68ba0a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109424,16 +36725,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "c7356697-ce9f-4417-9935-019ebce91125" + "8a2f67b6-84ae-4f15-b776-ea5587bc073f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T172759Z:c7356697-ce9f-4417-9935-019ebce91125" + "JIOINDIACENTRAL:20220512T083052Z:8a2f67b6-84ae-4f15-b776-ea5587bc073f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:27:58 GMT" + "Thu, 12 May 2022 08:30:52 GMT" ], "Content-Length": [ "21" @@ -109452,16 +36753,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1c19d26-a1df-4e0a-81f7-ff3c5e3e4d1b" + "67d9dd13-b279-46eb-9f8a-313df814a51c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.57" ] }, "ResponseHeaders": { @@ -109472,13 +36773,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype/operationResults/5308ec8b-6b0c-4dd3-8d0f-d0f7eaa841be?api-version=2019-08-01-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db947/privateEndpointConnections/mype/operationResults/22e411e4-9346-4efc-8ad7-672463b3422b?api-version=2019-08-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/5308ec8b-6b0c-4dd3-8d0f-d0f7eaa841be?api-version=2019-08-01-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/22e411e4-9346-4efc-8ad7-672463b3422b?api-version=2019-08-01-preview" ], "x-ms-request-id": [ - "5308ec8b-6b0c-4dd3-8d0f-d0f7eaa841be" + "22e411e4-9346-4efc-8ad7-672463b3422b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109490,19 +36791,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "e32b85f5-860a-4746-a9ad-f2e5000895da" + "c168270c-02a1-45de-9175-1ee2ec0bb675" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T173515Z:e32b85f5-860a-4746-a9ad-f2e5000895da" + "JIOINDIACENTRAL:20220512T083811Z:c168270c-02a1-45de-9175-1ee2ec0bb675" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:15 GMT" + "Thu, 12 May 2022 08:38:11 GMT" ], "Content-Length": [ "21" @@ -109515,22 +36816,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34a47759-3f4a-4c4e-aa16-966a900b046c" + "18d82125-cc56-47e2-b5cb-3c6e8903b130" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -109541,25 +36842,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/fb8e9977-0105-4a82-8395-bc0a99108de3?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/2ae119fc-f0ed-4ab5-bf90-ae153b031c56?api-version=2021-08-01" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "fb8e9977-0105-4a82-8395-bc0a99108de3" + "2ae119fc-f0ed-4ab5-bf90-ae153b031c56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/fb8e9977-0105-4a82-8395-bc0a99108de3?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/2ae119fc-f0ed-4ab5-bf90-ae153b031c56?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "4a5bf2e4-2fd5-4004-a543-f22e60601aa5" + "2719164d-1984-4591-b21b-b39aa69dab92" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "f1b2c900-26bf-477e-b2d8-56035d567074" + "f81bef8e-a203-4c0e-b781-93558b88e625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109572,13 +36873,13 @@ "14998" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173545Z:4a5bf2e4-2fd5-4004-a543-f22e60601aa5" + "JIOINDIACENTRAL:20220512T083844Z:2719164d-1984-4591-b21b-b39aa69dab92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:44 GMT" + "Thu, 12 May 2022 08:38:43 GMT" ], "Expires": [ "-1" @@ -109591,19 +36892,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/fb8e9977-0105-4a82-8395-bc0a99108de3?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZiOGU5OTc3LTAxMDUtNGE4Mi04Mzk1LWJjMGE5OTEwOGRlMz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/2ae119fc-f0ed-4ab5-bf90-ae153b031c56?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzJhZTExOWZjLWYwZWQtNGFiNS1iZjkwLWFlMTUzYjAzMWM1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34a47759-3f4a-4c4e-aa16-966a900b046c" + "18d82125-cc56-47e2-b5cb-3c6e8903b130" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -109617,13 +36918,13 @@ "10" ], "x-ms-request-id": [ - "0343dd29-b2dd-49e1-bc16-45e58dc0406a" + "8040ea5e-7bcc-43fc-90f9-91bf758c852b" ], "x-ms-correlation-request-id": [ - "6d3c8c09-693a-49cd-8804-3de5eb4cda08" + "bf532812-29bd-4fbd-8a48-b5cddc369df8" ], "x-ms-arm-service-request-id": [ - "a5983f62-d918-4129-b262-9eba0fd70e36" + "f3d10ba7-259d-420f-9449-0063f014bf9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109633,16 +36934,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11940" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173555Z:6d3c8c09-693a-49cd-8804-3de5eb4cda08" + "JIOINDIACENTRAL:20220512T083854Z:bf532812-29bd-4fbd-8a48-b5cddc369df8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:35:55 GMT" + "Thu, 12 May 2022 08:38:54 GMT" ], "Content-Length": [ "30" @@ -109658,19 +36959,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/fb8e9977-0105-4a82-8395-bc0a99108de3?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZiOGU5OTc3LTAxMDUtNGE4Mi04Mzk1LWJjMGE5OTEwOGRlMz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/2ae119fc-f0ed-4ab5-bf90-ae153b031c56?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzJhZTExOWZjLWYwZWQtNGFiNS1iZjkwLWFlMTUzYjAzMWM1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34a47759-3f4a-4c4e-aa16-966a900b046c" + "18d82125-cc56-47e2-b5cb-3c6e8903b130" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -109681,13 +36982,13 @@ "no-cache" ], "x-ms-request-id": [ - "f69583d7-8a67-4fa7-a2fb-e60ebbe0a949" + "c435effc-0736-4f6c-83d5-8560c7636ab4" ], "x-ms-correlation-request-id": [ - "59836673-5904-466e-9446-29f20f4374a8" + "b4e9e58d-103f-45cd-b2ca-05fa466f066c" ], "x-ms-arm-service-request-id": [ - "019d0709-c92e-4f8c-8c79-50560985d019" + "d1835cf2-d77f-4db8-a117-437db932d1fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109697,16 +36998,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11939" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173605Z:59836673-5904-466e-9446-29f20f4374a8" + "JIOINDIACENTRAL:20220512T083905Z:b4e9e58d-103f-45cd-b2ca-05fa466f066c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:36:05 GMT" + "Thu, 12 May 2022 08:39:04 GMT" ], "Content-Length": [ "29" @@ -109722,19 +37023,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/fb8e9977-0105-4a82-8395-bc0a99108de3?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2ZiOGU5OTc3LTAxMDUtNGE4Mi04Mzk1LWJjMGE5OTEwOGRlMz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/2ae119fc-f0ed-4ab5-bf90-ae153b031c56?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzJhZTExOWZjLWYwZWQtNGFiNS1iZjkwLWFlMTUzYjAzMWM1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34a47759-3f4a-4c4e-aa16-966a900b046c" + "18d82125-cc56-47e2-b5cb-3c6e8903b130" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -109745,22 +37046,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/fb8e9977-0105-4a82-8395-bc0a99108de3?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/2ae119fc-f0ed-4ab5-bf90-ae153b031c56?api-version=2021-08-01" ], "x-ms-request-id": [ - "fb8e9977-0105-4a82-8395-bc0a99108de3" + "2ae119fc-f0ed-4ab5-bf90-ae153b031c56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/fb8e9977-0105-4a82-8395-bc0a99108de3?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/2ae119fc-f0ed-4ab5-bf90-ae153b031c56?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "4a5bf2e4-2fd5-4004-a543-f22e60601aa5" + "2719164d-1984-4591-b21b-b39aa69dab92" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "f1b2c900-26bf-477e-b2d8-56035d567074" + "f81bef8e-a203-4c0e-b781-93558b88e625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109770,16 +37071,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11938" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173606Z:43a5c07a-54dc-4117-bd0a-61e242d98fbf" + "JIOINDIACENTRAL:20220512T083905Z:ce516a20-a7bd-4b65-b622-06a1a9212381" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:36:06 GMT" + "Thu, 12 May 2022 08:39:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -109792,22 +37093,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bd0b286-67eb-42b9-91c4-3f3389dcfe90" + "e3294baf-6076-4416-999e-9c8c5709d189" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -109818,25 +37119,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/3cba0417-0790-425e-811d-432b9f4a7d0b?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/dadd6e44-69fa-4338-8d9d-461bb96a8c77?api-version=2021-08-01" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "3cba0417-0790-425e-811d-432b9f4a7d0b" + "dadd6e44-69fa-4338-8d9d-461bb96a8c77" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/3cba0417-0790-425e-811d-432b9f4a7d0b?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/dadd6e44-69fa-4338-8d9d-461bb96a8c77?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "7efb89d4-37ff-465f-991a-5940c4b40bd0" + "d37dd5de-0c33-4c7b-ada1-3708dbb26ccb" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "408e5896-5375-492f-9dc2-bd2a7b7bbc52" + "22ce5816-55a3-4c89-b7d6-0d7c92489ab6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109846,16 +37147,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173607Z:7efb89d4-37ff-465f-991a-5940c4b40bd0" + "CENTRALINDIA:20220512T083907Z:d37dd5de-0c33-4c7b-ada1-3708dbb26ccb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:36:07 GMT" + "Thu, 12 May 2022 08:39:06 GMT" ], "Expires": [ "-1" @@ -109868,19 +37169,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/3cba0417-0790-425e-811d-432b9f4a7d0b?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzNjYmEwNDE3LTA3OTAtNDI1ZS04MTFkLTQzMmI5ZjRhN2QwYj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/dadd6e44-69fa-4338-8d9d-461bb96a8c77?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2RhZGQ2ZTQ0LTY5ZmEtNDMzOC04ZDlkLTQ2MWJiOTZhOGM3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bd0b286-67eb-42b9-91c4-3f3389dcfe90" + "e3294baf-6076-4416-999e-9c8c5709d189" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -109891,13 +37192,13 @@ "no-cache" ], "x-ms-request-id": [ - "9fc09cc5-d89a-4a43-9d57-dc6d0aaee4db" + "d2dbd39f-7188-446b-9f55-7e9d4be864b8" ], "x-ms-correlation-request-id": [ - "55536038-3232-4d5f-814a-afd002d6c3d9" + "ce0a01af-fb7a-467f-914e-4cbeb930fd3f" ], "x-ms-arm-service-request-id": [ - "3e0280c4-ff72-486e-91b1-7196c40a1aaa" + "a466c9cc-dec6-4ef7-9143-d0a012d96975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109907,16 +37208,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173617Z:55536038-3232-4d5f-814a-afd002d6c3d9" + "CENTRALINDIA:20220512T083917Z:ce0a01af-fb7a-467f-914e-4cbeb930fd3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:36:17 GMT" + "Thu, 12 May 2022 08:39:17 GMT" ], "Content-Length": [ "29" @@ -109932,19 +37233,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/3cba0417-0790-425e-811d-432b9f4a7d0b?api-version=2021-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzNjYmEwNDE3LTA3OTAtNDI1ZS04MTFkLTQzMmI5ZjRhN2QwYj9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/dadd6e44-69fa-4338-8d9d-461bb96a8c77?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2RhZGQ2ZTQ0LTY5ZmEtNDMzOC04ZDlkLTQ2MWJiOTZhOGM3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bd0b286-67eb-42b9-91c4-3f3389dcfe90" + "e3294baf-6076-4416-999e-9c8c5709d189" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -109955,22 +37256,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/3cba0417-0790-425e-811d-432b9f4a7d0b?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operationResults/dadd6e44-69fa-4338-8d9d-461bb96a8c77?api-version=2021-08-01" ], "x-ms-request-id": [ - "3cba0417-0790-425e-811d-432b9f4a7d0b" + "dadd6e44-69fa-4338-8d9d-461bb96a8c77" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/3cba0417-0790-425e-811d-432b9f4a7d0b?api-version=2021-05-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus2/operations/dadd6e44-69fa-4338-8d9d-461bb96a8c77?api-version=2021-08-01" ], "x-ms-correlation-request-id": [ - "7efb89d4-37ff-465f-991a-5940c4b40bd0" + "d37dd5de-0c33-4c7b-ada1-3708dbb26ccb" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "408e5896-5375-492f-9dc2-bd2a7b7bbc52" + "22ce5816-55a3-4c89-b7d6-0d7c92489ab6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109980,16 +37281,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T173617Z:58c89c9c-2d86-4021-9bf8-12b820d5f85b" + "CENTRALINDIA:20220512T083917Z:9c2943a0-3df0-4e6a-9107-e9d539a38244" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:36:17 GMT" + "Thu, 12 May 2022 08:39:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraCreateUpdateGetCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraCreateUpdateGetCmdlets.json index c5f9d72d1546..098e2dbb8329 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraCreateUpdateGetCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraCreateUpdateGetCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16313e7b-cbaf-40bb-af67-b151db5c5a25" + "8c3f163c-52c1-48df-916f-c0d915ec8655" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "599eec03-d458-49d0-99f7-fc66fd3365fe" + "a8772980-ffb9-421c-b5dc-9d47e34b02fa" ], "x-ms-correlation-request-id": [ - "599eec03-d458-49d0-99f7-fc66fd3365fe" + "a8772980-ffb9-421c-b5dc-9d47e34b02fa" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165623Z:599eec03-d458-49d0-99f7-fc66fd3365fe" + "CENTRALINDIA:20220512T095857Z:a8772980-ffb9-421c-b5dc-9d47e34b02fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:56:23 GMT" + "Thu, 12 May 2022 09:58:56 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "e8453327-e9a1-4d8a-b1a1-036057c106e1" + "c543a13a-91e7-414d-bff4-df3f4a3e39a3" ], "x-ms-correlation-request-id": [ - "e8453327-e9a1-4d8a-b1a1-036057c106e1" + "c543a13a-91e7-414d-bff4-df3f4a3e39a3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165624Z:e8453327-e9a1-4d8a-b1a1-036057c106e1" + "CENTRALINDIA:20220512T095858Z:c543a13a-91e7-414d-bff4-df3f4a3e39a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:56:24 GMT" + "Thu, 12 May 2022 09:58:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-request-id": [ - "98e5cd49-9afd-4e93-9567-0eeedea60d36" + "fba13907-9ac5-4350-b216-29bf40d897ec" ], "x-ms-correlation-request-id": [ - "98e5cd49-9afd-4e93-9567-0eeedea60d36" + "fba13907-9ac5-4350-b216-29bf40d897ec" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165935Z:98e5cd49-9afd-4e93-9567-0eeedea60d36" + "CENTRALINDIA:20220512T100211Z:fba13907-9ac5-4350-b216-29bf40d897ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:59:34 GMT" + "Thu, 12 May 2022 10:02:10 GMT" ], "Content-Length": [ "2469" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749\",\r\n \"name\": \"cassandra-db2749\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:58:45.8237805Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2749.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2749.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"bb5a7faa-4dd7-477d-b838-82ea38e492f7\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2749-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2749-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2749-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749\",\r\n \"name\": \"cassandra-db2749\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:01:20.5034665Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2749.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2749.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ba411cac-7dd1-4b2d-bb3f-79c7058cdc04\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2749-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2749-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2749-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -219,13 +219,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/operationResults/3c12c000-549e-484b-b1ac-0a2576f6ac14?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/operationResults/3bc065f8-8a97-411f-a3ca-f507d1475701?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "3c12c000-549e-484b-b1ac-0a2576f6ac14" + "3bc065f8-8a97-411f-a3ca-f507d1475701" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c12c000-549e-484b-b1ac-0a2576f6ac14?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bc065f8-8a97-411f-a3ca-f507d1475701?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,41 +240,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "5b89c098-7aa3-4e56-904f-16ee34b28c7f" + "00d76333-530f-4775-97c3-4ebdd05c0e58" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165633Z:5b89c098-7aa3-4e56-904f-16ee34b28c7f" + "CENTRALINDIA:20220512T095909Z:00d76333-530f-4775-97c3-4ebdd05c0e58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:56:33 GMT" + "Thu, 12 May 2022 09:59:08 GMT" ], "Content-Length": [ - "2067" + "2066" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749\",\r\n \"name\": \"cassandra-db2749\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:56:30.9108641Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"bb5a7faa-4dd7-477d-b838-82ea38e492f7\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749\",\r\n \"name\": \"cassandra-db2749\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:59:05.974659Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ba411cac-7dd1-4b2d-bb3f-79c7058cdc04\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2749-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c12c000-549e-484b-b1ac-0a2576f6ac14?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2MxMmMwMDAtNTQ5ZS00ODRiLWIxYWMtMGEyNTc2ZjZhYzE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bc065f8-8a97-411f-a3ca-f507d1475701?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2JjMDY1ZjgtOGE5Ny00MTFmLWEzY2EtZjUwN2QxNDc1NzAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -294,22 +294,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "1c8239bd-8052-4934-a5b7-91583982a5d6" + "3af5da9c-fc51-4d07-aab8-23ea9b23f615" ], "x-ms-correlation-request-id": [ - "1c8239bd-8052-4934-a5b7-91583982a5d6" + "3af5da9c-fc51-4d07-aab8-23ea9b23f615" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165703Z:1c8239bd-8052-4934-a5b7-91583982a5d6" + "CENTRALINDIA:20220512T095939Z:3af5da9c-fc51-4d07-aab8-23ea9b23f615" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:57:03 GMT" + "Thu, 12 May 2022 09:59:38 GMT" ], "Content-Length": [ "21" @@ -322,19 +322,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c12c000-549e-484b-b1ac-0a2576f6ac14?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2MxMmMwMDAtNTQ5ZS00ODRiLWIxYWMtMGEyNTc2ZjZhYzE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bc065f8-8a97-411f-a3ca-f507d1475701?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2JjMDY1ZjgtOGE5Ny00MTFmLWEzY2EtZjUwN2QxNDc1NzAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -354,22 +354,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "50e15ddc-6df3-4115-9b5c-14ac4badf969" + "b81de1da-d9a2-4d6a-8378-f24b487b5cef" ], "x-ms-correlation-request-id": [ - "50e15ddc-6df3-4115-9b5c-14ac4badf969" + "b81de1da-d9a2-4d6a-8378-f24b487b5cef" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165734Z:50e15ddc-6df3-4115-9b5c-14ac4badf969" + "CENTRALINDIA:20220512T100009Z:b81de1da-d9a2-4d6a-8378-f24b487b5cef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:57:33 GMT" + "Thu, 12 May 2022 10:00:09 GMT" ], "Content-Length": [ "21" @@ -382,19 +382,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c12c000-549e-484b-b1ac-0a2576f6ac14?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2MxMmMwMDAtNTQ5ZS00ODRiLWIxYWMtMGEyNTc2ZjZhYzE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bc065f8-8a97-411f-a3ca-f507d1475701?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2JjMDY1ZjgtOGE5Ny00MTFmLWEzY2EtZjUwN2QxNDc1NzAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -414,22 +414,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "036d2b0d-b3a1-414b-913f-9ff01a27c2b7" + "1e8d61f7-c5d4-417e-9d66-c71ae7c546a6" ], "x-ms-correlation-request-id": [ - "036d2b0d-b3a1-414b-913f-9ff01a27c2b7" + "1e8d61f7-c5d4-417e-9d66-c71ae7c546a6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165804Z:036d2b0d-b3a1-414b-913f-9ff01a27c2b7" + "CENTRALINDIA:20220512T100040Z:1e8d61f7-c5d4-417e-9d66-c71ae7c546a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:58:04 GMT" + "Thu, 12 May 2022 10:00:39 GMT" ], "Content-Length": [ "21" @@ -442,19 +442,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c12c000-549e-484b-b1ac-0a2576f6ac14?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2MxMmMwMDAtNTQ5ZS00ODRiLWIxYWMtMGEyNTc2ZjZhYzE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bc065f8-8a97-411f-a3ca-f507d1475701?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2JjMDY1ZjgtOGE5Ny00MTFmLWEzY2EtZjUwN2QxNDc1NzAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -474,22 +474,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "a9252020-ed33-4f01-af31-9403268696a4" + "be81872a-fcfb-4385-875b-483439a45968" ], "x-ms-correlation-request-id": [ - "a9252020-ed33-4f01-af31-9403268696a4" + "be81872a-fcfb-4385-875b-483439a45968" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165834Z:a9252020-ed33-4f01-af31-9403268696a4" + "CENTRALINDIA:20220512T100110Z:be81872a-fcfb-4385-875b-483439a45968" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:58:34 GMT" + "Thu, 12 May 2022 10:01:10 GMT" ], "Content-Length": [ "21" @@ -502,19 +502,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c12c000-549e-484b-b1ac-0a2576f6ac14?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2MxMmMwMDAtNTQ5ZS00ODRiLWIxYWMtMGEyNTc2ZjZhYzE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bc065f8-8a97-411f-a3ca-f507d1475701?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2JjMDY1ZjgtOGE5Ny00MTFmLWEzY2EtZjUwN2QxNDc1NzAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -534,22 +534,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "f4abf6e9-e889-4c98-9baa-f73c9c237ba9" + "67c24bcf-74d6-4784-a1e9-58f2712677dc" ], "x-ms-correlation-request-id": [ - "f4abf6e9-e889-4c98-9baa-f73c9c237ba9" + "67c24bcf-74d6-4784-a1e9-58f2712677dc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165904Z:f4abf6e9-e889-4c98-9baa-f73c9c237ba9" + "CENTRALINDIA:20220512T100140Z:67c24bcf-74d6-4784-a1e9-58f2712677dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:59:04 GMT" + "Thu, 12 May 2022 10:01:39 GMT" ], "Content-Length": [ "21" @@ -562,19 +562,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c12c000-549e-484b-b1ac-0a2576f6ac14?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2MxMmMwMDAtNTQ5ZS00ODRiLWIxYWMtMGEyNTc2ZjZhYzE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bc065f8-8a97-411f-a3ca-f507d1475701?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2JjMDY1ZjgtOGE5Ny00MTFmLWEzY2EtZjUwN2QxNDc1NzAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a6b882-a101-419a-9177-5e4ce97a90d2" + "a2015b48-5109-4aa4-86b0-47017fb2b508" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -594,22 +594,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "40a86707-0c21-4e18-9dd3-51e13795d426" + "6ff0f08c-1b27-44a7-8e9a-dc5e8f0a2f32" ], "x-ms-correlation-request-id": [ - "40a86707-0c21-4e18-9dd3-51e13795d426" + "6ff0f08c-1b27-44a7-8e9a-dc5e8f0a2f32" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165935Z:40a86707-0c21-4e18-9dd3-51e13795d426" + "CENTRALINDIA:20220512T100210Z:6ff0f08c-1b27-44a7-8e9a-dc5e8f0a2f32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:59:34 GMT" + "Thu, 12 May 2022 10:02:10 GMT" ], "Content-Length": [ "22" @@ -622,22 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c85b6ad1-b0db-494b-a6d6-6ac70b25f2df" + "12395fd3-1f7f-4fa3-a37d-00c70f2df90d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,47 +657,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11976" ], "x-ms-request-id": [ - "2705ac4e-5d2f-48f6-8d5f-3c9d6e0639ba" + "81e7f90d-7fb5-4e71-a8d0-a47c48ffda92" ], "x-ms-correlation-request-id": [ - "2705ac4e-5d2f-48f6-8d5f-3c9d6e0639ba" + "81e7f90d-7fb5-4e71-a8d0-a47c48ffda92" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165936Z:2705ac4e-5d2f-48f6-8d5f-3c9d6e0639ba" + "CENTRALINDIA:20220512T100213Z:81e7f90d-7fb5-4e71-a8d0-a47c48ffda92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:59:35 GMT" + "Thu, 12 May 2022 10:02:13 GMT" ], "Content-Length": [ - "5579" + "6291" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: c85b6ad1-b0db-494b-a6d6-6ac70b25f2df, Request URI: /apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928531s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T16:59:35.9472550Z, RequestEndTime: 2022-03-08T16:59:35.9472550Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:58:39.0864730Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.922,\\\\\\\"memory\\\\\\\":461891904.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0147,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:58:49.0965339Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.803,\\\\\\\"memory\\\\\\\":461611924.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0158,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:58:59.1066557Z\\\\\\\",\\\\\\\"cpu\\\\\\\":30.035,\\\\\\\"memory\\\\\\\":464081792.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0171,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:09.1168628Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.786,\\\\\\\"memory\\\\\\\":462028180.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:19.1269985Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.111,\\\\\\\"memory\\\\\\\":466437272.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:29.1371414Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.118,\\\\\\\"memory\\\\\\\":466090028.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T16:59:35.9472550Z; ResponseTime: 2022-03-08T16:59:35.9472550Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928531s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.42, ActivityId: c85b6ad1-b0db-494b-a6d6-6ac70b25f2df, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9472550Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0088},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9472638Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.01},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9472738Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1428},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9474166Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.3457},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9497623Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1309},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9498932Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T16:59:35.9472550Z; ResponseTime: 2022-03-08T16:59:35.9472550Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928530s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.627, ActivityId: c85b6ad1-b0db-494b-a6d6-6ac70b25f2df, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9472550Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0205},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9472755Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9472766Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1194},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9473960Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.3139},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9497099Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1309},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:59:35.9498408Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/keyspace1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 12395fd3-1f7f-4fa3-a37d-00c70f2df90d, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767936s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:02:13.8507960Z, RequestEndTime: 2022-05-12T10:02:13.8507960Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:01:21.3002106Z\\\\\\\",\\\\\\\"cpu\\\\\\\":5.555,\\\\\\\"memory\\\\\\\":473772848.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.023,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:01:31.3102853Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.695,\\\\\\\"memory\\\\\\\":475208556.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0181,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:01:41.3203948Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.467,\\\\\\\"memory\\\\\\\":474845000.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0231,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:01:51.3304959Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.010,\\\\\\\"memory\\\\\\\":474543032.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0137,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:01.3406639Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.466,\\\\\\\"memory\\\\\\\":474426336.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0106,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:11.3507156Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.730,\\\\\\\"memory\\\\\\\":474408544.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0234,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:02:13.8507960Z; ResponseTime: 2022-05-12T10:02:13.8507960Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767936s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.958, ActivityId: 12395fd3-1f7f-4fa3-a37d-00c70f2df90d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8507960Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0085},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8508045Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8508065Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1787},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8509852Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2602},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8522454Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0676},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8523130Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:02:13.8007462Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:02:13.8007462Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:02:13.8007462Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:02:13.8507960Z; ResponseTime: 2022-05-12T10:02:13.8507960Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767938s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.041, ActivityId: 12395fd3-1f7f-4fa3-a37d-00c70f2df90d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8507960Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.005},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8508010Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0236},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8508246Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0744},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8508990Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5503},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8524493Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0453},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:13.8524946Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:02:12.4707285Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:02:12.4707285Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:02:12.4707285Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/keyspace1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c85b6ad1-b0db-494b-a6d6-6ac70b25f2df" + "12395fd3-1f7f-4fa3-a37d-00c70f2df90d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -717,22 +717,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11974" ], "x-ms-request-id": [ - "89bc954c-3565-4bda-8028-89f7d32a5c72" + "d79b104d-860c-47be-af5e-d27015fa138c" ], "x-ms-correlation-request-id": [ - "89bc954c-3565-4bda-8028-89f7d32a5c72" + "d79b104d-860c-47be-af5e-d27015fa138c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170007Z:89bc954c-3565-4bda-8028-89f7d32a5c72" + "CENTRALINDIA:20220512T100247Z:d79b104d-860c-47be-af5e-d27015fa138c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:06 GMT" + "Thu, 12 May 2022 10:02:46 GMT" ], "Content-Length": [ "409" @@ -741,26 +741,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"q0hVAA==\",\r\n \"_etag\": \"\\\"0000e017-0000-0100-0000-62278b810000\\\"\",\r\n \"_ts\": 1646758785\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"-Wo3AA==\",\r\n \"_etag\": \"\\\"0000d618-0000-0100-0000-627cdb2f0000\\\"\",\r\n \"_ts\": 1652349743\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bccbc9c4-4370-4979-a676-16584a4b1b59" + "cfc341bd-fa83-43d9-93fe-37fd0a12c86c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +780,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-request-id": [ - "6826bf84-2075-41f6-8b82-d63529b98b1d" + "15d5b4f3-31a4-414e-aa73-01426c679007" ], "x-ms-correlation-request-id": [ - "6826bf84-2075-41f6-8b82-d63529b98b1d" + "15d5b4f3-31a4-414e-aa73-01426c679007" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170007Z:6826bf84-2075-41f6-8b82-d63529b98b1d" + "JIOINDIACENTRAL:20220512T100248Z:15d5b4f3-31a4-414e-aa73-01426c679007" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:06 GMT" + "Thu, 12 May 2022 10:02:48 GMT" ], "Content-Length": [ "409" @@ -804,26 +804,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"q0hVAA==\",\r\n \"_etag\": \"\\\"0000e017-0000-0100-0000-62278b810000\\\"\",\r\n \"_ts\": 1646758785\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"-Wo3AA==\",\r\n \"_etag\": \"\\\"0000d618-0000-0100-0000-627cdb2f0000\\\"\",\r\n \"_ts\": 1652349743\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83b0e00d-aff7-456d-8590-c41fb1df6267" + "25a3bb27-eec3-4462-965a-99f2ffe7e101" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -843,22 +843,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11975" ], "x-ms-request-id": [ - "48c9f416-8ec4-44ae-9793-f875e2d859f2" + "18c73c24-ac86-407c-a350-ef0c3dc80eda" ], "x-ms-correlation-request-id": [ - "48c9f416-8ec4-44ae-9793-f875e2d859f2" + "18c73c24-ac86-407c-a350-ef0c3dc80eda" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170039Z:48c9f416-8ec4-44ae-9793-f875e2d859f2" + "JIOINDIACENTRAL:20220512T100326Z:18c73c24-ac86-407c-a350-ef0c3dc80eda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:39 GMT" + "Thu, 12 May 2022 10:03:26 GMT" ], "Content-Length": [ "409" @@ -867,26 +867,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"q0hVAA==\",\r\n \"_etag\": \"\\\"0000e017-0000-0100-0000-62278b810000\\\"\",\r\n \"_ts\": 1646758785\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"-Wo3AA==\",\r\n \"_etag\": \"\\\"0000d618-0000-0100-0000-627cdb2f0000\\\"\",\r\n \"_ts\": 1652349743\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31220783-daf1-46bb-84b7-c0bf79d64584" + "0b3a14db-c577-459f-83f2-c45549bf2421" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -906,22 +906,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11996" ], "x-ms-request-id": [ - "961e7630-14ba-4775-9381-1c5f5f2d1692" + "d179896b-5b02-45c9-8d7d-51522fa2dc55" ], "x-ms-correlation-request-id": [ - "961e7630-14ba-4775-9381-1c5f5f2d1692" + "d179896b-5b02-45c9-8d7d-51522fa2dc55" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170041Z:961e7630-14ba-4775-9381-1c5f5f2d1692" + "JIOINDIACENTRAL:20220512T100331Z:d179896b-5b02-45c9-8d7d-51522fa2dc55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:40 GMT" + "Thu, 12 May 2022 10:03:31 GMT" ], "Content-Length": [ "409" @@ -930,23 +930,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"q0hVAA==\",\r\n \"_etag\": \"\\\"0000e017-0000-0100-0000-62278b810000\\\"\",\r\n \"_ts\": 1646758785\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"-Wo3AA==\",\r\n \"_etag\": \"\\\"0000d618-0000-0100-0000-627cdb2f0000\\\"\",\r\n \"_ts\": 1652349743\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31220783-daf1-46bb-84b7-c0bf79d64584" + "0b3a14db-c577-459f-83f2-c45549bf2421" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -966,22 +966,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11994" ], "x-ms-request-id": [ - "b43f69ef-8175-4a24-b8bf-4e6764fbbdd1" + "e9b4cf39-ba95-490c-81cd-40dbd62872ca" ], "x-ms-correlation-request-id": [ - "b43f69ef-8175-4a24-b8bf-4e6764fbbdd1" + "e9b4cf39-ba95-490c-81cd-40dbd62872ca" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170112Z:b43f69ef-8175-4a24-b8bf-4e6764fbbdd1" + "JIOINDIACENTRAL:20220512T100403Z:e9b4cf39-ba95-490c-81cd-40dbd62872ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:11 GMT" + "Thu, 12 May 2022 10:04:02 GMT" ], "Content-Length": [ "409" @@ -990,26 +990,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"q0hVAA==\",\r\n \"_etag\": \"\\\"0000e017-0000-0100-0000-62278b810000\\\"\",\r\n \"_ts\": 1646758785\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"-Wo3AA==\",\r\n \"_etag\": \"\\\"0000d618-0000-0100-0000-627cdb2f0000\\\"\",\r\n \"_ts\": 1652349743\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\"\r\n },\r\n \"options\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c85b6ad1-b0db-494b-a6d6-6ac70b25f2df" + "12395fd3-1f7f-4fa3-a37d-00c70f2df90d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1026,13 +1026,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/e80c590e-03a5-4b05-9d5a-b72765d1d8e3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/32e34ca2-4eb7-4bba-84f5-f73f5b19d150?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e80c590e-03a5-4b05-9d5a-b72765d1d8e3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/32e34ca2-4eb7-4bba-84f5-f73f5b19d150?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e80c590e-03a5-4b05-9d5a-b72765d1d8e3" + "32e34ca2-4eb7-4bba-84f5-f73f5b19d150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1044,19 +1044,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "36bfaaba-fb9d-4f68-8f86-dd018d84454b" + "df175905-fece-4ddd-80dd-fd743e4cee89" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165936Z:36bfaaba-fb9d-4f68-8f86-dd018d84454b" + "CENTRALINDIA:20220512T100216Z:df175905-fece-4ddd-80dd-fd743e4cee89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:59:35 GMT" + "Thu, 12 May 2022 10:02:15 GMT" ], "Content-Length": [ "21" @@ -1069,22 +1069,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\"\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31220783-daf1-46bb-84b7-c0bf79d64584" + "0b3a14db-c577-459f-83f2-c45549bf2421" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1101,13 +1101,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/c8e4320e-5a65-41d8-966c-5e303d2dbe9a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/1c12222c-f2b0-4512-a83f-477d2bbd0aa8?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c8e4320e-5a65-41d8-966c-5e303d2dbe9a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c12222c-f2b0-4512-a83f-477d2bbd0aa8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c8e4320e-5a65-41d8-966c-5e303d2dbe9a" + "1c12222c-f2b0-4512-a83f-477d2bbd0aa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1119,19 +1119,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "c63b14fc-3ce1-407e-bf8a-67516bf6f92a" + "3459151d-e2a8-4c63-a537-b32300ab9b57" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170041Z:c63b14fc-3ce1-407e-bf8a-67516bf6f92a" + "JIOINDIACENTRAL:20220512T100332Z:3459151d-e2a8-4c63-a537-b32300ab9b57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:41 GMT" + "Thu, 12 May 2022 10:03:32 GMT" ], "Content-Length": [ "21" @@ -1144,19 +1144,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e80c590e-03a5-4b05-9d5a-b72765d1d8e3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTgwYzU5MGUtMDNhNS00YjA1LTlkNWEtYjcyNzY1ZDFkOGUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/32e34ca2-4eb7-4bba-84f5-f73f5b19d150?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzJlMzRjYTItNGViNy00YmJhLTg0ZjUtZjczZjViMTlkMTUwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c85b6ad1-b0db-494b-a6d6-6ac70b25f2df" + "12395fd3-1f7f-4fa3-a37d-00c70f2df90d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1176,22 +1176,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11975" ], "x-ms-request-id": [ - "7c980b9b-6f97-4dae-adf7-3b35b96be431" + "cae20aac-f913-455d-b2a5-f5291d4a9cee" ], "x-ms-correlation-request-id": [ - "7c980b9b-6f97-4dae-adf7-3b35b96be431" + "cae20aac-f913-455d-b2a5-f5291d4a9cee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170007Z:7c980b9b-6f97-4dae-adf7-3b35b96be431" + "CENTRALINDIA:20220512T100246Z:cae20aac-f913-455d-b2a5-f5291d4a9cee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:06 GMT" + "Thu, 12 May 2022 10:02:46 GMT" ], "Content-Length": [ "22" @@ -1204,22 +1204,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc323c3d-94e9-41f3-87de-0ceb94e15aeb" + "131a8833-58cc-4528-bed6-f4e95c91e5f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1239,47 +1239,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11993" ], "x-ms-request-id": [ - "2a61a6d2-599a-44c9-8c56-6939eb9f7e2d" + "6a0f8ebf-a0a5-4fc0-beee-88c54d0abc73" ], "x-ms-correlation-request-id": [ - "2a61a6d2-599a-44c9-8c56-6939eb9f7e2d" + "6a0f8ebf-a0a5-4fc0-beee-88c54d0abc73" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170008Z:2a61a6d2-599a-44c9-8c56-6939eb9f7e2d" + "JIOINDIACENTRAL:20220512T100250Z:6a0f8ebf-a0a5-4fc0-beee-88c54d0abc73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:07 GMT" + "Thu, 12 May 2022 10:02:50 GMT" ], "Content-Length": [ - "5593" + "6310" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: fc323c3d-94e9-41f3-87de-0ceb94e15aeb, Request URI: /apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928531s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T17:00:07.9376242Z, RequestEndTime: 2022-03-08T17:00:07.9376242Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:09.1168628Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.786,\\\\\\\"memory\\\\\\\":462028180.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:19.1269985Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.111,\\\\\\\"memory\\\\\\\":466437272.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:29.1371414Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.118,\\\\\\\"memory\\\\\\\":466090028.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:39.1472289Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.409,\\\\\\\"memory\\\\\\\":465814200.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.012,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:49.1573616Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.351,\\\\\\\"memory\\\\\\\":464876972.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0191,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:59.1675231Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.938,\\\\\\\"memory\\\\\\\":464844468.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0223,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T17:00:07.9376242Z; ResponseTime: 2022-03-08T17:00:07.9376242Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928531s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.11, ActivityId: fc323c3d-94e9-41f3-87de-0ceb94e15aeb, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9376242Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0137},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9376379Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0034},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9376413Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2393},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9378806Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.7884},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9396690Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.083},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9397520Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T17:00:07.9376242Z; ResponseTime: 2022-03-08T17:00:07.9376242Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928532s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.027, ActivityId: fc323c3d-94e9-41f3-87de-0ceb94e15aeb, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9376242Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0061},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9376303Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9376323Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2049},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9378372Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5323},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9393695Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1179},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:07.9394874Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/keyspace1/colls/table, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 131a8833-58cc-4528-bed6-f4e95c91e5f8, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767938s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:02:50.3770061Z, RequestEndTime: 2022-05-12T10:02:50.3870017Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:01:53.1066079Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.418,\\\\\\\"memory\\\\\\\":478142736.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0147,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:03.1167208Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.407,\\\\\\\"memory\\\\\\\":477951256.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:13.1267978Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.871,\\\\\\\"memory\\\\\\\":480522012.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0173,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:23.1368458Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.325,\\\\\\\"memory\\\\\\\":480410608.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0188,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:33.1469266Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.155,\\\\\\\"memory\\\\\\\":480686032.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0305,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:43.1570042Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.330,\\\\\\\"memory\\\\\\\":480574144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0179,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:02:50.3770061Z; ResponseTime: 2022-05-12T10:02:50.3870017Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767938s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.951, ActivityId: 131a8833-58cc-4528-bed6-f4e95c91e5f8, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3770061Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0105},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3770166Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3770193Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2662},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3772855Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2028},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3784883Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0304},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3785187Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:02:50.3269509Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:02:50.3269509Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:02:50.3269509Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:02:50.3770061Z; ResponseTime: 2022-05-12T10:02:50.3870017Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767937s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.344, ActivityId: 131a8833-58cc-4528-bed6-f4e95c91e5f8, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3770061Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0047},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3770108Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3770121Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1738},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3771859Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0202},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3792061Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0304},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:02:50.3792365Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:02:50.2569514Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:02:50.2569514Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:02:50.2569514Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/keyspace1/colls/table, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc323c3d-94e9-41f3-87de-0ceb94e15aeb" + "131a8833-58cc-4528-bed6-f4e95c91e5f8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1299,22 +1299,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11991" ], "x-ms-request-id": [ - "e46dba06-47ad-4797-8f7b-8ebd50470052" + "374549be-8e9b-4cf8-b59a-41cfb6580b32" ], "x-ms-correlation-request-id": [ - "e46dba06-47ad-4797-8f7b-8ebd50470052" + "374549be-8e9b-4cf8-b59a-41cfb6580b32" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170039Z:e46dba06-47ad-4797-8f7b-8ebd50470052" + "JIOINDIACENTRAL:20220512T100323Z:374549be-8e9b-4cf8-b59a-41cfb6580b32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:38 GMT" + "Thu, 12 May 2022 10:03:22 GMT" ], "Content-Length": [ "617" @@ -1323,26 +1323,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"q0hVALRU7VM=\",\r\n \"_etag\": \"\\\"0000e417-0000-0100-0000-62278b9d0000\\\"\",\r\n \"_ts\": 1646758813,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"-Wo3AMwgYWw=\",\r\n \"_etag\": \"\\\"0000da18-0000-0100-0000-627cdb500000\\\"\",\r\n \"_ts\": 1652349776,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c66b1008-3e6a-405f-b277-6a0584e8d193" + "571466d2-af4c-4bad-8f66-d488214284eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1362,22 +1362,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11997" ], "x-ms-request-id": [ - "7c160e11-df58-4eec-8dfe-48193bb664d3" + "a1d94320-5b4a-4662-a164-0473cc60bc4e" ], "x-ms-correlation-request-id": [ - "7c160e11-df58-4eec-8dfe-48193bb664d3" + "a1d94320-5b4a-4662-a164-0473cc60bc4e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170039Z:7c160e11-df58-4eec-8dfe-48193bb664d3" + "JIOINDIACENTRAL:20220512T100325Z:a1d94320-5b4a-4662-a164-0473cc60bc4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:39 GMT" + "Thu, 12 May 2022 10:03:25 GMT" ], "Content-Length": [ "617" @@ -1386,26 +1386,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"q0hVALRU7VM=\",\r\n \"_etag\": \"\\\"0000e417-0000-0100-0000-62278b9d0000\\\"\",\r\n \"_ts\": 1646758813,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"-Wo3AMwgYWw=\",\r\n \"_etag\": \"\\\"0000da18-0000-0100-0000-627cdb500000\\\"\",\r\n \"_ts\": 1652349776,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "911e86d4-f348-4cda-8480-04276b213d87" + "8de0a3f6-6079-4ca0-99e1-b880bc088ee5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1425,22 +1425,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11978" ], "x-ms-request-id": [ - "53f2b7af-b75c-45b9-b7b8-840a41dd8c71" + "97565cee-6fff-4554-ace7-e332e6c7b000" ], "x-ms-correlation-request-id": [ - "53f2b7af-b75c-45b9-b7b8-840a41dd8c71" + "97565cee-6fff-4554-ace7-e332e6c7b000" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170040Z:53f2b7af-b75c-45b9-b7b8-840a41dd8c71" + "JIOINDIACENTRAL:20220512T100328Z:97565cee-6fff-4554-ace7-e332e6c7b000" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:39 GMT" + "Thu, 12 May 2022 10:03:27 GMT" ], "Content-Length": [ "617" @@ -1449,26 +1449,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"q0hVALRU7VM=\",\r\n \"_etag\": \"\\\"0000e417-0000-0100-0000-62278b9d0000\\\"\",\r\n \"_ts\": 1646758813,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"-Wo3AMwgYWw=\",\r\n \"_etag\": \"\\\"0000da18-0000-0100-0000-627cdb500000\\\"\",\r\n \"_ts\": 1652349776,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e32ef022-dfaf-4e90-9796-e3ad7389cab3" + "3eaff9ce-5b24-4f4e-8dda-88156edfed2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1488,22 +1488,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11996" ], "x-ms-request-id": [ - "0e28e610-eb4c-4028-8c5e-a41dc99127fb" + "0e314c35-4105-48f3-a2f9-53f4fd56c307" ], "x-ms-correlation-request-id": [ - "0e28e610-eb4c-4028-8c5e-a41dc99127fb" + "0e314c35-4105-48f3-a2f9-53f4fd56c307" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170112Z:0e28e610-eb4c-4028-8c5e-a41dc99127fb" + "CENTRALINDIA:20220512T100408Z:0e314c35-4105-48f3-a2f9-53f4fd56c307" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:12 GMT" + "Thu, 12 May 2022 10:04:08 GMT" ], "Content-Length": [ "617" @@ -1512,23 +1512,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"q0hVALRU7VM=\",\r\n \"_etag\": \"\\\"0000e417-0000-0100-0000-62278b9d0000\\\"\",\r\n \"_ts\": 1646758813,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"-Wo3AMwgYWw=\",\r\n \"_etag\": \"\\\"0000da18-0000-0100-0000-627cdb500000\\\"\",\r\n \"_ts\": 1652349776,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e32ef022-dfaf-4e90-9796-e3ad7389cab3" + "3eaff9ce-5b24-4f4e-8dda-88156edfed2b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1548,22 +1548,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11994" ], "x-ms-request-id": [ - "6490ea10-90f8-47e7-bffa-2b2ce986f798" + "246065a7-ad03-45d7-bcba-941cf3839536" ], "x-ms-correlation-request-id": [ - "6490ea10-90f8-47e7-bffa-2b2ce986f798" + "246065a7-ad03-45d7-bcba-941cf3839536" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170144Z:6490ea10-90f8-47e7-bffa-2b2ce986f798" + "CENTRALINDIA:20220512T100441Z:246065a7-ad03-45d7-bcba-941cf3839536" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:43 GMT" + "Thu, 12 May 2022 10:04:41 GMT" ], "Content-Length": [ "683" @@ -1572,26 +1572,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"q0hVALRU7VM=\",\r\n \"_etag\": \"\\\"0000eb17-0000-0100-0000-62278bde0000\\\"\",\r\n \"_ts\": 1646758878,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"-Wo3AMwgYWw=\",\r\n \"_etag\": \"\\\"0000e018-0000-0100-0000-627cdb9e0000\\\"\",\r\n \"_ts\": 1652349854,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc323c3d-94e9-41f3-87de-0ceb94e15aeb" + "131a8833-58cc-4528-bed6-f4e95c91e5f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1608,13 +1608,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/6a77c6f9-302c-437c-b814-8932ebd90a03?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/6ef137fd-8081-43dc-98ea-c757d046f4dc?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6a77c6f9-302c-437c-b814-8932ebd90a03?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6ef137fd-8081-43dc-98ea-c757d046f4dc?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "6a77c6f9-302c-437c-b814-8932ebd90a03" + "6ef137fd-8081-43dc-98ea-c757d046f4dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1626,19 +1626,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "26c8cd5f-247f-4902-890e-fa557bf7cde0" + "9df81ceb-90b9-4fe1-830a-ea7748a851eb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170008Z:26c8cd5f-247f-4902-890e-fa557bf7cde0" + "JIOINDIACENTRAL:20220512T100251Z:9df81ceb-90b9-4fe1-830a-ea7748a851eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:07 GMT" + "Thu, 12 May 2022 10:02:51 GMT" ], "Content-Length": [ "21" @@ -1651,22 +1651,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e32ef022-dfaf-4e90-9796-e3ad7389cab3" + "3eaff9ce-5b24-4f4e-8dda-88156edfed2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1683,13 +1683,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/b9e9f91d-42d4-4ac6-adc8-ecff51e3f7fe?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/5a968166-e194-4b63-ac22-96f30522f63f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b9e9f91d-42d4-4ac6-adc8-ecff51e3f7fe?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5a968166-e194-4b63-ac22-96f30522f63f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b9e9f91d-42d4-4ac6-adc8-ecff51e3f7fe" + "5a968166-e194-4b63-ac22-96f30522f63f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1701,19 +1701,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "82bd1815-c5d0-4dc4-83bd-3f2a90896716" + "47510a11-0d1f-4c73-9999-9b72e31b0098" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170113Z:82bd1815-c5d0-4dc4-83bd-3f2a90896716" + "CENTRALINDIA:20220512T100409Z:47510a11-0d1f-4c73-9999-9b72e31b0098" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:12 GMT" + "Thu, 12 May 2022 10:04:09 GMT" ], "Content-Length": [ "21" @@ -1726,19 +1726,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6a77c6f9-302c-437c-b814-8932ebd90a03?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmE3N2M2ZjktMzAyYy00MzdjLWI4MTQtODkzMmViZDkwYTAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6ef137fd-8081-43dc-98ea-c757d046f4dc?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmVmMTM3ZmQtODA4MS00M2RjLTk4ZWEtYzc1N2QwNDZmNGRjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc323c3d-94e9-41f3-87de-0ceb94e15aeb" + "131a8833-58cc-4528-bed6-f4e95c91e5f8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1758,22 +1758,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11992" ], "x-ms-request-id": [ - "bb3358fe-351d-436b-a11f-fc6aa0aa3333" + "89b6fdcc-1337-477b-8289-0e4e9c3860cd" ], "x-ms-correlation-request-id": [ - "bb3358fe-351d-436b-a11f-fc6aa0aa3333" + "89b6fdcc-1337-477b-8289-0e4e9c3860cd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170038Z:bb3358fe-351d-436b-a11f-fc6aa0aa3333" + "JIOINDIACENTRAL:20220512T100322Z:89b6fdcc-1337-477b-8289-0e4e9c3860cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:38 GMT" + "Thu, 12 May 2022 10:03:22 GMT" ], "Content-Length": [ "22" @@ -1786,22 +1786,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9549e344-ca05-4e49-8544-254bc542f15e" + "bcbafca6-3b4d-4619-99da-5577a4b493df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1821,50 +1821,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11992" ], "x-ms-request-id": [ - "a96eeb82-192c-484a-bfb3-309d54f301e5" + "47d48eea-f3a4-41c7-a6ab-61027ee7bda4" ], "x-ms-correlation-request-id": [ - "a96eeb82-192c-484a-bfb3-309d54f301e5" + "47d48eea-f3a4-41c7-a6ab-61027ee7bda4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170040Z:a96eeb82-192c-484a-bfb3-309d54f301e5" + "JIOINDIACENTRAL:20220512T100329Z:47d48eea-f3a4-41c7-a6ab-61027ee7bda4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:39 GMT" + "Thu, 12 May 2022 10:03:29 GMT" ], "Content-Length": [ - "5579" + "6292" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 9549e344-ca05-4e49-8544-254bc542f15e, Request URI: /apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928532s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T17:00:40.4180490Z, RequestEndTime: 2022-03-08T17:00:40.4180490Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:39.1472289Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.409,\\\\\\\"memory\\\\\\\":465814200.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.012,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:49.1573616Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.351,\\\\\\\"memory\\\\\\\":464876972.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0191,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:59.1675231Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.938,\\\\\\\"memory\\\\\\\":464844468.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0223,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:00:09.1776363Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.371,\\\\\\\"memory\\\\\\\":464284980.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0179,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:00:19.1877213Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.067,\\\\\\\"memory\\\\\\\":463960984.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0251,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:00:39.1980315Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.374,\\\\\\\"memory\\\\\\\":464186700.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.018,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T17:00:40.4180490Z; ResponseTime: 2022-03-08T17:00:40.4180490Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928532s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.554, ActivityId: 9549e344-ca05-4e49-8544-254bc542f15e, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4180490Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0078},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4180568Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4180601Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1643},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4182244Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0094},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4192338Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0745},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4193083Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T17:00:40.4180490Z; ResponseTime: 2022-03-08T17:00:40.4180490Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928530s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.365, ActivityId: 9549e344-ca05-4e49-8544-254bc542f15e, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4180490Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0054},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4180544Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0017},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4180561Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.137},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4181931Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8498},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4190429Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1308},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.4191737Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/keyspace2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: bcbafca6-3b4d-4619-99da-5577a4b493df, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767936s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:03:29.6215553Z, RequestEndTime: 2022-05-12T10:03:29.6215553Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:31.3709720Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.417,\\\\\\\"memory\\\\\\\":474192296.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0293,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:41.3810422Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.790,\\\\\\\"memory\\\\\\\":474200916.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0116,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:51.3911618Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.387,\\\\\\\"memory\\\\\\\":474194360.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.026,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:03:01.4012970Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.946,\\\\\\\"memory\\\\\\\":476218312.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0107,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:03:11.4114020Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.984,\\\\\\\"memory\\\\\\\":476210216.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0151,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:03:21.4215286Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.862,\\\\\\\"memory\\\\\\\":476231948.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0105,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:03:29.6215553Z; ResponseTime: 2022-05-12T10:03:29.6215553Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767936s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.192, ActivityId: bcbafca6-3b4d-4619-99da-5577a4b493df, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6215553Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0096},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6215649Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6215675Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1242},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6216917Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.3501},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6220418Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0326},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6220744Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:03:29.6215553Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:03:29.6215553Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:03:29.6215553Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":460,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:03:29.6215553Z; ResponseTime: 2022-05-12T10:03:29.6215553Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767938s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.238, ActivityId: bcbafca6-3b4d-4619-99da-5577a4b493df, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6215553Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0053},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6215606Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0016},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6215622Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.078},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6216402Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4659},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6221061Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0236},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:29.6221297Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:03:29.6215553Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:03:29.6215553Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:03:29.6215553Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":460,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/keyspace2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGUyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "258dc4d9-ddc5-4cc8-8da2-6a517b7c0d76" + "f8a05c6d-5e9c-49a5-a208-b5580549a91a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1884,47 +1884,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11974" ], "x-ms-request-id": [ - "636490ba-104b-495c-9dfa-9ce1e5ccfb3f" + "18769d6a-7edf-42dc-945b-a6a797c24c56" ], "x-ms-correlation-request-id": [ - "636490ba-104b-495c-9dfa-9ce1e5ccfb3f" + "18769d6a-7edf-42dc-945b-a6a797c24c56" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170040Z:636490ba-104b-495c-9dfa-9ce1e5ccfb3f" + "JIOINDIACENTRAL:20220512T100330Z:18769d6a-7edf-42dc-945b-a6a797c24c56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:00:40 GMT" + "Thu, 12 May 2022 10:03:29 GMT" ], "Content-Length": [ - "5595" + "6310" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 258dc4d9-ddc5-4cc8-8da2-6a517b7c0d76, Request URI: /apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928532s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T17:00:40.7181195Z, RequestEndTime: 2022-03-08T17:00:40.7280557Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:39.1472289Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.409,\\\\\\\"memory\\\\\\\":465814200.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.012,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:49.1573616Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.351,\\\\\\\"memory\\\\\\\":464876972.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0191,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:59:59.1675231Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.938,\\\\\\\"memory\\\\\\\":464844468.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0223,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:00:09.1776363Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.371,\\\\\\\"memory\\\\\\\":464284980.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0179,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:00:19.1877213Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.067,\\\\\\\"memory\\\\\\\":463960984.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0251,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:00:39.1980315Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.374,\\\\\\\"memory\\\\\\\":464186700.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.018,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T17:00:40.7280557Z; ResponseTime: 2022-03-08T17:00:40.7280557Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928532s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.374, ActivityId: 258dc4d9-ddc5-4cc8-8da2-6a517b7c0d76, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7181195Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0199},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7181394Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0042},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7181436Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2792},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7184228Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9183},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7193411Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0392},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7193803Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":483,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T17:00:40.7280557Z; ResponseTime: 2022-03-08T17:00:40.7280557Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/6fc6c961-daf9-4474-b635-96357ffb9266/services/0eac7edd-a079-4325-bd7f-f3d6f35133eb/partitions/3732fbb7-3b5f-4924-8a51-4c8fbe44acdd/replicas/132912309351928530s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.307, ActivityId: 258dc4d9-ddc5-4cc8-8da2-6a517b7c0d76, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7280557Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0056},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7280613Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7280633Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2073},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7282706Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.838},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7291086Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0578},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:00:40.7291664Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":483,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/keyspace1/colls/table2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: f8a05c6d-5e9c-49a5-a208-b5580549a91a, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767936s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:03:30.4372059Z, RequestEndTime: 2022-05-12T10:03:30.4372059Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:33.1469266Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.155,\\\\\\\"memory\\\\\\\":480686032.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0305,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:43.1570042Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.330,\\\\\\\"memory\\\\\\\":480574144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0179,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:02:53.1669612Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.427,\\\\\\\"memory\\\\\\\":480578020.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0147,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:03:03.1770640Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.624,\\\\\\\"memory\\\\\\\":480225108.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0093,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:03:13.1871046Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.980,\\\\\\\"memory\\\\\\\":480241364.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0383,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:03:23.1971862Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.788,\\\\\\\"memory\\\\\\\":480242964.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0151,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:03:30.4372059Z; ResponseTime: 2022-05-12T10:03:30.4372059Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767936s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.44, ActivityId: f8a05c6d-5e9c-49a5-a208-b5580549a91a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4372059Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0171},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4372230Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0125},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4372355Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2235},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4374590Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0593},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4385183Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0677},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4385860Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:03:27.4572229Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:03:27.4572229Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:03:27.4572229Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":475,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:03:30.4372059Z; ResponseTime: 2022-05-12T10:03:30.4372059Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/061c169f-7e40-415d-8461-a81d1e0b065d/partitions/ef317cda-6de2-4528-b620-2c250a438919/replicas/132967920084767937s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.356, ActivityId: f8a05c6d-5e9c-49a5-a208-b5580549a91a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4372059Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0052},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4372111Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4372166Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1726},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4373892Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8243},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4382135Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0349},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:03:30.4382484Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:03:28.8771937Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:03:28.8771937Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:03:28.8771937Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":475,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/keyspace1/colls/table2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c8e4320e-5a65-41d8-966c-5e303d2dbe9a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzhlNDMyMGUtNWE2NS00MWQ4LTk2NmMtNWUzMDNkMmRiZTlhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c12222c-f2b0-4512-a83f-477d2bbd0aa8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWMxMjIyMmMtZjJiMC00NTEyLWE4M2YtNDc3ZDJiYmQwYWE4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31220783-daf1-46bb-84b7-c0bf79d64584" + "0b3a14db-c577-459f-83f2-c45549bf2421" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1944,22 +1944,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11995" ], "x-ms-request-id": [ - "0b74228f-2f13-4562-830c-da553ddf5675" + "bd631ca6-365e-4797-8318-0e29a746f4ee" ], "x-ms-correlation-request-id": [ - "0b74228f-2f13-4562-830c-da553ddf5675" + "bd631ca6-365e-4797-8318-0e29a746f4ee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170111Z:0b74228f-2f13-4562-830c-da553ddf5675" + "JIOINDIACENTRAL:20220512T100402Z:bd631ca6-365e-4797-8318-0e29a746f4ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:11 GMT" + "Thu, 12 May 2022 10:04:02 GMT" ], "Content-Length": [ "22" @@ -1972,22 +1972,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fa2637c-7bf5-461b-87d5-66e492b5fac0" + "f070a838-4370-4c27-8a09-98fafaf2cec8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2007,22 +2007,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-request-id": [ - "80c59a80-ffb6-4700-9d35-e717ce5a94cd" + "b669eacd-92bf-4183-8b58-6c82405ae7ce" ], "x-ms-correlation-request-id": [ - "80c59a80-ffb6-4700-9d35-e717ce5a94cd" + "b669eacd-92bf-4183-8b58-6c82405ae7ce" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170112Z:80c59a80-ffb6-4700-9d35-e717ce5a94cd" + "CENTRALINDIA:20220512T100405Z:b669eacd-92bf-4183-8b58-6c82405ae7ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:11 GMT" + "Thu, 12 May 2022 10:04:05 GMT" ], "Content-Length": [ "390" @@ -2031,23 +2031,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"ovfw\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"vVjI\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b9e9f91d-42d4-4ac6-adc8-ecff51e3f7fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjllOWY5MWQtNDJkNC00YWM2LWFkYzgtZWNmZjUxZTNmN2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5a968166-e194-4b63-ac22-96f30522f63f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWE5NjgxNjYtZTE5NC00YjYzLWFjMjItOTZmMzA1MjJmNjNmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e32ef022-dfaf-4e90-9796-e3ad7389cab3" + "3eaff9ce-5b24-4f4e-8dda-88156edfed2b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2067,22 +2067,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11995" ], "x-ms-request-id": [ - "0b2831ae-0774-4209-8231-b7d832c4cfd6" + "ea4ec0cb-cb30-42a7-bc49-8598b706a48a" ], "x-ms-correlation-request-id": [ - "0b2831ae-0774-4209-8231-b7d832c4cfd6" + "ea4ec0cb-cb30-42a7-bc49-8598b706a48a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170143Z:0b2831ae-0774-4209-8231-b7d832c4cfd6" + "CENTRALINDIA:20220512T100440Z:ea4ec0cb-cb30-42a7-bc49-8598b706a48a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:43 GMT" + "Thu, 12 May 2022 10:04:40 GMT" ], "Content-Length": [ "22" @@ -2095,22 +2095,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "834733ce-8002-4f26-b482-1076ab125ee2" + "780a4bcb-6538-4691-a392-579ac2f4ceef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2130,22 +2130,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11991" ], "x-ms-request-id": [ - "57da448c-9658-4ac6-b283-e8d22b9a04ff" + "d9e062d7-63dc-43f1-a85b-04df5b374e59" ], "x-ms-correlation-request-id": [ - "57da448c-9658-4ac6-b283-e8d22b9a04ff" + "d9e062d7-63dc-43f1-a85b-04df5b374e59" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170144Z:57da448c-9658-4ac6-b283-e8d22b9a04ff" + "CENTRALINDIA:20220512T100442Z:d9e062d7-63dc-43f1-a85b-04df5b374e59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:44 GMT" + "Thu, 12 May 2022 10:04:42 GMT" ], "Content-Length": [ "695" @@ -2154,26 +2154,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"q0hVALRU7VM=\",\r\n \"_etag\": \"\\\"0000eb17-0000-0100-0000-62278bde0000\\\"\",\r\n \"_ts\": 1646758878,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"-Wo3AMwgYWw=\",\r\n \"_etag\": \"\\\"0000e018-0000-0100-0000-627cdb9e0000\\\"\",\r\n \"_ts\": 1652349854,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc51a460-04d2-428e-a7f5-f7cc961fd56b" + "c8f2fd73-09eb-4460-8443-19bc7b593eeb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2193,22 +2193,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11997" ], "x-ms-request-id": [ - "efe5494c-89df-452a-b036-98a68abea20a" + "946f1d56-ec1b-4c6e-b8af-848c998ad7b0" ], "x-ms-correlation-request-id": [ - "efe5494c-89df-452a-b036-98a68abea20a" + "946f1d56-ec1b-4c6e-b8af-848c998ad7b0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170144Z:efe5494c-89df-452a-b036-98a68abea20a" + "CENTRALINDIA:20220512T100444Z:946f1d56-ec1b-4c6e-b8af-848c998ad7b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:44 GMT" + "Thu, 12 May 2022 10:04:43 GMT" ], "Content-Length": [ "421" @@ -2217,26 +2217,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"q0hVAA==\",\r\n \"_etag\": \"\\\"0000e017-0000-0100-0000-62278b810000\\\"\",\r\n \"_ts\": 1646758785\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"keyspace1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"keyspace1\",\r\n \"_rid\": \"-Wo3AA==\",\r\n \"_etag\": \"\\\"0000d618-0000-0100-0000-627cdb2f0000\\\"\",\r\n \"_ts\": 1652349743\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b21a095f-9af1-44bc-b13e-5036164e6820" + "626013f6-1b56-44f3-a6d9-5e3e6cf422eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2247,13 +2247,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/c3899c39-28ef-4d06-b138-f0f98040e305?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/32fdecf7-c66a-407f-81c0-ffe82143d50e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c3899c39-28ef-4d06-b138-f0f98040e305?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/32fdecf7-c66a-407f-81c0-ffe82143d50e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c3899c39-28ef-4d06-b138-f0f98040e305" + "32fdecf7-c66a-407f-81c0-ffe82143d50e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2268,16 +2268,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "e6c2c795-ed19-4268-b225-cff2f77e47c0" + "cce8ffd4-6851-416a-97ec-fadd8f58bf77" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170145Z:e6c2c795-ed19-4268-b225-cff2f77e47c0" + "JIOINDIACENTRAL:20220512T100447Z:cce8ffd4-6851-416a-97ec-fadd8f58bf77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:01:44 GMT" + "Thu, 12 May 2022 10:04:46 GMT" ], "Content-Length": [ "21" @@ -2290,22 +2290,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bb5adc0-e0f4-4d75-badb-b4c750e1fae8" + "28dca29a-f127-4dc8-a88c-aa53c134484d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2316,13 +2316,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/44022a28-cef6-4046-88ea-969e94dc01e6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/b5211247-4ade-4d56-a98d-ef802ba8bb65?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/44022a28-cef6-4046-88ea-969e94dc01e6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b5211247-4ade-4d56-a98d-ef802ba8bb65?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "44022a28-cef6-4046-88ea-969e94dc01e6" + "b5211247-4ade-4d56-a98d-ef802ba8bb65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2337,16 +2337,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "904f0311-bfb1-4729-b346-25ebafae682d" + "57bbd83f-2020-4fe4-8cf3-eb7923c99584" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170249Z:904f0311-bfb1-4729-b346-25ebafae682d" + "JIOINDIACENTRAL:20220512T100558Z:57bbd83f-2020-4fe4-8cf3-eb7923c99584" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:02:49 GMT" + "Thu, 12 May 2022 10:05:57 GMT" ], "Content-Length": [ "21" @@ -2359,19 +2359,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c3899c39-28ef-4d06-b138-f0f98040e305?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzM4OTljMzktMjhlZi00ZDA2LWIxMzgtZjBmOTgwNDBlMzA1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/32fdecf7-c66a-407f-81c0-ffe82143d50e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzJmZGVjZjctYzY2YS00MDdmLTgxYzAtZmZlODIxNDNkNTBlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b21a095f-9af1-44bc-b13e-5036164e6820" + "626013f6-1b56-44f3-a6d9-5e3e6cf422eb" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2391,22 +2391,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-request-id": [ - "b864c0cf-f31d-4a28-a7a5-92e67e77f5e1" + "c720b98a-869a-432e-9d24-91262c71115b" ], "x-ms-correlation-request-id": [ - "b864c0cf-f31d-4a28-a7a5-92e67e77f5e1" + "c720b98a-869a-432e-9d24-91262c71115b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170215Z:b864c0cf-f31d-4a28-a7a5-92e67e77f5e1" + "JIOINDIACENTRAL:20220512T100517Z:c720b98a-869a-432e-9d24-91262c71115b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:02:15 GMT" + "Thu, 12 May 2022 10:05:16 GMT" ], "Content-Length": [ "22" @@ -2419,19 +2419,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/c3899c39-28ef-4d06-b138-f0f98040e305?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGUvb3BlcmF0aW9uUmVzdWx0cy9jMzg5OWMzOS0yOGVmLTRkMDYtYjEzOC1mMGY5ODA0MGUzMDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/32fdecf7-c66a-407f-81c0-ffe82143d50e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGUvb3BlcmF0aW9uUmVzdWx0cy8zMmZkZWNmNy1jNjZhLTQwN2YtODFjMC1mZmU4MjE0M2Q1MGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b21a095f-9af1-44bc-b13e-5036164e6820" + "626013f6-1b56-44f3-a6d9-5e3e6cf422eb" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2451,22 +2451,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11997" ], "x-ms-request-id": [ - "64d1caa0-57a9-4f70-b9f9-71f581993b83" + "851e2f86-b77c-4381-b6dc-4d20881465f3" ], "x-ms-correlation-request-id": [ - "64d1caa0-57a9-4f70-b9f9-71f581993b83" + "851e2f86-b77c-4381-b6dc-4d20881465f3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170216Z:64d1caa0-57a9-4f70-b9f9-71f581993b83" + "JIOINDIACENTRAL:20220512T100518Z:851e2f86-b77c-4381-b6dc-4d20881465f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:02:15 GMT" + "Thu, 12 May 2022 10:05:17 GMT" ], "Content-Type": [ "application/json" @@ -2476,22 +2476,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b43234ca-fd03-4597-bcd8-77dcfc9b3a62" + "c2f08897-08d5-4ea4-8f7b-c6105e028d38" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2502,13 +2502,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/271e22e0-bb61-4e32-b6ed-bacef2fed0be?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/2911a553-2cda-439c-afae-0f8b0c771bae?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/271e22e0-bb61-4e32-b6ed-bacef2fed0be?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2911a553-2cda-439c-afae-0f8b0c771bae?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "271e22e0-bb61-4e32-b6ed-bacef2fed0be" + "2911a553-2cda-439c-afae-0f8b0c771bae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2523,16 +2523,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "ae9334b3-2cd5-46eb-bb7d-b873d66e505f" + "6b9d2b89-e222-43ab-b9ea-a0ec5cf676b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170217Z:ae9334b3-2cd5-46eb-bb7d-b873d66e505f" + "JIOINDIACENTRAL:20220512T100522Z:6b9d2b89-e222-43ab-b9ea-a0ec5cf676b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:02:17 GMT" + "Thu, 12 May 2022 10:05:21 GMT" ], "Content-Length": [ "21" @@ -2545,22 +2545,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c0b3709-9c74-4241-b5b0-1b99b53b6786" + "6316ec63-91e4-408b-8680-c58292725262" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2571,13 +2571,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/a4c4f420-54fd-4907-899c-3c00d0ae77bc?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/bc75191c-bba5-47c1-9c70-704a2126d345?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a4c4f420-54fd-4907-899c-3c00d0ae77bc?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc75191c-bba5-47c1-9c70-704a2126d345?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a4c4f420-54fd-4907-899c-3c00d0ae77bc" + "bc75191c-bba5-47c1-9c70-704a2126d345" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2592,16 +2592,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "f323713e-3094-4800-a4f9-4f76c5b3f48a" + "9b27a66e-0c45-4901-b5c2-c2c75aa2ad07" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170321Z:f323713e-3094-4800-a4f9-4f76c5b3f48a" + "JIOINDIACENTRAL:20220512T100633Z:9b27a66e-0c45-4901-b5c2-c2c75aa2ad07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:03:21 GMT" + "Thu, 12 May 2022 10:06:32 GMT" ], "Content-Length": [ "21" @@ -2614,19 +2614,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/271e22e0-bb61-4e32-b6ed-bacef2fed0be?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjcxZTIyZTAtYmI2MS00ZTMyLWI2ZWQtYmFjZWYyZmVkMGJlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2911a553-2cda-439c-afae-0f8b0c771bae?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjkxMWE1NTMtMmNkYS00MzljLWFmYWUtMGY4YjBjNzcxYmFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b43234ca-fd03-4597-bcd8-77dcfc9b3a62" + "c2f08897-08d5-4ea4-8f7b-c6105e028d38" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2646,22 +2646,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11993" ], "x-ms-request-id": [ - "282cf339-d220-4764-8ff7-3c7ce4205eee" + "999b5cf9-a605-40d0-ac24-5e0a7c2daa39" ], "x-ms-correlation-request-id": [ - "282cf339-d220-4764-8ff7-3c7ce4205eee" + "999b5cf9-a605-40d0-ac24-5e0a7c2daa39" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170247Z:282cf339-d220-4764-8ff7-3c7ce4205eee" + "JIOINDIACENTRAL:20220512T100553Z:999b5cf9-a605-40d0-ac24-5e0a7c2daa39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:02:47 GMT" + "Thu, 12 May 2022 10:05:52 GMT" ], "Content-Length": [ "22" @@ -2674,19 +2674,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/271e22e0-bb61-4e32-b6ed-bacef2fed0be?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS9vcGVyYXRpb25SZXN1bHRzLzI3MWUyMmUwLWJiNjEtNGUzMi1iNmVkLWJhY2VmMmZlZDBiZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/2911a553-2cda-439c-afae-0f8b0c771bae?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS9vcGVyYXRpb25SZXN1bHRzLzI5MTFhNTUzLTJjZGEtNDM5Yy1hZmFlLTBmOGIwYzc3MWJhZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b43234ca-fd03-4597-bcd8-77dcfc9b3a62" + "c2f08897-08d5-4ea4-8f7b-c6105e028d38" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2706,22 +2706,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11992" ], "x-ms-request-id": [ - "6c8ba2a1-1fe1-4116-9b89-1959afc9d760" + "b62b6bb2-e542-445e-a7bb-635dc9d7bd6d" ], "x-ms-correlation-request-id": [ - "6c8ba2a1-1fe1-4116-9b89-1959afc9d760" + "b62b6bb2-e542-445e-a7bb-635dc9d7bd6d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170248Z:6c8ba2a1-1fe1-4116-9b89-1959afc9d760" + "JIOINDIACENTRAL:20220512T100555Z:b62b6bb2-e542-445e-a7bb-635dc9d7bd6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:02:47 GMT" + "Thu, 12 May 2022 10:05:54 GMT" ], "Content-Type": [ "application/json" @@ -2731,19 +2731,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/44022a28-cef6-4046-88ea-969e94dc01e6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQwMjJhMjgtY2VmNi00MDQ2LTg4ZWEtOTY5ZTk0ZGMwMWU2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b5211247-4ade-4d56-a98d-ef802ba8bb65?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjUyMTEyNDctNGFkZS00ZDU2LWE5OGQtZWY4MDJiYThiYjY1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bb5adc0-e0f4-4d75-badb-b4c750e1fae8" + "28dca29a-f127-4dc8-a88c-aa53c134484d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2763,22 +2763,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "f664cb85-1659-4c68-8878-d6177bdc066f" + "ed0e9139-96b7-45b6-b692-ccc9bbaecfca" ], "x-ms-correlation-request-id": [ - "f664cb85-1659-4c68-8878-d6177bdc066f" + "ed0e9139-96b7-45b6-b692-ccc9bbaecfca" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170320Z:f664cb85-1659-4c68-8878-d6177bdc066f" + "JIOINDIACENTRAL:20220512T100629Z:ed0e9139-96b7-45b6-b692-ccc9bbaecfca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:03:19 GMT" + "Thu, 12 May 2022 10:06:29 GMT" ], "Content-Length": [ "22" @@ -2791,19 +2791,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/44022a28-cef6-4046-88ea-969e94dc01e6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGUvb3BlcmF0aW9uUmVzdWx0cy80NDAyMmEyOC1jZWY2LTQwNDYtODhlYS05NjllOTRkYzAxZTY/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/tables/table/operationResults/b5211247-4ade-4d56-a98d-ef802ba8bb65?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS90YWJsZXMvdGFibGUvb3BlcmF0aW9uUmVzdWx0cy9iNTIxMTI0Ny00YWRlLTRkNTYtYTk4ZC1lZjgwMmJhOGJiNjU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bb5adc0-e0f4-4d75-badb-b4c750e1fae8" + "28dca29a-f127-4dc8-a88c-aa53c134484d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2823,22 +2823,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "3abce69a-f880-443b-bae9-f3d2268bb611" + "7b7b2b2e-5ff6-49e0-8f75-220da7793bb5" ], "x-ms-correlation-request-id": [ - "3abce69a-f880-443b-bae9-f3d2268bb611" + "7b7b2b2e-5ff6-49e0-8f75-220da7793bb5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T170320Z:3abce69a-f880-443b-bae9-f3d2268bb611" + "JIOINDIACENTRAL:20220512T100631Z:7b7b2b2e-5ff6-49e0-8f75-220da7793bb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:03:20 GMT" + "Thu, 12 May 2022 10:06:31 GMT" ], "Content-Type": [ "application/json" @@ -2848,19 +2848,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a4c4f420-54fd-4907-899c-3c00d0ae77bc?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTRjNGY0MjAtNTRmZC00OTA3LTg5OWMtM2MwMGQwYWU3N2JjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bc75191c-bba5-47c1-9c70-704a2126d345?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmM3NTE5MWMtYmJhNS00N2MxLTljNzAtNzA0YTIxMjZkMzQ1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c0b3709-9c74-4241-b5b0-1b99b53b6786" + "6316ec63-91e4-408b-8680-c58292725262" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2880,22 +2880,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-request-id": [ - "0517cdd9-c1a0-4026-9802-b1834b9f0187" + "077c8e75-ee8a-46d7-8ad3-f84afb7dd017" ], "x-ms-correlation-request-id": [ - "0517cdd9-c1a0-4026-9802-b1834b9f0187" + "077c8e75-ee8a-46d7-8ad3-f84afb7dd017" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170352Z:0517cdd9-c1a0-4026-9802-b1834b9f0187" + "JIOINDIACENTRAL:20220512T100703Z:077c8e75-ee8a-46d7-8ad3-f84afb7dd017" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:03:51 GMT" + "Thu, 12 May 2022 10:07:03 GMT" ], "Content-Length": [ "22" @@ -2908,19 +2908,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/a4c4f420-54fd-4907-899c-3c00d0ae77bc?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS9vcGVyYXRpb25SZXN1bHRzL2E0YzRmNDIwLTU0ZmQtNDkwNy04OTljLTNjMDBkMGFlNzdiYz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2749/cassandraKeyspaces/keyspace1/operationResults/bc75191c-bba5-47c1-9c70-704a2126d345?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDkvY2Fzc2FuZHJhS2V5c3BhY2VzL2tleXNwYWNlMS9vcGVyYXRpb25SZXN1bHRzL2JjNzUxOTFjLWJiYTUtNDdjMS05YzcwLTcwNGEyMTI2ZDM0NT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c0b3709-9c74-4241-b5b0-1b99b53b6786" + "6316ec63-91e4-408b-8680-c58292725262" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2940,22 +2940,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-request-id": [ - "b97c2ae0-d943-48c2-9f8d-d5d512da25ee" + "82ed3e68-c5c4-421b-90f5-60c5716cbdb9" ], "x-ms-correlation-request-id": [ - "b97c2ae0-d943-48c2-9f8d-d5d512da25ee" + "82ed3e68-c5c4-421b-90f5-60c5716cbdb9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170352Z:b97c2ae0-d943-48c2-9f8d-d5d512da25ee" + "JIOINDIACENTRAL:20220512T100704Z:82ed3e68-c5c4-421b-90f5-60c5716cbdb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:03:51 GMT" + "Thu, 12 May 2022 10:07:04 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraCreateUpdateGetCmdletsByPiping.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraCreateUpdateGetCmdletsByPiping.json index f544cf684105..356496a9aa57 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraCreateUpdateGetCmdletsByPiping.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraCreateUpdateGetCmdletsByPiping.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f1ed057c-81da-4730-8d7c-8a3bb1ffe926" + "2244ba60-097d-4eac-8d90-e76cfa7d2c37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "2080f202-f705-4c17-828c-f2c0edc92bce" + "42076894-8029-4723-b60f-8c6baf98f502" ], "x-ms-correlation-request-id": [ - "2080f202-f705-4c17-828c-f2c0edc92bce" + "42076894-8029-4723-b60f-8c6baf98f502" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164732Z:2080f202-f705-4c17-828c-f2c0edc92bce" + "CENTRALINDIA:20220512T094933Z:42076894-8029-4723-b60f-8c6baf98f502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:47:31 GMT" + "Thu, 12 May 2022 09:49:32 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "f219f837-0740-4823-8f55-c8982bc57099" + "c3781dfb-af9e-42e0-a259-0a302115b906" ], "x-ms-correlation-request-id": [ - "f219f837-0740-4823-8f55-c8982bc57099" + "c3781dfb-af9e-42e0-a259-0a302115b906" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164732Z:f219f837-0740-4823-8f55-c8982bc57099" + "CENTRALINDIA:20220512T094934Z:c3781dfb-af9e-42e0-a259-0a302115b906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:47:31 GMT" + "Thu, 12 May 2022 09:49:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11992" ], "x-ms-request-id": [ - "50d87aae-1f97-4900-b2dc-dfe30c881449" + "d38d2b9f-788e-4038-8c6b-eacfa0ca5c07" ], "x-ms-correlation-request-id": [ - "50d87aae-1f97-4900-b2dc-dfe30c881449" + "d38d2b9f-788e-4038-8c6b-eacfa0ca5c07" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165043Z:50d87aae-1f97-4900-b2dc-dfe30c881449" + "CENTRALINDIA:20220512T095246Z:d38d2b9f-788e-4038-8c6b-eacfa0ca5c07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:50:42 GMT" + "Thu, 12 May 2022 09:52:46 GMT" ], "Content-Length": [ "2469" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:49:57.7669914Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2745.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2745.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f4ef070c-ddec-47b4-a8ea-7bdc85dc6aaf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:51:54.3497602Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2745.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2745.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"dd59c68d-d001-4c91-a988-b3e8a484babc\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f4ee403-85c8-4931-85ae-f3326237cfdc" + "978c8821-5865-401b-992e-4849af8e4e0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11999" ], "x-ms-request-id": [ - "10f5be12-814b-4c5a-a2b2-65d6937f4b3d" + "3717adec-96c7-45b4-9779-ebdb19f6c4f1" ], "x-ms-correlation-request-id": [ - "10f5be12-814b-4c5a-a2b2-65d6937f4b3d" + "3717adec-96c7-45b4-9779-ebdb19f6c4f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165043Z:10f5be12-814b-4c5a-a2b2-65d6937f4b3d" + "CENTRALINDIA:20220512T095249Z:3717adec-96c7-45b4-9779-ebdb19f6c4f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:50:42 GMT" + "Thu, 12 May 2022 09:52:49 GMT" ], "Content-Length": [ "2469" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:49:57.7669914Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2745.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2745.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f4ef070c-ddec-47b4-a8ea-7bdc85dc6aaf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:51:54.3497602Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2745.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2745.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"dd59c68d-d001-4c91-a988-b3e8a484babc\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/operationResults/c371a069-7858-42c4-b828-49a70f87f372?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/operationResults/d1ca3325-8c5a-4822-ad50-db101a6b8e9e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c371a069-7858-42c4-b828-49a70f87f372" + "d1ca3325-8c5a-4822-ad50-db101a6b8e9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c371a069-7858-42c4-b828-49a70f87f372?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1ca3325-8c5a-4822-ad50-db101a6b8e9e?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,44 +300,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "10619bef-12c9-4195-8d77-d3b10364dc3a" + "b38f8c6d-397d-4472-bd36-b17452615a56" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164741Z:10619bef-12c9-4195-8d77-d3b10364dc3a" + "CENTRALINDIA:20220512T094944Z:b38f8c6d-397d-4472-bd36-b17452615a56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:47:41 GMT" + "Thu, 12 May 2022 09:49:44 GMT" ], "Content-Length": [ - "2066" + "2067" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:47:38.516948Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f4ef070c-ddec-47b4-a8ea-7bdc85dc6aaf\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T09:49:42.0544486Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"dd59c68d-d001-4c91-a988-b3e8a484babc\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c371a069-7858-42c4-b828-49a70f87f372?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzM3MWEwNjktNzg1OC00MmM0LWI4MjgtNDlhNzBmODdmMzcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1ca3325-8c5a-4822-ad50-db101a6b8e9e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFjYTMzMjUtOGM1YS00ODIyLWFkNTAtZGIxMDFhNmI4ZTllP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -357,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11998" ], "x-ms-request-id": [ - "dbdc0dde-0376-4cd3-a205-54432052c148" + "987289a3-00aa-4eea-955d-5ab4f60fd00f" ], "x-ms-correlation-request-id": [ - "dbdc0dde-0376-4cd3-a205-54432052c148" + "987289a3-00aa-4eea-955d-5ab4f60fd00f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164811Z:dbdc0dde-0376-4cd3-a205-54432052c148" + "CENTRALINDIA:20220512T095015Z:987289a3-00aa-4eea-955d-5ab4f60fd00f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:48:11 GMT" + "Thu, 12 May 2022 09:50:14 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c371a069-7858-42c4-b828-49a70f87f372?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzM3MWEwNjktNzg1OC00MmM0LWI4MjgtNDlhNzBmODdmMzcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1ca3325-8c5a-4822-ad50-db101a6b8e9e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFjYTMzMjUtOGM1YS00ODIyLWFkNTAtZGIxMDFhNmI4ZTllP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11997" ], "x-ms-request-id": [ - "8c175e80-5ea4-4582-b2df-9c90bfc5c4cc" + "37494041-c390-4468-a4e8-e4470749d35b" ], "x-ms-correlation-request-id": [ - "8c175e80-5ea4-4582-b2df-9c90bfc5c4cc" + "37494041-c390-4468-a4e8-e4470749d35b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164841Z:8c175e80-5ea4-4582-b2df-9c90bfc5c4cc" + "CENTRALINDIA:20220512T095045Z:37494041-c390-4468-a4e8-e4470749d35b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:48:41 GMT" + "Thu, 12 May 2022 09:50:45 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c371a069-7858-42c4-b828-49a70f87f372?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzM3MWEwNjktNzg1OC00MmM0LWI4MjgtNDlhNzBmODdmMzcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1ca3325-8c5a-4822-ad50-db101a6b8e9e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFjYTMzMjUtOGM1YS00ODIyLWFkNTAtZGIxMDFhNmI4ZTllP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11996" ], "x-ms-request-id": [ - "655987bd-db8f-40ef-b181-1633ecedffed" + "48822137-1d42-4eab-a77b-5e3a01a5e5d8" ], "x-ms-correlation-request-id": [ - "655987bd-db8f-40ef-b181-1633ecedffed" + "48822137-1d42-4eab-a77b-5e3a01a5e5d8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164912Z:655987bd-db8f-40ef-b181-1633ecedffed" + "CENTRALINDIA:20220512T095115Z:48822137-1d42-4eab-a77b-5e3a01a5e5d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:49:12 GMT" + "Thu, 12 May 2022 09:51:15 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c371a069-7858-42c4-b828-49a70f87f372?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzM3MWEwNjktNzg1OC00MmM0LWI4MjgtNDlhNzBmODdmMzcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1ca3325-8c5a-4822-ad50-db101a6b8e9e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFjYTMzMjUtOGM1YS00ODIyLWFkNTAtZGIxMDFhNmI4ZTllP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11995" ], "x-ms-request-id": [ - "107d1ae5-692c-497c-8bd7-a21c914b3f5b" + "d55ea198-ef70-467f-8930-52a0f4c03ba8" ], "x-ms-correlation-request-id": [ - "107d1ae5-692c-497c-8bd7-a21c914b3f5b" + "d55ea198-ef70-467f-8930-52a0f4c03ba8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164942Z:107d1ae5-692c-497c-8bd7-a21c914b3f5b" + "CENTRALINDIA:20220512T095145Z:d55ea198-ef70-467f-8930-52a0f4c03ba8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:49:41 GMT" + "Thu, 12 May 2022 09:51:45 GMT" ], "Content-Length": [ "21" @@ -565,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c371a069-7858-42c4-b828-49a70f87f372?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzM3MWEwNjktNzg1OC00MmM0LWI4MjgtNDlhNzBmODdmMzcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1ca3325-8c5a-4822-ad50-db101a6b8e9e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFjYTMzMjUtOGM1YS00ODIyLWFkNTAtZGIxMDFhNmI4ZTllP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11994" ], "x-ms-request-id": [ - "6572f486-4a4c-466d-8d4f-7f20c77dafd0" + "81b3417e-bd58-4c19-8310-ec06e778923a" ], "x-ms-correlation-request-id": [ - "6572f486-4a4c-466d-8d4f-7f20c77dafd0" + "81b3417e-bd58-4c19-8310-ec06e778923a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165012Z:6572f486-4a4c-466d-8d4f-7f20c77dafd0" + "CENTRALINDIA:20220512T095216Z:81b3417e-bd58-4c19-8310-ec06e778923a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:50:12 GMT" + "Thu, 12 May 2022 09:52:15 GMT" ], "Content-Length": [ "21" @@ -625,19 +625,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c371a069-7858-42c4-b828-49a70f87f372?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzM3MWEwNjktNzg1OC00MmM0LWI4MjgtNDlhNzBmODdmMzcyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1ca3325-8c5a-4822-ad50-db101a6b8e9e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFjYTMzMjUtOGM1YS00ODIyLWFkNTAtZGIxMDFhNmI4ZTllP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc841f-4bbf-4bbb-892a-9b97877e0ce0" + "bd31ac58-c543-4de8-84cd-ad6a50898e4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +657,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11993" ], "x-ms-request-id": [ - "746ce826-8a82-4875-b29a-d7be76baa010" + "897edbc8-4842-4c77-91a7-7ee3374c4b73" ], "x-ms-correlation-request-id": [ - "746ce826-8a82-4875-b29a-d7be76baa010" + "897edbc8-4842-4c77-91a7-7ee3374c4b73" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165042Z:746ce826-8a82-4875-b29a-d7be76baa010" + "CENTRALINDIA:20220512T095246Z:897edbc8-4842-4c77-91a7-7ee3374c4b73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:50:42 GMT" + "Thu, 12 May 2022 09:52:45 GMT" ], "Content-Length": [ "22" @@ -685,22 +685,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "251d1782-392e-4542-9861-1552a8c2567b" + "0fe81dbc-686a-495b-b70e-84028ce12a9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,47 +720,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11999" ], "x-ms-request-id": [ - "f912c34a-4bc7-497d-8422-6c2d60a38f66" + "c8b02d4a-845e-40fc-b37a-38be3bf58c56" ], "x-ms-correlation-request-id": [ - "f912c34a-4bc7-497d-8422-6c2d60a38f66" + "c8b02d4a-845e-40fc-b37a-38be3bf58c56" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165044Z:f912c34a-4bc7-497d-8422-6c2d60a38f66" + "CENTRALINDIA:20220512T095252Z:c8b02d4a-845e-40fc-b37a-38be3bf58c56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:50:43 GMT" + "Thu, 12 May 2022 09:52:52 GMT" ], "Content-Length": [ - "5576" + "6285" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 251d1782-392e-4542-9861-1552a8c2567b, Request URI: /apps/82e8d61e-7e34-44a8-ba4d-65564f9180e4/services/705135cc-f993-4307-9854-263daf80b691/partitions/4e7e59a8-1e83-4ab9-9866-20369904f4f4/replicas/132911211064105748s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T16:50:43.9087202Z, RequestEndTime: 2022-03-08T16:50:43.9187201Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:49:33.7677345Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.107,\\\\\\\"memory\\\\\\\":466254352.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0094,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:49:43.7778806Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.974,\\\\\\\"memory\\\\\\\":465688520.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0362,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:49:53.7880127Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.431,\\\\\\\"memory\\\\\\\":464870180.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0133,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:50:03.7982184Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.861,\\\\\\\"memory\\\\\\\":464484444.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0092,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:50:13.8083910Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.164,\\\\\\\"memory\\\\\\\":463944824.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0266,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:50:33.8186446Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.325,\\\\\\\"memory\\\\\\\":467170596.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0101,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T16:50:43.9087202Z; ResponseTime: 2022-03-08T16:50:43.9187201Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/82e8d61e-7e34-44a8-ba4d-65564f9180e4/services/705135cc-f993-4307-9854-263daf80b691/partitions/4e7e59a8-1e83-4ab9-9866-20369904f4f4/replicas/132911211064105748s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.009, ActivityId: 251d1782-392e-4542-9861-1552a8c2567b, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9087202Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0103},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9087305Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0032},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9087337Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1885},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9089222Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4155},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9103377Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0659},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9104036Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":452,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T16:50:43.9087202Z; ResponseTime: 2022-03-08T16:50:43.9187201Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/82e8d61e-7e34-44a8-ba4d-65564f9180e4/services/705135cc-f993-4307-9854-263daf80b691/partitions/4e7e59a8-1e83-4ab9-9866-20369904f4f4/replicas/132911211064105747s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.214, ActivityId: 251d1782-392e-4542-9861-1552a8c2567b, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9087202Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0062},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9087264Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0016},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9087280Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0799},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9088079Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8319},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9106398Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0174},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:50:43.9106572Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":452,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/db2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 0fe81dbc-686a-495b-b70e-84028ce12a9e, Request URI: /apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6a5e406b-fbb3-4b26-8fd6-e0644a5c01f5/partitions/2fc388c0-51aa-45f1-b125-033473881840/replicas/132964575040127231s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T09:52:52.8039604Z, RequestEndTime: 2022-05-12T09:52:52.8039604Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:51:54.7647656Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.711,\\\\\\\"memory\\\\\\\":647885912.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0443,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:52:04.7746401Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.249,\\\\\\\"memory\\\\\\\":647760888.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.021,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:52:14.7745085Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.661,\\\\\\\"memory\\\\\\\":647418800.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0229,\\\\\\\"availableThreads\\\\\\\":32759,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:52:24.7843612Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.529,\\\\\\\"memory\\\\\\\":647427672.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0221,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:52:34.7942272Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.327,\\\\\\\"memory\\\\\\\":647533004.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0253,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:52:44.8040881Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.290,\\\\\\\"memory\\\\\\\":647750880.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0231,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T09:52:52.8039604Z; ResponseTime: 2022-05-12T09:52:52.8039604Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6a5e406b-fbb3-4b26-8fd6-e0644a5c01f5/partitions/2fc388c0-51aa-45f1-b125-033473881840/replicas/132964575040127231s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.956, ActivityId: 0fe81dbc-686a-495b-b70e-84028ce12a9e, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8039604Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0082},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8039686Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8039712Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1016},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8040728Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2868},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8053596Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.075},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8054346Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T09:52:52.7039711Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T09:52:52.7039711Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T09:52:52.7039711Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":454,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T09:52:52.8039604Z; ResponseTime: 2022-05-12T09:52:52.8039604Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6a5e406b-fbb3-4b26-8fd6-e0644a5c01f5/partitions/2fc388c0-51aa-45f1-b125-033473881840/replicas/132964575040127230s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.828, ActivityId: 0fe81dbc-686a-495b-b70e-84028ce12a9e, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8039604Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8039630Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8039638Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.055},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8040188Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3165},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8053353Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0528},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:52:52.8053881Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T09:52:52.7539671Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T09:52:52.7539671Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T09:52:52.7639620Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":454,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/db2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "251d1782-392e-4542-9861-1552a8c2567b" + "0fe81dbc-686a-495b-b70e-84028ce12a9e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +780,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11997" ], "x-ms-request-id": [ - "d93c9ad3-5af7-4ec0-8d82-e01717f76007" + "fa6a01dc-2a25-4e14-94bc-9b309400ab69" ], "x-ms-correlation-request-id": [ - "d93c9ad3-5af7-4ec0-8d82-e01717f76007" + "fa6a01dc-2a25-4e14-94bc-9b309400ab69" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165116Z:d93c9ad3-5af7-4ec0-8d82-e01717f76007" + "CENTRALINDIA:20220512T095326Z:fa6a01dc-2a25-4e14-94bc-9b309400ab69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:51:16 GMT" + "Thu, 12 May 2022 09:53:26 GMT" ], "Content-Length": [ "391" @@ -804,26 +804,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"nKgwAA==\",\r\n \"_etag\": \"\\\"0000f905-0000-0100-0000-6227896d0000\\\"\",\r\n \"_ts\": 1646758253\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"Tq15AA==\",\r\n \"_etag\": \"\\\"0000f806-0000-0100-0000-627cd8fe0000\\\"\",\r\n \"_ts\": 1652349182\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3899fd77-177d-4844-a3f1-4044d7bb44a4" + "b0cdbed9-cd04-45d4-997e-5cbc4fb22439" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -843,22 +843,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11998" ], "x-ms-request-id": [ - "e98449de-34b9-4cf5-9b0e-0705be5a07da" + "11ee9dfa-ceb9-4052-9af0-1677df947fe7" ], "x-ms-correlation-request-id": [ - "e98449de-34b9-4cf5-9b0e-0705be5a07da" + "11ee9dfa-ceb9-4052-9af0-1677df947fe7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165117Z:e98449de-34b9-4cf5-9b0e-0705be5a07da" + "JIOINDIACENTRAL:20220512T095327Z:11ee9dfa-ceb9-4052-9af0-1677df947fe7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:51:16 GMT" + "Thu, 12 May 2022 09:53:27 GMT" ], "Content-Length": [ "391" @@ -867,23 +867,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"nKgwAA==\",\r\n \"_etag\": \"\\\"0000f905-0000-0100-0000-6227896d0000\\\"\",\r\n \"_ts\": 1646758253\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"Tq15AA==\",\r\n \"_etag\": \"\\\"0000f806-0000-0100-0000-627cd8fe0000\\\"\",\r\n \"_ts\": 1652349182\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3899fd77-177d-4844-a3f1-4044d7bb44a4" + "b0cdbed9-cd04-45d4-997e-5cbc4fb22439" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -903,22 +903,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11996" ], "x-ms-request-id": [ - "905489ee-98f9-4672-9b51-42bd92860366" + "a61491d8-a052-4626-b3dc-9bf4793ea16d" ], "x-ms-correlation-request-id": [ - "905489ee-98f9-4672-9b51-42bd92860366" + "a61491d8-a052-4626-b3dc-9bf4793ea16d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165148Z:905489ee-98f9-4672-9b51-42bd92860366" + "JIOINDIACENTRAL:20220512T095401Z:a61491d8-a052-4626-b3dc-9bf4793ea16d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:51:47 GMT" + "Thu, 12 May 2022 09:54:01 GMT" ], "Content-Length": [ "391" @@ -927,26 +927,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"nKgwAA==\",\r\n \"_etag\": \"\\\"0000f905-0000-0100-0000-6227896d0000\\\"\",\r\n \"_ts\": 1646758253\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"Tq15AA==\",\r\n \"_etag\": \"\\\"0000f806-0000-0100-0000-627cd8fe0000\\\"\",\r\n \"_ts\": 1652349182\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad038f72-939c-4cf3-a9fe-61b51bfd3f23" + "97f871f1-d7ea-4aab-b2a2-0e56abe2d783" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -966,22 +966,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11996" ], "x-ms-request-id": [ - "625e0219-70dc-4d57-95c9-5a3f9f1e836c" + "061fb7a8-8104-445d-9af0-e2e21b6d9643" ], "x-ms-correlation-request-id": [ - "625e0219-70dc-4d57-95c9-5a3f9f1e836c" + "061fb7a8-8104-445d-9af0-e2e21b6d9643" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165148Z:625e0219-70dc-4d57-95c9-5a3f9f1e836c" + "JIOINDIACENTRAL:20220512T095405Z:061fb7a8-8104-445d-9af0-e2e21b6d9643" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:51:47 GMT" + "Thu, 12 May 2022 09:54:04 GMT" ], "Content-Length": [ "391" @@ -990,23 +990,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"nKgwAA==\",\r\n \"_etag\": \"\\\"0000f905-0000-0100-0000-6227896d0000\\\"\",\r\n \"_ts\": 1646758253\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"Tq15AA==\",\r\n \"_etag\": \"\\\"0000f806-0000-0100-0000-627cd8fe0000\\\"\",\r\n \"_ts\": 1652349182\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad038f72-939c-4cf3-a9fe-61b51bfd3f23" + "97f871f1-d7ea-4aab-b2a2-0e56abe2d783" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1026,22 +1026,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11994" ], "x-ms-request-id": [ - "d6130eb2-2d1a-45bd-8acc-0146549a2b99" + "226e056d-b8b9-4057-bb0b-114ee886cf01" ], "x-ms-correlation-request-id": [ - "d6130eb2-2d1a-45bd-8acc-0146549a2b99" + "226e056d-b8b9-4057-bb0b-114ee886cf01" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165219Z:d6130eb2-2d1a-45bd-8acc-0146549a2b99" + "JIOINDIACENTRAL:20220512T095438Z:226e056d-b8b9-4057-bb0b-114ee886cf01" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:52:19 GMT" + "Thu, 12 May 2022 09:54:37 GMT" ], "Content-Length": [ "391" @@ -1050,26 +1050,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"nKgwAA==\",\r\n \"_etag\": \"\\\"0000f905-0000-0100-0000-6227896d0000\\\"\",\r\n \"_ts\": 1646758253\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"Tq15AA==\",\r\n \"_etag\": \"\\\"0000f806-0000-0100-0000-627cd8fe0000\\\"\",\r\n \"_ts\": 1652349182\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edf4d849-0f26-4f97-8cca-29f3a11b7b5b" + "cba15261-35b8-4592-bdda-76272da77a47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1089,22 +1089,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11999" ], "x-ms-request-id": [ - "fa1d0998-5b14-4d43-bf18-af8bf5bce40b" + "97c6b3ea-3b01-49c1-8433-189a0b37d96f" ], "x-ms-correlation-request-id": [ - "fa1d0998-5b14-4d43-bf18-af8bf5bce40b" + "97c6b3ea-3b01-49c1-8433-189a0b37d96f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165355Z:fa1d0998-5b14-4d43-bf18-af8bf5bce40b" + "CENTRALINDIA:20220512T095625Z:97c6b3ea-3b01-49c1-8433-189a0b37d96f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:55 GMT" + "Thu, 12 May 2022 09:56:24 GMT" ], "Content-Length": [ "391" @@ -1113,26 +1113,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"nKgwAA==\",\r\n \"_etag\": \"\\\"0000f905-0000-0100-0000-6227896d0000\\\"\",\r\n \"_ts\": 1646758253\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"Tq15AA==\",\r\n \"_etag\": \"\\\"0000f806-0000-0100-0000-627cd8fe0000\\\"\",\r\n \"_ts\": 1652349182\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\"\r\n },\r\n \"options\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "251d1782-392e-4542-9861-1552a8c2567b" + "0fe81dbc-686a-495b-b70e-84028ce12a9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,13 +1149,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/e93de2c3-315b-4a61-971a-2a6149fe86bb?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/d0b6a139-e08e-4fea-91c9-0098b7600e6c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e93de2c3-315b-4a61-971a-2a6149fe86bb?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d0b6a139-e08e-4fea-91c9-0098b7600e6c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e93de2c3-315b-4a61-971a-2a6149fe86bb" + "d0b6a139-e08e-4fea-91c9-0098b7600e6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,19 +1167,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "3c1fb65f-7a59-43e9-a672-5f3fe22204bc" + "2f3e4322-b4ea-4ffb-b5b1-b87cea6f4556" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165046Z:3c1fb65f-7a59-43e9-a672-5f3fe22204bc" + "CENTRALINDIA:20220512T095255Z:2f3e4322-b4ea-4ffb-b5b1-b87cea6f4556" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:50:45 GMT" + "Thu, 12 May 2022 09:52:55 GMT" ], "Content-Length": [ "21" @@ -1192,22 +1192,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3899fd77-177d-4844-a3f1-4044d7bb44a4" + "b0cdbed9-cd04-45d4-997e-5cbc4fb22439" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,13 +1224,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/43da81a2-7651-4ca8-b0e6-70972bf7e6b0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/a1b113e9-40b8-4bd3-9634-b297130d49d6?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43da81a2-7651-4ca8-b0e6-70972bf7e6b0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a1b113e9-40b8-4bd3-9634-b297130d49d6?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "43da81a2-7651-4ca8-b0e6-70972bf7e6b0" + "a1b113e9-40b8-4bd3-9634-b297130d49d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,19 +1242,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-correlation-request-id": [ - "e97090ea-aebd-467a-8760-4ae01297f9d7" + "4945fe2f-6027-4689-8487-58e0095a2ad2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165117Z:e97090ea-aebd-467a-8760-4ae01297f9d7" + "JIOINDIACENTRAL:20220512T095330Z:4945fe2f-6027-4689-8487-58e0095a2ad2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:51:17 GMT" + "Thu, 12 May 2022 09:53:29 GMT" ], "Content-Length": [ "21" @@ -1267,22 +1267,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\"\r\n },\r\n \"options\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ad038f72-939c-4cf3-a9fe-61b51bfd3f23" + "97f871f1-d7ea-4aab-b2a2-0e56abe2d783" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,13 +1299,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/a8c60674-924b-46c4-b5fe-38e6853a390a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/ffd240bb-698e-4e3c-9229-15ed74afcb05?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a8c60674-924b-46c4-b5fe-38e6853a390a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ffd240bb-698e-4e3c-9229-15ed74afcb05?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a8c60674-924b-46c4-b5fe-38e6853a390a" + "ffd240bb-698e-4e3c-9229-15ed74afcb05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,19 +1317,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "cd051441-4039-415c-beaf-4b99832abc0a" + "04ad5c23-1d89-4de3-bf04-34db5e4005ff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165149Z:cd051441-4039-415c-beaf-4b99832abc0a" + "JIOINDIACENTRAL:20220512T095407Z:04ad5c23-1d89-4de3-bf04-34db5e4005ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:51:48 GMT" + "Thu, 12 May 2022 09:54:06 GMT" ], "Content-Length": [ "21" @@ -1342,19 +1342,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e93de2c3-315b-4a61-971a-2a6149fe86bb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTkzZGUyYzMtMzE1Yi00YTYxLTk3MWEtMmE2MTQ5ZmU4NmJiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d0b6a139-e08e-4fea-91c9-0098b7600e6c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDBiNmExMzktZTA4ZS00ZmVhLTkxYzktMDA5OGI3NjAwZTZjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "251d1782-392e-4542-9861-1552a8c2567b" + "0fe81dbc-686a-495b-b70e-84028ce12a9e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1374,22 +1374,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11998" ], "x-ms-request-id": [ - "4a26304d-b4aa-489a-9dec-2ee402a58eca" + "0197468d-ea1c-46e4-b119-68ea887bc58f" ], "x-ms-correlation-request-id": [ - "4a26304d-b4aa-489a-9dec-2ee402a58eca" + "0197468d-ea1c-46e4-b119-68ea887bc58f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165116Z:4a26304d-b4aa-489a-9dec-2ee402a58eca" + "CENTRALINDIA:20220512T095325Z:0197468d-ea1c-46e4-b119-68ea887bc58f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:51:16 GMT" + "Thu, 12 May 2022 09:53:25 GMT" ], "Content-Length": [ "22" @@ -1402,19 +1402,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43da81a2-7651-4ca8-b0e6-70972bf7e6b0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDNkYTgxYTItNzY1MS00Y2E4LWIwZTYtNzA5NzJiZjdlNmIwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a1b113e9-40b8-4bd3-9634-b297130d49d6?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTFiMTEzZTktNDBiOC00YmQzLTk2MzQtYjI5NzEzMGQ0OWQ2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3899fd77-177d-4844-a3f1-4044d7bb44a4" + "b0cdbed9-cd04-45d4-997e-5cbc4fb22439" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1434,22 +1434,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11997" ], "x-ms-request-id": [ - "039d2ba8-b5b7-41f3-b27c-6e29c575b91f" + "215dabe4-5524-42e9-95c4-0a2c212a73d6" ], "x-ms-correlation-request-id": [ - "039d2ba8-b5b7-41f3-b27c-6e29c575b91f" + "215dabe4-5524-42e9-95c4-0a2c212a73d6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165148Z:039d2ba8-b5b7-41f3-b27c-6e29c575b91f" + "JIOINDIACENTRAL:20220512T095400Z:215dabe4-5524-42e9-95c4-0a2c212a73d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:51:47 GMT" + "Thu, 12 May 2022 09:54:00 GMT" ], "Content-Length": [ "22" @@ -1462,19 +1462,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a8c60674-924b-46c4-b5fe-38e6853a390a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYThjNjA2NzQtOTI0Yi00NmM0LWI1ZmUtMzhlNjg1M2EzOTBhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ffd240bb-698e-4e3c-9229-15ed74afcb05?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmZkMjQwYmItNjk4ZS00ZTNjLTkyMjktMTVlZDc0YWZjYjA1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad038f72-939c-4cf3-a9fe-61b51bfd3f23" + "97f871f1-d7ea-4aab-b2a2-0e56abe2d783" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1494,22 +1494,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11995" ], "x-ms-request-id": [ - "17f3707c-b909-4f00-ab4a-c6c70184eeb9" + "7d6d7704-a705-4053-bb8e-a9b5ace017dc" ], "x-ms-correlation-request-id": [ - "17f3707c-b909-4f00-ab4a-c6c70184eeb9" + "7d6d7704-a705-4053-bb8e-a9b5ace017dc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165219Z:17f3707c-b909-4f00-ab4a-c6c70184eeb9" + "JIOINDIACENTRAL:20220512T095437Z:7d6d7704-a705-4053-bb8e-a9b5ace017dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:52:19 GMT" + "Thu, 12 May 2022 09:54:37 GMT" ], "Content-Length": [ "22" @@ -1522,22 +1522,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25966496-633b-4deb-91ac-a1ab84669d6f" + "010b1632-75c7-4efe-a291-df19c5a5780c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1557,47 +1557,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11981" ], "x-ms-request-id": [ - "e0729126-7974-4013-a6ba-6a0c8039d985" + "4d0da8eb-7109-4749-932f-bc75037fe93f" ], "x-ms-correlation-request-id": [ - "e0729126-7974-4013-a6ba-6a0c8039d985" + "4d0da8eb-7109-4749-932f-bc75037fe93f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165220Z:e0729126-7974-4013-a6ba-6a0c8039d985" + "JIOINDIACENTRAL:20220512T095439Z:4d0da8eb-7109-4749-932f-bc75037fe93f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:52:20 GMT" + "Thu, 12 May 2022 09:54:39 GMT" ], "Content-Length": [ - "5591" + "6302" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 25966496-633b-4deb-91ac-a1ab84669d6f, Request URI: /apps/82e8d61e-7e34-44a8-ba4d-65564f9180e4/services/705135cc-f993-4307-9854-263daf80b691/partitions/4e7e59a8-1e83-4ab9-9866-20369904f4f4/replicas/132911211064105748s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T16:52:20.0401682Z, RequestEndTime: 2022-03-08T16:52:20.0401682Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:51:23.8593357Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.485,\\\\\\\"memory\\\\\\\":465183468.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0185,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:51:33.8694904Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.348,\\\\\\\"memory\\\\\\\":464783748.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0129,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:51:43.8796206Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.950,\\\\\\\"memory\\\\\\\":467413784.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:51:53.8897200Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.856,\\\\\\\"memory\\\\\\\":467258412.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0292,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:52:03.8999253Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.892,\\\\\\\"memory\\\\\\\":466767372.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0107,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:52:13.9100352Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.643,\\\\\\\"memory\\\\\\\":466076352.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0288,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T16:52:20.0401682Z; ResponseTime: 2022-03-08T16:52:20.0401682Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/82e8d61e-7e34-44a8-ba4d-65564f9180e4/services/705135cc-f993-4307-9854-263daf80b691/partitions/4e7e59a8-1e83-4ab9-9866-20369904f4f4/replicas/132911211064105748s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.368, ActivityId: 25966496-633b-4deb-91ac-a1ab84669d6f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0401682Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0174},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0401856Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0036},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0401892Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2393},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0404285Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8671},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0422956Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0261},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0423217Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":468,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T16:52:20.0401682Z; ResponseTime: 2022-03-08T16:52:20.0401682Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/82e8d61e-7e34-44a8-ba4d-65564f9180e4/services/705135cc-f993-4307-9854-263daf80b691/partitions/4e7e59a8-1e83-4ab9-9866-20369904f4f4/replicas/132911211064105749s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.994, ActivityId: 25966496-633b-4deb-91ac-a1ab84669d6f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0401682Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0053},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0401735Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0018},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0401753Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2105},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0403858Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3972},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0417830Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0542},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:52:20.0418372Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":468,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/db2/colls/table, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 010b1632-75c7-4efe-a291-df19c5a5780c, Request URI: /apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6a5e406b-fbb3-4b26-8fd6-e0644a5c01f5/partitions/2fc388c0-51aa-45f1-b125-033473881840/replicas/132964575040127231s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T09:54:39.7225258Z, RequestEndTime: 2022-05-12T09:54:39.7225258Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:53:44.8632421Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.246,\\\\\\\"memory\\\\\\\":647399684.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:53:54.8830732Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.517,\\\\\\\"memory\\\\\\\":647361340.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0162,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:54:04.8929407Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.212,\\\\\\\"memory\\\\\\\":647269320.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0193,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:54:14.9028094Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.700,\\\\\\\"memory\\\\\\\":646784344.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0158,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:54:24.9127101Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.045,\\\\\\\"memory\\\\\\\":646669732.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0169,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T09:54:34.9325863Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.551,\\\\\\\"memory\\\\\\\":646547884.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0125,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T09:54:39.7225258Z; ResponseTime: 2022-05-12T09:54:39.7225258Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6a5e406b-fbb3-4b26-8fd6-e0644a5c01f5/partitions/2fc388c0-51aa-45f1-b125-033473881840/replicas/132964575040127231s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.272, ActivityId: 010b1632-75c7-4efe-a291-df19c5a5780c, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7225258Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0116},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7225374Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0109},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7225483Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1794},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7227277Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6065},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7243342Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0391},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7243733Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T09:54:37.0725581Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T09:54:37.0725581Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T09:54:37.0725581Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":468,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T09:54:39.7225258Z; ResponseTime: 2022-05-12T09:54:39.7225258Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6a5e406b-fbb3-4b26-8fd6-e0644a5c01f5/partitions/2fc388c0-51aa-45f1-b125-033473881840/replicas/132964575040127230s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.165, ActivityId: 010b1632-75c7-4efe-a291-df19c5a5780c, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7225258Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7225289Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.001},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7225299Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1435},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7226734Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5299},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7242033Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0559},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T09:54:39.7242592Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T09:54:39.7225258Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T09:54:39.7225258Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T09:54:39.7225258Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":468,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/db2/colls/table, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25966496-633b-4deb-91ac-a1ab84669d6f" + "010b1632-75c7-4efe-a291-df19c5a5780c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1617,22 +1617,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11979" ], "x-ms-request-id": [ - "70445aae-b468-470d-8e97-80a0384b0437" + "52f0d41a-876a-4468-bde8-3e6d73055401" ], "x-ms-correlation-request-id": [ - "70445aae-b468-470d-8e97-80a0384b0437" + "52f0d41a-876a-4468-bde8-3e6d73055401" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165252Z:70445aae-b468-470d-8e97-80a0384b0437" + "JIOINDIACENTRAL:20220512T095515Z:52f0d41a-876a-4468-bde8-3e6d73055401" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:52:51 GMT" + "Thu, 12 May 2022 09:55:15 GMT" ], "Content-Length": [ "611" @@ -1641,26 +1641,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"nKgwAOxJ4i0=\",\r\n \"_etag\": \"\\\"00000a06-0000-0100-0000-622789c90000\\\"\",\r\n \"_ts\": 1646758345,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"Tq15ANvHHsI=\",\r\n \"_etag\": \"\\\"00000007-0000-0100-0000-627cd9670000\\\"\",\r\n \"_ts\": 1652349287,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf289c5a-d4a8-4338-9b1e-76fe12ca95e3" + "f661cd7c-8beb-44ca-b44e-3885b471cf45" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1680,22 +1680,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11996" ], "x-ms-request-id": [ - "1ddf7914-909c-49ec-9730-454b220bcd38" + "eddde801-aede-4c9c-96af-f9419258e222" ], "x-ms-correlation-request-id": [ - "1ddf7914-909c-49ec-9730-454b220bcd38" + "eddde801-aede-4c9c-96af-f9419258e222" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165252Z:1ddf7914-909c-49ec-9730-454b220bcd38" + "CENTRALINDIA:20220512T095516Z:eddde801-aede-4c9c-96af-f9419258e222" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:52:52 GMT" + "Thu, 12 May 2022 09:55:16 GMT" ], "Content-Length": [ "611" @@ -1704,23 +1704,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"nKgwAOxJ4i0=\",\r\n \"_etag\": \"\\\"00000a06-0000-0100-0000-622789c90000\\\"\",\r\n \"_ts\": 1646758345,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"Tq15ANvHHsI=\",\r\n \"_etag\": \"\\\"00000007-0000-0100-0000-627cd9670000\\\"\",\r\n \"_ts\": 1652349287,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf289c5a-d4a8-4338-9b1e-76fe12ca95e3" + "f661cd7c-8beb-44ca-b44e-3885b471cf45" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1740,22 +1740,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11994" ], "x-ms-request-id": [ - "5a2e2661-8fad-4aa8-8e9a-cda836703cff" + "b3905300-d6ce-42ea-bec7-1dc8f9fb79bc" ], "x-ms-correlation-request-id": [ - "5a2e2661-8fad-4aa8-8e9a-cda836703cff" + "b3905300-d6ce-42ea-bec7-1dc8f9fb79bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165323Z:5a2e2661-8fad-4aa8-8e9a-cda836703cff" + "CENTRALINDIA:20220512T095548Z:b3905300-d6ce-42ea-bec7-1dc8f9fb79bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:22 GMT" + "Thu, 12 May 2022 09:55:48 GMT" ], "Content-Length": [ "677" @@ -1764,26 +1764,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"nKgwAOxJ4i0=\",\r\n \"_etag\": \"\\\"00000d06-0000-0100-0000-622789e80000\\\"\",\r\n \"_ts\": 1646758376,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"Tq15ANvHHsI=\",\r\n \"_etag\": \"\\\"00000307-0000-0100-0000-627cd98a0000\\\"\",\r\n \"_ts\": 1652349322,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14c76ad1-b1fb-484a-a2a0-5686f8083fc7" + "f595e753-d572-4646-bac3-d8de59f97609" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1803,22 +1803,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11999" ], "x-ms-request-id": [ - "5d74d9f6-dc89-439b-8da2-224103467e43" + "a89fe692-4efe-4ffd-9a63-467feb9299ea" ], "x-ms-correlation-request-id": [ - "5d74d9f6-dc89-439b-8da2-224103467e43" + "a89fe692-4efe-4ffd-9a63-467feb9299ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165323Z:5d74d9f6-dc89-439b-8da2-224103467e43" + "CENTRALINDIA:20220512T095550Z:a89fe692-4efe-4ffd-9a63-467feb9299ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:22 GMT" + "Thu, 12 May 2022 09:55:50 GMT" ], "Content-Length": [ "677" @@ -1827,23 +1827,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"nKgwAOxJ4i0=\",\r\n \"_etag\": \"\\\"00000d06-0000-0100-0000-622789e80000\\\"\",\r\n \"_ts\": 1646758376,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"Tq15ANvHHsI=\",\r\n \"_etag\": \"\\\"00000307-0000-0100-0000-627cd98a0000\\\"\",\r\n \"_ts\": 1652349322,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14c76ad1-b1fb-484a-a2a0-5686f8083fc7" + "f595e753-d572-4646-bac3-d8de59f97609" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1863,22 +1863,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11997" ], "x-ms-request-id": [ - "ccd9da08-5c87-486c-b2a3-e768ec109ff3" + "7a4bcc80-721f-4730-b104-e235dea75893" ], "x-ms-correlation-request-id": [ - "ccd9da08-5c87-486c-b2a3-e768ec109ff3" + "7a4bcc80-721f-4730-b104-e235dea75893" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165355Z:ccd9da08-5c87-486c-b2a3-e768ec109ff3" + "CENTRALINDIA:20220512T095623Z:7a4bcc80-721f-4730-b104-e235dea75893" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:54 GMT" + "Thu, 12 May 2022 09:56:23 GMT" ], "Content-Length": [ "677" @@ -1887,26 +1887,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"nKgwAOxJ4i0=\",\r\n \"_etag\": \"\\\"00000d06-0000-0100-0000-622789e80000\\\"\",\r\n \"_ts\": 1646758376,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"Tq15ANvHHsI=\",\r\n \"_etag\": \"\\\"00000307-0000-0100-0000-627cd98a0000\\\"\",\r\n \"_ts\": 1652349322,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7859a6f1-a335-473d-b2eb-3bb367276fec" + "f0b56296-af2e-48a6-8ee4-d63da1fd6ae8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1926,22 +1926,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11991" ], "x-ms-request-id": [ - "d80ff6e4-d791-4f26-97cf-9b4263d7669b" + "5afc7e0c-208a-4420-952f-3b56c3f6309c" ], "x-ms-correlation-request-id": [ - "d80ff6e4-d791-4f26-97cf-9b4263d7669b" + "5afc7e0c-208a-4420-952f-3b56c3f6309c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165355Z:d80ff6e4-d791-4f26-97cf-9b4263d7669b" + "CENTRALINDIA:20220512T095626Z:5afc7e0c-208a-4420-952f-3b56c3f6309c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:55 GMT" + "Thu, 12 May 2022 09:56:26 GMT" ], "Content-Length": [ "677" @@ -1950,26 +1950,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"nKgwAOxJ4i0=\",\r\n \"_etag\": \"\\\"00000d06-0000-0100-0000-622789e80000\\\"\",\r\n \"_ts\": 1646758376,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"Tq15ANvHHsI=\",\r\n \"_etag\": \"\\\"00000307-0000-0100-0000-627cd98a0000\\\"\",\r\n \"_ts\": 1652349322,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25966496-633b-4deb-91ac-a1ab84669d6f" + "010b1632-75c7-4efe-a291-df19c5a5780c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1986,13 +1986,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/94c31e2d-937e-42d8-860e-086c25efe4a2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/db58d211-701a-4fd8-a2fa-3c35ea9c0f1a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94c31e2d-937e-42d8-860e-086c25efe4a2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db58d211-701a-4fd8-a2fa-3c35ea9c0f1a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "94c31e2d-937e-42d8-860e-086c25efe4a2" + "db58d211-701a-4fd8-a2fa-3c35ea9c0f1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2004,19 +2004,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1199" ], "x-ms-correlation-request-id": [ - "b8f1a4f5-ea58-49ba-a139-227fa46e3e10" + "693e8164-94fb-4e21-8283-e062517dc73a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165220Z:b8f1a4f5-ea58-49ba-a139-227fa46e3e10" + "JIOINDIACENTRAL:20220512T095443Z:693e8164-94fb-4e21-8283-e062517dc73a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:52:20 GMT" + "Thu, 12 May 2022 09:54:43 GMT" ], "Content-Length": [ "21" @@ -2029,22 +2029,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cf289c5a-d4a8-4338-9b1e-76fe12ca95e3" + "f661cd7c-8beb-44ca-b44e-3885b471cf45" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2061,13 +2061,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/e2ec411a-3670-43f1-9270-67ad00952e02?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/e5191566-3b28-4ab8-a636-5030ad6b173e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e2ec411a-3670-43f1-9270-67ad00952e02?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e5191566-3b28-4ab8-a636-5030ad6b173e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e2ec411a-3670-43f1-9270-67ad00952e02" + "e5191566-3b28-4ab8-a636-5030ad6b173e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2079,19 +2079,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1198" ], "x-ms-correlation-request-id": [ - "4a26b4ca-466e-419b-b021-77f610952d93" + "e903dfe0-5bd8-4eed-be6d-48e5ca4969ba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165252Z:4a26b4ca-466e-419b-b021-77f610952d93" + "CENTRALINDIA:20220512T095517Z:e903dfe0-5bd8-4eed-be6d-48e5ca4969ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:52:52 GMT" + "Thu, 12 May 2022 09:55:17 GMT" ], "Content-Length": [ "21" @@ -2104,22 +2104,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14c76ad1-b1fb-484a-a2a0-5686f8083fc7" + "f595e753-d572-4646-bac3-d8de59f97609" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2136,13 +2136,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/cfaba13c-7981-4c09-ac37-5be6a43b3800?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/10c4228e-9fd1-4cf1-ad7a-1ffaacb95932?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cfaba13c-7981-4c09-ac37-5be6a43b3800?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10c4228e-9fd1-4cf1-ad7a-1ffaacb95932?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "cfaba13c-7981-4c09-ac37-5be6a43b3800" + "10c4228e-9fd1-4cf1-ad7a-1ffaacb95932" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2154,19 +2154,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1199" ], "x-ms-correlation-request-id": [ - "95ba2cff-b22e-4983-a340-c8ac0e1167d2" + "8a829b92-59a6-4685-8267-0d5009eefd75" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165324Z:95ba2cff-b22e-4983-a340-c8ac0e1167d2" + "CENTRALINDIA:20220512T095552Z:8a829b92-59a6-4685-8267-0d5009eefd75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:24 GMT" + "Thu, 12 May 2022 09:55:51 GMT" ], "Content-Length": [ "21" @@ -2179,19 +2179,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94c31e2d-937e-42d8-860e-086c25efe4a2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTRjMzFlMmQtOTM3ZS00MmQ4LTg2MGUtMDg2YzI1ZWZlNGEyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db58d211-701a-4fd8-a2fa-3c35ea9c0f1a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGI1OGQyMTEtNzAxYS00ZmQ4LWEyZmEtM2MzNWVhOWMwZjFhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25966496-633b-4deb-91ac-a1ab84669d6f" + "010b1632-75c7-4efe-a291-df19c5a5780c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2211,22 +2211,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11980" ], "x-ms-request-id": [ - "669f934b-b5bc-4949-8282-c7dd22a78413" + "6172e896-b95f-4c95-b63d-8434e9f6e1cc" ], "x-ms-correlation-request-id": [ - "669f934b-b5bc-4949-8282-c7dd22a78413" + "6172e896-b95f-4c95-b63d-8434e9f6e1cc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165251Z:669f934b-b5bc-4949-8282-c7dd22a78413" + "JIOINDIACENTRAL:20220512T095514Z:6172e896-b95f-4c95-b63d-8434e9f6e1cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:52:50 GMT" + "Thu, 12 May 2022 09:55:14 GMT" ], "Content-Length": [ "22" @@ -2239,19 +2239,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e2ec411a-3670-43f1-9270-67ad00952e02?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTJlYzQxMWEtMzY3MC00M2YxLTkyNzAtNjdhZDAwOTUyZTAyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e5191566-3b28-4ab8-a636-5030ad6b173e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTUxOTE1NjYtM2IyOC00YWI4LWE2MzYtNTAzMGFkNmIxNzNlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf289c5a-d4a8-4338-9b1e-76fe12ca95e3" + "f661cd7c-8beb-44ca-b44e-3885b471cf45" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2271,22 +2271,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11995" ], "x-ms-request-id": [ - "d817a8b2-25de-480e-9daa-117487a164ea" + "78292dff-05a9-40fd-9750-6a437205f226" ], "x-ms-correlation-request-id": [ - "d817a8b2-25de-480e-9daa-117487a164ea" + "78292dff-05a9-40fd-9750-6a437205f226" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165323Z:d817a8b2-25de-480e-9daa-117487a164ea" + "CENTRALINDIA:20220512T095547Z:78292dff-05a9-40fd-9750-6a437205f226" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:22 GMT" + "Thu, 12 May 2022 09:55:47 GMT" ], "Content-Length": [ "22" @@ -2299,19 +2299,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cfaba13c-7981-4c09-ac37-5be6a43b3800?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2ZhYmExM2MtNzk4MS00YzA5LWFjMzctNWJlNmE0M2IzODAwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10c4228e-9fd1-4cf1-ad7a-1ffaacb95932?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTBjNDIyOGUtOWZkMS00Y2YxLWFkN2EtMWZmYWFjYjk1OTMyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14c76ad1-b1fb-484a-a2a0-5686f8083fc7" + "f595e753-d572-4646-bac3-d8de59f97609" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2331,22 +2331,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11998" ], "x-ms-request-id": [ - "8875bd31-77d2-496b-9661-58440a0011c2" + "1db093c4-8bb5-47a4-a4f2-1d153ac485ae" ], "x-ms-correlation-request-id": [ - "8875bd31-77d2-496b-9661-58440a0011c2" + "1db093c4-8bb5-47a4-a4f2-1d153ac485ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165354Z:8875bd31-77d2-496b-9661-58440a0011c2" + "CENTRALINDIA:20220512T095622Z:1db093c4-8bb5-47a4-a4f2-1d153ac485ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:54 GMT" + "Thu, 12 May 2022 09:56:21 GMT" ], "Content-Length": [ "22" @@ -2359,22 +2359,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "161e3f4b-f4f2-4401-9219-9ac82c39a212" + "ccb48f19-00fa-47ef-a073-7e497f92ea2a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2394,22 +2394,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11999" ], "x-ms-request-id": [ - "b90463de-25a9-4323-a11e-8e0c1dfd0d48" + "4e7057f3-8a1d-4d45-a792-2c7a35c8fc6c" ], "x-ms-correlation-request-id": [ - "b90463de-25a9-4323-a11e-8e0c1dfd0d48" + "4e7057f3-8a1d-4d45-a792-2c7a35c8fc6c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165356Z:b90463de-25a9-4323-a11e-8e0c1dfd0d48" + "CENTRALINDIA:20220512T095628Z:4e7057f3-8a1d-4d45-a792-2c7a35c8fc6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:55 GMT" + "Thu, 12 May 2022 09:56:27 GMT" ], "Content-Length": [ "689" @@ -2418,26 +2418,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"nKgwAOxJ4i0=\",\r\n \"_etag\": \"\\\"00000d06-0000-0100-0000-622789e80000\\\"\",\r\n \"_ts\": 1646758376,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"table\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"_rid\": \"Tq15ANvHHsI=\",\r\n \"_etag\": \"\\\"00000307-0000-0100-0000-627cd98a0000\\\"\",\r\n \"_ts\": 1652349322,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n },\r\n {\r\n \"name\": \"ColumnC\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnD\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd08d6cb-57f5-4cce-8625-43b1ab3352f7" + "b9de0951-eb9c-4f77-867a-550e6ad24e8e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2457,22 +2457,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11999" ], "x-ms-request-id": [ - "95630dbe-bc2f-4401-9864-39800872c388" + "7ea3cb35-dc32-41ed-a466-4f7ed63dc0a9" ], "x-ms-correlation-request-id": [ - "95630dbe-bc2f-4401-9864-39800872c388" + "7ea3cb35-dc32-41ed-a466-4f7ed63dc0a9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165356Z:95630dbe-bc2f-4401-9864-39800872c388" + "CENTRALINDIA:20220512T095630Z:7ea3cb35-dc32-41ed-a466-4f7ed63dc0a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:56 GMT" + "Thu, 12 May 2022 09:56:29 GMT" ], "Content-Length": [ "403" @@ -2481,26 +2481,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"nKgwAA==\",\r\n \"_etag\": \"\\\"0000f905-0000-0100-0000-6227896d0000\\\"\",\r\n \"_ts\": 1646758253\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"Tq15AA==\",\r\n \"_etag\": \"\\\"0000f806-0000-0100-0000-627cd8fe0000\\\"\",\r\n \"_ts\": 1652349182\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df597864-4b18-4a03-8417-d0d510e57323" + "798a72cc-5bb5-4087-bf80-6fb96121001f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2511,13 +2511,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/0f97fda5-abb7-46ce-98a5-4f577acc74f0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/ad5eef61-d673-4db7-a1ed-0eb54eee241d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0f97fda5-abb7-46ce-98a5-4f577acc74f0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ad5eef61-d673-4db7-a1ed-0eb54eee241d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "0f97fda5-abb7-46ce-98a5-4f577acc74f0" + "ad5eef61-d673-4db7-a1ed-0eb54eee241d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2529,19 +2529,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "d2ce8923-ed7e-4071-bfc9-3b13cfae545a" + "f95c264e-73eb-48cf-8ddd-6b7b23bc2690" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165357Z:d2ce8923-ed7e-4071-bfc9-3b13cfae545a" + "CENTRALINDIA:20220512T095633Z:f95c264e-73eb-48cf-8ddd-6b7b23bc2690" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:53:56 GMT" + "Thu, 12 May 2022 09:56:32 GMT" ], "Content-Length": [ "21" @@ -2554,22 +2554,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc0ad814-ef84-4705-963f-8f544b608813" + "d2854214-e605-46a1-a69f-afdfbd569a48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2580,13 +2580,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/17b9246f-0531-44a1-8852-a7a1de903748?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/58927b72-29df-4808-aa3b-f4cdafdaaf79?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/17b9246f-0531-44a1-8852-a7a1de903748?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/58927b72-29df-4808-aa3b-f4cdafdaaf79?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "17b9246f-0531-44a1-8852-a7a1de903748" + "58927b72-29df-4808-aa3b-f4cdafdaaf79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2601,16 +2601,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "adb80183-5376-4294-b4d4-579c00a0b9b7" + "2f809376-3bba-482f-9aa8-35c4e37928d7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165503Z:adb80183-5376-4294-b4d4-579c00a0b9b7" + "JIOINDIACENTRAL:20220512T095741Z:2f809376-3bba-482f-9aa8-35c4e37928d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:55:03 GMT" + "Thu, 12 May 2022 09:57:40 GMT" ], "Content-Length": [ "21" @@ -2623,19 +2623,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0f97fda5-abb7-46ce-98a5-4f577acc74f0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGY5N2ZkYTUtYWJiNy00NmNlLTk4YTUtNGY1NzdhY2M3NGYwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ad5eef61-d673-4db7-a1ed-0eb54eee241d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWQ1ZWVmNjEtZDY3My00ZGI3LWExZWQtMGViNTRlZWUyNDFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df597864-4b18-4a03-8417-d0d510e57323" + "798a72cc-5bb5-4087-bf80-6fb96121001f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2655,22 +2655,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11999" ], "x-ms-request-id": [ - "94f1ee3a-3a13-4a96-affb-aa6e4f9539b3" + "8468a906-7090-4975-a2c4-3d33783858fa" ], "x-ms-correlation-request-id": [ - "94f1ee3a-3a13-4a96-affb-aa6e4f9539b3" + "8468a906-7090-4975-a2c4-3d33783858fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165427Z:94f1ee3a-3a13-4a96-affb-aa6e4f9539b3" + "CENTRALINDIA:20220512T095703Z:8468a906-7090-4975-a2c4-3d33783858fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:54:27 GMT" + "Thu, 12 May 2022 09:57:03 GMT" ], "Content-Length": [ "22" @@ -2683,19 +2683,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/0f97fda5-abb7-46ce-98a5-4f577acc74f0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGUvb3BlcmF0aW9uUmVzdWx0cy8wZjk3ZmRhNS1hYmI3LTQ2Y2UtOThhNS00ZjU3N2FjYzc0ZjA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/ad5eef61-d673-4db7-a1ed-0eb54eee241d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGUvb3BlcmF0aW9uUmVzdWx0cy9hZDVlZWY2MS1kNjczLTRkYjctYTFlZC0wZWI1NGVlZTI0MWQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df597864-4b18-4a03-8417-d0d510e57323" + "798a72cc-5bb5-4087-bf80-6fb96121001f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2715,22 +2715,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11998" ], "x-ms-request-id": [ - "b26cd6bd-b45f-4172-8225-85248ad2294b" + "380ab04e-70b9-4893-8048-8c109498dd94" ], "x-ms-correlation-request-id": [ - "b26cd6bd-b45f-4172-8225-85248ad2294b" + "380ab04e-70b9-4893-8048-8c109498dd94" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165427Z:b26cd6bd-b45f-4172-8225-85248ad2294b" + "CENTRALINDIA:20220512T095704Z:380ab04e-70b9-4893-8048-8c109498dd94" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:54:27 GMT" + "Thu, 12 May 2022 09:57:04 GMT" ], "Content-Type": [ "application/json" @@ -2740,22 +2740,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef524969-1c7b-42cc-8131-e9136c4c728f" + "c67767c9-b43c-4c6c-896f-82c477417bc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2766,13 +2766,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/770b877c-192f-4efd-b1a3-3f693ff952ed?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/4bf9a253-7a1d-42f4-844d-fb5965e06ebb?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/770b877c-192f-4efd-b1a3-3f693ff952ed?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4bf9a253-7a1d-42f4-844d-fb5965e06ebb?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "770b877c-192f-4efd-b1a3-3f693ff952ed" + "4bf9a253-7a1d-42f4-844d-fb5965e06ebb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2784,19 +2784,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "c07f859b-031e-4431-bfb7-eadcd6855f50" + "5efacbb6-e961-45df-9a4a-fb3c31247c6d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165429Z:c07f859b-031e-4431-bfb7-eadcd6855f50" + "CENTRALINDIA:20220512T095707Z:5efacbb6-e961-45df-9a4a-fb3c31247c6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:54:29 GMT" + "Thu, 12 May 2022 09:57:06 GMT" ], "Content-Length": [ "21" @@ -2809,22 +2809,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaf2c37b-aa39-42bd-b92b-15a541337334" + "48a56bba-3800-4b3e-9b6b-54dd0afd91c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2835,13 +2835,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/e3f3258d-6bad-4d11-85c5-2e28d809014f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/687749cf-d1de-4fa2-830a-c8c8ca2938fe?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e3f3258d-6bad-4d11-85c5-2e28d809014f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/687749cf-d1de-4fa2-830a-c8c8ca2938fe?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e3f3258d-6bad-4d11-85c5-2e28d809014f" + "687749cf-d1de-4fa2-830a-c8c8ca2938fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2856,16 +2856,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "9e112207-e989-40c3-acec-53ced56a927c" + "2647c8b0-ca50-41ec-8f66-14deddf03b1e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165535Z:9e112207-e989-40c3-acec-53ced56a927c" + "JIOINDIACENTRAL:20220512T095814Z:2647c8b0-ca50-41ec-8f66-14deddf03b1e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:55:35 GMT" + "Thu, 12 May 2022 09:58:13 GMT" ], "Content-Length": [ "21" @@ -2878,19 +2878,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/770b877c-192f-4efd-b1a3-3f693ff952ed?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzcwYjg3N2MtMTkyZi00ZWZkLWIxYTMtM2Y2OTNmZjk1MmVkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4bf9a253-7a1d-42f4-844d-fb5965e06ebb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGJmOWEyNTMtN2ExZC00MmY0LTg0NGQtZmI1OTY1ZTA2ZWJiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef524969-1c7b-42cc-8131-e9136c4c728f" + "c67767c9-b43c-4c6c-896f-82c477417bc9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2910,22 +2910,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "9156db6a-3fb4-4674-b0f0-b7ddbe9ebc6f" + "5a3f4c85-9d48-4ac6-9fc8-fe85455e16a2" ], "x-ms-correlation-request-id": [ - "9156db6a-3fb4-4674-b0f0-b7ddbe9ebc6f" + "5a3f4c85-9d48-4ac6-9fc8-fe85455e16a2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165500Z:9156db6a-3fb4-4674-b0f0-b7ddbe9ebc6f" + "CENTRALINDIA:20220512T095737Z:5a3f4c85-9d48-4ac6-9fc8-fe85455e16a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:55:00 GMT" + "Thu, 12 May 2022 09:57:36 GMT" ], "Content-Length": [ "22" @@ -2938,19 +2938,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/770b877c-192f-4efd-b1a3-3f693ff952ed?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi9vcGVyYXRpb25SZXN1bHRzLzc3MGI4NzdjLTE5MmYtNGVmZC1iMWEzLTNmNjkzZmY5NTJlZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/4bf9a253-7a1d-42f4-844d-fb5965e06ebb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi9vcGVyYXRpb25SZXN1bHRzLzRiZjlhMjUzLTdhMWQtNDJmNC04NDRkLWZiNTk2NWUwNmViYj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef524969-1c7b-42cc-8131-e9136c4c728f" + "c67767c9-b43c-4c6c-896f-82c477417bc9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2970,22 +2970,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "e1b7fc24-b32a-4b9b-a50a-b8a7ed4e6ed7" + "f838b07a-8d8d-4053-95b3-67d8c5bfb300" ], "x-ms-correlation-request-id": [ - "e1b7fc24-b32a-4b9b-a50a-b8a7ed4e6ed7" + "f838b07a-8d8d-4053-95b3-67d8c5bfb300" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165500Z:e1b7fc24-b32a-4b9b-a50a-b8a7ed4e6ed7" + "CENTRALINDIA:20220512T095738Z:f838b07a-8d8d-4053-95b3-67d8c5bfb300" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:55:00 GMT" + "Thu, 12 May 2022 09:57:38 GMT" ], "Content-Type": [ "application/json" @@ -2995,19 +2995,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/17b9246f-0531-44a1-8852-a7a1de903748?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTdiOTI0NmYtMDUzMS00NGExLTg4NTItYTdhMWRlOTAzNzQ4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/58927b72-29df-4808-aa3b-f4cdafdaaf79?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTg5MjdiNzItMjlkZi00ODA4LWFhM2ItZjRjZGFmZGFhZjc5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc0ad814-ef84-4705-963f-8f544b608813" + "d2854214-e605-46a1-a69f-afdfbd569a48" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3030,19 +3030,19 @@ "11999" ], "x-ms-request-id": [ - "7b535b2d-55d7-4eff-95cd-bf3808c58258" + "23295e2c-e7c9-420a-9683-51aa1cddc1b7" ], "x-ms-correlation-request-id": [ - "7b535b2d-55d7-4eff-95cd-bf3808c58258" + "23295e2c-e7c9-420a-9683-51aa1cddc1b7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165533Z:7b535b2d-55d7-4eff-95cd-bf3808c58258" + "JIOINDIACENTRAL:20220512T095811Z:23295e2c-e7c9-420a-9683-51aa1cddc1b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:55:32 GMT" + "Thu, 12 May 2022 09:58:10 GMT" ], "Content-Length": [ "22" @@ -3055,19 +3055,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/17b9246f-0531-44a1-8852-a7a1de903748?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGUvb3BlcmF0aW9uUmVzdWx0cy8xN2I5MjQ2Zi0wNTMxLTQ0YTEtODg1Mi1hN2ExZGU5MDM3NDg/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/tables/table/operationResults/58927b72-29df-4808-aa3b-f4cdafdaaf79?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi90YWJsZXMvdGFibGUvb3BlcmF0aW9uUmVzdWx0cy81ODkyN2I3Mi0yOWRmLTQ4MDgtYWEzYi1mNGNkYWZkYWFmNzk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc0ad814-ef84-4705-963f-8f544b608813" + "d2854214-e605-46a1-a69f-afdfbd569a48" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3090,19 +3090,19 @@ "11998" ], "x-ms-request-id": [ - "374ee4b3-0a29-4d68-ad0e-24a4b5589c4c" + "f4f39177-7abf-405e-a1c3-e40045a0c66d" ], "x-ms-correlation-request-id": [ - "374ee4b3-0a29-4d68-ad0e-24a4b5589c4c" + "f4f39177-7abf-405e-a1c3-e40045a0c66d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T165533Z:374ee4b3-0a29-4d68-ad0e-24a4b5589c4c" + "JIOINDIACENTRAL:20220512T095812Z:f4f39177-7abf-405e-a1c3-e40045a0c66d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:55:33 GMT" + "Thu, 12 May 2022 09:58:11 GMT" ], "Content-Type": [ "application/json" @@ -3112,19 +3112,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e3f3258d-6bad-4d11-85c5-2e28d809014f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTNmMzI1OGQtNmJhZC00ZDExLTg1YzUtMmUyOGQ4MDkwMTRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/687749cf-d1de-4fa2-830a-c8c8ca2938fe?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjg3NzQ5Y2YtZDFkZS00ZmEyLTgzMGEtYzhjOGNhMjkzOGZlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaf2c37b-aa39-42bd-b92b-15a541337334" + "48a56bba-3800-4b3e-9b6b-54dd0afd91c2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3144,22 +3144,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "d32b6119-325b-4c9e-ad8c-293f9e0bbf5e" + "5266f934-72f7-409e-bc9f-04dfee55cff5" ], "x-ms-correlation-request-id": [ - "d32b6119-325b-4c9e-ad8c-293f9e0bbf5e" + "5266f934-72f7-409e-bc9f-04dfee55cff5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165606Z:d32b6119-325b-4c9e-ad8c-293f9e0bbf5e" + "JIOINDIACENTRAL:20220512T095844Z:5266f934-72f7-409e-bc9f-04dfee55cff5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:56:05 GMT" + "Thu, 12 May 2022 09:58:44 GMT" ], "Content-Length": [ "22" @@ -3172,19 +3172,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/e3f3258d-6bad-4d11-85c5-2e28d809014f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi9vcGVyYXRpb25SZXN1bHRzL2UzZjMyNThkLTZiYWQtNGQxMS04NWM1LTJlMjhkODA5MDE0Zj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/db2/operationResults/687749cf-d1de-4fa2-830a-c8c8ca2938fe?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL2RiMi9vcGVyYXRpb25SZXN1bHRzLzY4Nzc0OWNmLWQxZGUtNGZhMi04MzBhLWM4YzhjYTI5MzhmZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaf2c37b-aa39-42bd-b92b-15a541337334" + "48a56bba-3800-4b3e-9b6b-54dd0afd91c2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3204,22 +3204,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "2235bbd5-152f-49f3-adb3-5fe6cdd84f94" + "10af816e-d140-4243-813d-808f9de7fd2a" ], "x-ms-correlation-request-id": [ - "2235bbd5-152f-49f3-adb3-5fe6cdd84f94" + "10af816e-d140-4243-813d-808f9de7fd2a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T165606Z:2235bbd5-152f-49f3-adb3-5fe6cdd84f94" + "JIOINDIACENTRAL:20220512T095845Z:10af816e-d140-4243-813d-808f9de7fd2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:56:05 GMT" + "Thu, 12 May 2022 09:58:45 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraMigrateThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraMigrateThroughputCmdlets.json index 152a7de3058d..d2da0c6e1e96 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraMigrateThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraMigrateThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f8bb083e-463a-4de0-bd73-1bb5410302c9" + "d038096d-687a-4a53-bf84-fdd1b4ea2c40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "12150022-c8a4-4782-b44d-87e873fda745" + "1893d822-1d4c-4749-9809-03506d063c92" ], "x-ms-correlation-request-id": [ - "12150022-c8a4-4782-b44d-87e873fda745" + "1893d822-1d4c-4749-9809-03506d063c92" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003124Z:12150022-c8a4-4782-b44d-87e873fda745" + "JIOINDIACENTRAL:20220512T102017Z:1893d822-1d4c-4749-9809-03506d063c92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:31:24 GMT" + "Thu, 12 May 2022 10:20:16 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" + "2e5fcfe5-e5e0-4ad8-bb61-950c35452e38" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "707fc339-63cf-482c-9c9f-4f387c5462ac" + "0bf75d80-83b4-4734-aa77-7630ac4b417a" ], "x-ms-correlation-request-id": [ - "707fc339-63cf-482c-9c9f-4f387c5462ac" + "0bf75d80-83b4-4734-aa77-7630ac4b417a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003126Z:707fc339-63cf-482c-9c9f-4f387c5462ac" + "JIOINDIACENTRAL:20220512T102017Z:0bf75d80-83b4-4734-aa77-7630ac4b417a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:31:25 GMT" + "Thu, 12 May 2022 10:20:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" + "2e5fcfe5-e5e0-4ad8-bb61-950c35452e38" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-request-id": [ - "b757d870-5843-47ce-9795-03cdf59e56ca" + "bfd581e0-ec69-4fe6-b247-d1d3ed7bf239" ], "x-ms-correlation-request-id": [ - "b757d870-5843-47ce-9795-03cdf59e56ca" + "bfd581e0-ec69-4fe6-b247-d1d3ed7bf239" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003442Z:b757d870-5843-47ce-9795-03cdf59e56ca" + "JIOINDIACENTRAL:20220512T102302Z:bfd581e0-ec69-4fe6-b247-d1d3ed7bf239" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:34:42 GMT" + "Thu, 12 May 2022 10:23:02 GMT" ], "Content-Length": [ "2469" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:33:52.8022852Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2745.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2745.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"fbc772aa-7469-415e-ba64-46e88d541dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:22:41.9267375Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2745.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2745.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ce6b1002-930d-431e-86cb-5594b24a5143\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26d1371a-25f9-428c-adb2-ea9bad71598a" + "ce74b296-2531-4693-8098-e8e9ee1d7997" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-request-id": [ - "366e1387-0470-40b8-ba87-f4071037a9bb" + "f53969a4-2fed-456a-ab7e-e02255833222" ], "x-ms-correlation-request-id": [ - "366e1387-0470-40b8-ba87-f4071037a9bb" + "f53969a4-2fed-456a-ab7e-e02255833222" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003547Z:366e1387-0470-40b8-ba87-f4071037a9bb" + "CENTRALINDIA:20220512T102413Z:f53969a4-2fed-456a-ab7e-e02255833222" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:35:47 GMT" + "Thu, 12 May 2022 10:24:12 GMT" ], "Content-Length": [ "2469" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:33:52.8022852Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2745.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2745.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"fbc772aa-7469-415e-ba64-46e88d541dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:22:41.9267375Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2745.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2745.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ce6b1002-930d-431e-86cb-5594b24a5143\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2745-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" + "2e5fcfe5-e5e0-4ad8-bb61-950c35452e38" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/operationResults/2eb7697a-aef2-4765-bb6b-142ca532fe06?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/operationResults/3563898b-89be-4081-a9a3-f97a865a090a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "2eb7697a-aef2-4765-bb6b-142ca532fe06" + "3563898b-89be-4081-a9a3-f97a865a090a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eb7697a-aef2-4765-bb6b-142ca532fe06?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3563898b-89be-4081-a9a3-f97a865a090a?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,104 +300,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "a537ae8f-a580-4a35-9129-6d16f035821d" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003140Z:a537ae8f-a580-4a35-9129-6d16f035821d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Mar 2022 00:31:39 GMT" - ], - "Content-Length": [ - "2066" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:31:37.913354Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"fbc772aa-7469-415e-ba64-46e88d541dc4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eb7697a-aef2-4765-bb6b-142ca532fe06?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmViNzY5N2EtYWVmMi00NzY1LWJiNmItMTQyY2E1MzJmZTA2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "05042f14-a810-4d7d-b838-9d158e2356a8" + "1198" ], "x-ms-correlation-request-id": [ - "05042f14-a810-4d7d-b838-9d158e2356a8" + "a29a6dc4-1bfc-4af7-ae08-c7b1dd6669ed" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003210Z:05042f14-a810-4d7d-b838-9d158e2356a8" + "JIOINDIACENTRAL:20220512T102028Z:a29a6dc4-1bfc-4af7-ae08-c7b1dd6669ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:32:10 GMT" + "Thu, 12 May 2022 10:20:28 GMT" ], "Content-Length": [ - "21" + "2067" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745\",\r\n \"name\": \"cassandra-db2745\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:20:26.2770209Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ce6b1002-930d-431e-86cb-5594b24a5143\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2745-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eb7697a-aef2-4765-bb6b-142ca532fe06?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmViNzY5N2EtYWVmMi00NzY1LWJiNmItMTQyY2E1MzJmZTA2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3563898b-89be-4081-a9a3-f97a865a090a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzU2Mzg5OGItODliZS00MDgxLWE5YTMtZjk3YTg2NWEwOTBhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" + "2e5fcfe5-e5e0-4ad8-bb61-950c35452e38" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-request-id": [ - "1b057eb6-ebac-46f2-aa33-a3780cb2a308" + "312b40c2-706f-4164-93a2-a0bd04d8cc49" ], "x-ms-correlation-request-id": [ - "1b057eb6-ebac-46f2-aa33-a3780cb2a308" + "312b40c2-706f-4164-93a2-a0bd04d8cc49" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003241Z:1b057eb6-ebac-46f2-aa33-a3780cb2a308" + "JIOINDIACENTRAL:20220512T102059Z:312b40c2-706f-4164-93a2-a0bd04d8cc49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:32:40 GMT" + "Thu, 12 May 2022 10:20:58 GMT" ], "Content-Length": [ "21" @@ -445,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eb7697a-aef2-4765-bb6b-142ca532fe06?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmViNzY5N2EtYWVmMi00NzY1LWJiNmItMTQyY2E1MzJmZTA2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3563898b-89be-4081-a9a3-f97a865a090a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzU2Mzg5OGItODliZS00MDgxLWE5YTMtZjk3YTg2NWEwOTBhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" + "2e5fcfe5-e5e0-4ad8-bb61-950c35452e38" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-request-id": [ - "ef4931ba-496f-426b-a715-488f10ef3775" + "be512a4e-cbb7-4d2f-9a40-708d520bb968" ], "x-ms-correlation-request-id": [ - "ef4931ba-496f-426b-a715-488f10ef3775" + "be512a4e-cbb7-4d2f-9a40-708d520bb968" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003311Z:ef4931ba-496f-426b-a715-488f10ef3775" + "JIOINDIACENTRAL:20220512T102130Z:be512a4e-cbb7-4d2f-9a40-708d520bb968" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:33:11 GMT" + "Thu, 12 May 2022 10:21:29 GMT" ], "Content-Length": [ "21" @@ -505,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eb7697a-aef2-4765-bb6b-142ca532fe06?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmViNzY5N2EtYWVmMi00NzY1LWJiNmItMTQyY2E1MzJmZTA2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3563898b-89be-4081-a9a3-f97a865a090a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzU2Mzg5OGItODliZS00MDgxLWE5YTMtZjk3YTg2NWEwOTBhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" + "2e5fcfe5-e5e0-4ad8-bb61-950c35452e38" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-request-id": [ - "bb1ef621-6159-4022-b62b-6618c74f98c1" + "a0bc93d6-8191-4783-b1be-3a06c141dd0f" ], "x-ms-correlation-request-id": [ - "bb1ef621-6159-4022-b62b-6618c74f98c1" + "a0bc93d6-8191-4783-b1be-3a06c141dd0f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003341Z:bb1ef621-6159-4022-b62b-6618c74f98c1" + "JIOINDIACENTRAL:20220512T102200Z:a0bc93d6-8191-4783-b1be-3a06c141dd0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:33:41 GMT" + "Thu, 12 May 2022 10:22:00 GMT" ], "Content-Length": [ "21" @@ -565,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eb7697a-aef2-4765-bb6b-142ca532fe06?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmViNzY5N2EtYWVmMi00NzY1LWJiNmItMTQyY2E1MzJmZTA2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3563898b-89be-4081-a9a3-f97a865a090a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzU2Mzg5OGItODliZS00MDgxLWE5YTMtZjk3YTg2NWEwOTBhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" + "2e5fcfe5-e5e0-4ad8-bb61-950c35452e38" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-request-id": [ - "1436ea79-041b-48ca-b608-1d4ae99504d5" + "7ae1004b-bd05-46de-86b7-99d785bd4b19" ], "x-ms-correlation-request-id": [ - "1436ea79-041b-48ca-b608-1d4ae99504d5" + "7ae1004b-bd05-46de-86b7-99d785bd4b19" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003412Z:1436ea79-041b-48ca-b608-1d4ae99504d5" + "JIOINDIACENTRAL:20220512T102231Z:7ae1004b-bd05-46de-86b7-99d785bd4b19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:34:11 GMT" + "Thu, 12 May 2022 10:22:30 GMT" ], "Content-Length": [ "21" @@ -625,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eb7697a-aef2-4765-bb6b-142ca532fe06?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmViNzY5N2EtYWVmMi00NzY1LWJiNmItMTQyY2E1MzJmZTA2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3563898b-89be-4081-a9a3-f97a865a090a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzU2Mzg5OGItODliZS00MDgxLWE5YTMtZjk3YTg2NWEwOTBhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb50c2c8-94e5-4b5c-b29b-8220f5ab0814" + "2e5fcfe5-e5e0-4ad8-bb61-950c35452e38" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-request-id": [ - "3ea1c69a-3d03-4e6d-89b7-b081489e4a21" + "84b76395-9a13-4ce6-a065-3841001745d6" ], "x-ms-correlation-request-id": [ - "3ea1c69a-3d03-4e6d-89b7-b081489e4a21" + "84b76395-9a13-4ce6-a065-3841001745d6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003442Z:3ea1c69a-3d03-4e6d-89b7-b081489e4a21" + "JIOINDIACENTRAL:20220512T102301Z:84b76395-9a13-4ce6-a065-3841001745d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:34:42 GMT" + "Thu, 12 May 2022 10:23:01 GMT" ], "Content-Length": [ "22" @@ -685,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "848b86ba-db54-4d22-842a-e788768f78c0" + "f537ab4b-73c2-4769-aa49-980421c392ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,47 +660,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "3e392b2c-8c7e-4c92-94f7-21c9f199232e" + "a18e841c-636c-464c-bd54-f4388707ea95" ], "x-ms-correlation-request-id": [ - "3e392b2c-8c7e-4c92-94f7-21c9f199232e" + "a18e841c-636c-464c-bd54-f4388707ea95" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003443Z:3e392b2c-8c7e-4c92-94f7-21c9f199232e" + "JIOINDIACENTRAL:20220512T102305Z:a18e841c-636c-464c-bd54-f4388707ea95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:34:43 GMT" + "Thu, 12 May 2022 10:23:05 GMT" ], "Content-Length": [ - "5584" + "6295" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 848b86ba-db54-4d22-842a-e788768f78c0, Request URI: /apps/89b53386-0e2f-4c70-a409-55d296072be5/services/7be8e45e-cbfa-4ca7-ade4-2991dadeccf0/partitions/8f37e399-840d-4778-8526-7b837a522a1e/replicas/132844860527865080s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-09T00:34:43.1677258Z, RequestEndTime: 2022-03-09T00:34:43.1677258Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:33:52.8348071Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.406,\\\\\\\"memory\\\\\\\":470718400.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0108,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:34:02.8453323Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.207,\\\\\\\"memory\\\\\\\":469900928.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0315,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:34:12.8560032Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.472,\\\\\\\"memory\\\\\\\":469533348.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:34:22.8665743Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.229,\\\\\\\"memory\\\\\\\":468902060.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0145,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:34:32.8771683Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.694,\\\\\\\"memory\\\\\\\":468165748.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:34:42.8877226Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.272,\\\\\\\"memory\\\\\\\":471946784.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0275,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-09T00:34:43.1677258Z; ResponseTime: 2022-03-09T00:34:43.1677258Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/89b53386-0e2f-4c70-a409-55d296072be5/services/7be8e45e-cbfa-4ca7-ade4-2991dadeccf0/partitions/8f37e399-840d-4778-8526-7b837a522a1e/replicas/132844860527865080s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.311, ActivityId: 848b86ba-db54-4d22-842a-e788768f78c0, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1677258Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0133},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1677391Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1677446Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1527},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1678973Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9613},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1698586Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1684},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1700270Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":462,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-09T00:34:43.1677258Z; ResponseTime: 2022-03-09T00:34:43.1677258Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/89b53386-0e2f-4c70-a409-55d296072be5/services/7be8e45e-cbfa-4ca7-ade4-2991dadeccf0/partitions/8f37e399-840d-4778-8526-7b837a522a1e/replicas/132844860607087688s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.437, ActivityId: 848b86ba-db54-4d22-842a-e788768f78c0, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1677258Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0061},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1677319Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1677339Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0834},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1678173Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.011},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1698283Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0733},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:34:43.1699016Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":462,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/KeyspaceName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: f537ab4b-73c2-4769-aa49-980421c392ed, Request URI: /apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/8c48ae9f-2251-4baa-a98b-69b9af4d43cc/partitions/b23f6cc9-9dc8-4125-958a-020c1b42ba51/replicas/132967839057238493s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:23:04.9700791Z, RequestEndTime: 2022-05-12T10:23:04.9700791Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:22:13.7401752Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.025,\\\\\\\"memory\\\\\\\":655604272.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.018,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:22:23.7501581Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.698,\\\\\\\"memory\\\\\\\":656585224.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0184,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:22:33.7701431Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.463,\\\\\\\"memory\\\\\\\":656258660.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0168,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:22:43.7801281Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.421,\\\\\\\"memory\\\\\\\":656123136.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0122,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:22:53.8001097Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.422,\\\\\\\"memory\\\\\\\":656132656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0164,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:23:03.8102849Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.538,\\\\\\\"memory\\\\\\\":656409120.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0161,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:23:04.9700791Z; ResponseTime: 2022-05-12T10:23:04.9700791Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/8c48ae9f-2251-4baa-a98b-69b9af4d43cc/partitions/b23f6cc9-9dc8-4125-958a-020c1b42ba51/replicas/132967839057238493s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.827, ActivityId: f537ab4b-73c2-4769-aa49-980421c392ed, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9700791Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0065},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9700856Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9700886Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1652},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9702538Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0925},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9713463Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.071},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9714173Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:23:04.9300778Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:23:04.9300778Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:23:04.9300778Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":468,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:23:04.9700791Z; ResponseTime: 2022-05-12T10:23:04.9700791Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/8c48ae9f-2251-4baa-a98b-69b9af4d43cc/partitions/b23f6cc9-9dc8-4125-958a-020c1b42ba51/replicas/132967839057238494s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.917, ActivityId: f537ab4b-73c2-4769-aa49-980421c392ed, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9700791Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9700822Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0009},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9700831Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1562},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9702393Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0195},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9712588Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0675},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:23:04.9713263Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:23:04.9300778Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:23:04.9300778Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:23:04.9300778Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":468,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/KeyspaceName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "848b86ba-db54-4d22-842a-e788768f78c0" + "f537ab4b-73c2-4769-aa49-980421c392ed" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "17653c7d-4a34-4b16-a8c9-b484e74c8247" + "b79789eb-4e29-44d5-8442-23440c777ab8" ], "x-ms-correlation-request-id": [ - "17653c7d-4a34-4b16-a8c9-b484e74c8247" + "b79789eb-4e29-44d5-8442-23440c777ab8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003514Z:17653c7d-4a34-4b16-a8c9-b484e74c8247" + "JIOINDIACENTRAL:20220512T102338Z:b79789eb-4e29-44d5-8442-23440c777ab8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:35:14 GMT" + "Thu, 12 May 2022 10:23:38 GMT" ], "Content-Length": [ "421" @@ -804,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"KeyspaceName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"KeyspaceName3\",\r\n \"_rid\": \"Xnp8AA==\",\r\n \"_etag\": \"\\\"00000900-0000-0100-0000-6227f62d0000\\\"\",\r\n \"_ts\": 1646786093\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"KeyspaceName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"KeyspaceName3\",\r\n \"_rid\": \"iCFBAA==\",\r\n \"_etag\": \"\\\"00004910-0000-0100-0000-627ce0110000\\\"\",\r\n \"_ts\": 1652350993\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"KeyspaceName3\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "848b86ba-db54-4d22-842a-e788768f78c0" + "f537ab4b-73c2-4769-aa49-980421c392ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,13 +780,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/ce11767f-88a4-4db1-8a3d-663562644792?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/37c21715-7711-4e50-b0da-b944263d125a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce11767f-88a4-4db1-8a3d-663562644792?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37c21715-7711-4e50-b0da-b944263d125a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ce11767f-88a4-4db1-8a3d-663562644792" + "37c21715-7711-4e50-b0da-b944263d125a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,19 +798,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "526d864d-4507-4c31-9d77-5259dbae4564" + "97549b76-49ce-44db-b1fe-f1168e68c656" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003443Z:526d864d-4507-4c31-9d77-5259dbae4564" + "JIOINDIACENTRAL:20220512T102306Z:97549b76-49ce-44db-b1fe-f1168e68c656" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:34:43 GMT" + "Thu, 12 May 2022 10:23:06 GMT" ], "Content-Length": [ "21" @@ -883,19 +823,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce11767f-88a4-4db1-8a3d-663562644792?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2UxMTc2N2YtODhhNC00ZGIxLThhM2QtNjYzNTYyNjQ0NzkyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37c21715-7711-4e50-b0da-b944263d125a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzdjMjE3MTUtNzcxMS00ZTUwLWIwZGEtYjk0NDI2M2QxMjVhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "848b86ba-db54-4d22-842a-e788768f78c0" + "f537ab4b-73c2-4769-aa49-980421c392ed" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -915,22 +855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "95df6fb2-d6e1-45c9-8e7d-07f3b930fd4b" + "f5762cb3-3f8a-4054-a60c-e62ee174d404" ], "x-ms-correlation-request-id": [ - "95df6fb2-d6e1-45c9-8e7d-07f3b930fd4b" + "f5762cb3-3f8a-4054-a60c-e62ee174d404" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003514Z:95df6fb2-d6e1-45c9-8e7d-07f3b930fd4b" + "JIOINDIACENTRAL:20220512T102337Z:f5762cb3-3f8a-4054-a60c-e62ee174d404" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:35:14 GMT" + "Thu, 12 May 2022 10:23:37 GMT" ], "Content-Length": [ "22" @@ -943,22 +883,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9097d9f6-9026-4973-9672-1f2bc3ecac18" + "a9d861cb-7fbf-42b6-b368-edda96adbc40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "a3b5a9de-c8b5-47dd-92be-6932a2342971" + "fdaea3e9-f4c1-4e16-af0b-aca9c5f0e213" ], "x-ms-correlation-request-id": [ - "a3b5a9de-c8b5-47dd-92be-6932a2342971" + "fdaea3e9-f4c1-4e16-af0b-aca9c5f0e213" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003514Z:a3b5a9de-c8b5-47dd-92be-6932a2342971" + "CENTRALINDIA:20220512T102339Z:fdaea3e9-f4c1-4e16-af0b-aca9c5f0e213" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:35:14 GMT" + "Thu, 12 May 2022 10:23:39 GMT" ], "Content-Length": [ "395" @@ -1002,26 +942,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"wL16\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"HKfJ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91b6c721-ce60-4785-98dc-51e4e7973112" + "0251c719-d2da-42ad-bb4d-0bd5dd5fb363" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1032,13 +972,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/ab634d0c-eb41-4c66-be64-02a9a9ba204c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/dce95259-3341-48a0-bbe1-d7c691a73c58?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ab634d0c-eb41-4c66-be64-02a9a9ba204c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dce95259-3341-48a0-bbe1-d7c691a73c58?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ab634d0c-eb41-4c66-be64-02a9a9ba204c" + "dce95259-3341-48a0-bbe1-d7c691a73c58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,16 +993,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "ea6de9b2-552e-4cb0-a773-840d82124277" + "b29e82a1-1f8d-457c-9c01-d73f64e1959f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003515Z:ea6de9b2-552e-4cb0-a773-840d82124277" + "CENTRALINDIA:20220512T102340Z:b29e82a1-1f8d-457c-9c01-d73f64e1959f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:35:15 GMT" + "Thu, 12 May 2022 10:23:40 GMT" ], "Content-Length": [ "21" @@ -1075,19 +1015,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ab634d0c-eb41-4c66-be64-02a9a9ba204c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWI2MzRkMGMtZWI0MS00YzY2LWJlNjQtMDJhOWE5YmEyMDRjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dce95259-3341-48a0-bbe1-d7c691a73c58?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGNlOTUyNTktMzM0MS00OGEwLWJiZTEtZDdjNjkxYTczYzU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91b6c721-ce60-4785-98dc-51e4e7973112" + "0251c719-d2da-42ad-bb4d-0bd5dd5fb363" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1107,22 +1047,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-request-id": [ - "2fc05b75-9868-4a6d-b6a7-7a1fee811527" + "bb1d13a0-a7dd-4be9-8ef4-3e2441170085" ], "x-ms-correlation-request-id": [ - "2fc05b75-9868-4a6d-b6a7-7a1fee811527" + "bb1d13a0-a7dd-4be9-8ef4-3e2441170085" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003545Z:2fc05b75-9868-4a6d-b6a7-7a1fee811527" + "CENTRALINDIA:20220512T102411Z:bb1d13a0-a7dd-4be9-8ef4-3e2441170085" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:35:44 GMT" + "Thu, 12 May 2022 10:24:10 GMT" ], "Content-Length": [ "22" @@ -1135,19 +1075,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/ab634d0c-eb41-4c66-be64-02a9a9ba204c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvYWI2MzRkMGMtZWI0MS00YzY2LWJlNjQtMDJhOWE5YmEyMDRjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/dce95259-3341-48a0-bbe1-d7c691a73c58?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvZGNlOTUyNTktMzM0MS00OGEwLWJiZTEtZDdjNjkxYTczYzU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91b6c721-ce60-4785-98dc-51e4e7973112" + "0251c719-d2da-42ad-bb4d-0bd5dd5fb363" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1167,22 +1107,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-request-id": [ - "bd14dfae-5f54-45c0-a2f3-8cab2036e459" + "f8c3d4e2-7dcb-4014-9f9c-6ec8832abb78" ], "x-ms-correlation-request-id": [ - "bd14dfae-5f54-45c0-a2f3-8cab2036e459" + "f8c3d4e2-7dcb-4014-9f9c-6ec8832abb78" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003547Z:bd14dfae-5f54-45c0-a2f3-8cab2036e459" + "CENTRALINDIA:20220512T102411Z:f8c3d4e2-7dcb-4014-9f9c-6ec8832abb78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:35:47 GMT" + "Thu, 12 May 2022 10:24:11 GMT" ], "Content-Length": [ "476" @@ -1191,26 +1131,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"wL16\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"HKfJ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 200,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 2000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41dfca8d-a507-4d57-8eac-ba9b4393a5fd" + "1a6ce390-0b42-4ca4-9c2b-7e048aa34daa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1221,13 +1161,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/98209114-3642-44c4-9a6b-f2f4a03b3d6d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/b60bace9-92f2-42b6-b64c-7e633b4ed86c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/98209114-3642-44c4-9a6b-f2f4a03b3d6d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b60bace9-92f2-42b6-b64c-7e633b4ed86c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "98209114-3642-44c4-9a6b-f2f4a03b3d6d" + "b60bace9-92f2-42b6-b64c-7e633b4ed86c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,19 +1179,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "f4e08cd1-496a-4012-b70a-9b1eb81bab82" + "3eea6c1c-0d29-4419-bca1-261736dc8f4a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003548Z:f4e08cd1-496a-4012-b70a-9b1eb81bab82" + "CENTRALINDIA:20220512T102416Z:3eea6c1c-0d29-4419-bca1-261736dc8f4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:35:48 GMT" + "Thu, 12 May 2022 10:24:15 GMT" ], "Content-Length": [ "21" @@ -1264,19 +1204,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/98209114-3642-44c4-9a6b-f2f4a03b3d6d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTgyMDkxMTQtMzY0Mi00NGM0LTlhNmItZjJmNGEwM2IzZDZkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b60bace9-92f2-42b6-b64c-7e633b4ed86c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjYwYmFjZTktOTJmMi00MmI2LWI2NGMtN2U2MzNiNGVkODZjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41dfca8d-a507-4d57-8eac-ba9b4393a5fd" + "1a6ce390-0b42-4ca4-9c2b-7e048aa34daa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1296,22 +1236,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11990" ], "x-ms-request-id": [ - "4a74f06b-3f7f-4e62-be76-b9d56b09ae86" + "06d1ac31-8f45-4a20-b051-987964694d28" ], "x-ms-correlation-request-id": [ - "4a74f06b-3f7f-4e62-be76-b9d56b09ae86" + "06d1ac31-8f45-4a20-b051-987964694d28" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003618Z:4a74f06b-3f7f-4e62-be76-b9d56b09ae86" + "CENTRALINDIA:20220512T102446Z:06d1ac31-8f45-4a20-b051-987964694d28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:36:17 GMT" + "Thu, 12 May 2022 10:24:46 GMT" ], "Content-Length": [ "22" @@ -1324,19 +1264,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/98209114-3642-44c4-9a6b-f2f4a03b3d6d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzLzk4MjA5MTE0LTM2NDItNDRjNC05YTZiLWYyZjRhMDNiM2Q2ZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/b60bace9-92f2-42b6-b64c-7e633b4ed86c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzL2I2MGJhY2U5LTkyZjItNDJiNi1iNjRjLTdlNjMzYjRlZDg2Yz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41dfca8d-a507-4d57-8eac-ba9b4393a5fd" + "1a6ce390-0b42-4ca4-9c2b-7e048aa34daa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1356,22 +1296,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11989" ], "x-ms-request-id": [ - "a105de50-e2f9-47f1-9012-cb77518a253d" + "65063a60-fb34-4121-9c77-5cb734699570" ], "x-ms-correlation-request-id": [ - "a105de50-e2f9-47f1-9012-cb77518a253d" + "65063a60-fb34-4121-9c77-5cb734699570" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003618Z:a105de50-e2f9-47f1-9012-cb77518a253d" + "CENTRALINDIA:20220512T102447Z:65063a60-fb34-4121-9c77-5cb734699570" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:36:18 GMT" + "Thu, 12 May 2022 10:24:47 GMT" ], "Content-Length": [ "447" @@ -1380,26 +1320,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"wL16\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"HKfJ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 2000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b4fe2d6-f714-46b8-b87f-1798e67effcc" + "11fbfc69-13c6-4af2-87f5-7c3d72fc84c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1419,47 +1359,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "c94b8ea9-3340-4baa-92bf-90aff85caf42" + "4258bdab-5d56-4aea-9d72-d27035e2acc9" ], "x-ms-correlation-request-id": [ - "c94b8ea9-3340-4baa-92bf-90aff85caf42" + "4258bdab-5d56-4aea-9d72-d27035e2acc9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003619Z:c94b8ea9-3340-4baa-92bf-90aff85caf42" + "CENTRALINDIA:20220512T102500Z:4258bdab-5d56-4aea-9d72-d27035e2acc9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:36:18 GMT" + "Thu, 12 May 2022 10:24:59 GMT" ], "Content-Length": [ - "5613" + "6319" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 2b4fe2d6-f714-46b8-b87f-1798e67effcc, Request URI: /apps/89b53386-0e2f-4c70-a409-55d296072be5/services/7be8e45e-cbfa-4ca7-ade4-2991dadeccf0/partitions/8f37e399-840d-4778-8526-7b837a522a1e/replicas/132844860527865080s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-09T00:36:19.1462503Z, RequestEndTime: 2022-03-09T00:36:19.1561535Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:35:16.6016749Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.303,\\\\\\\"memory\\\\\\\":477037268.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0169,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:35:26.6124070Z\\\\\\\",\\\\\\\"cpu\\\\\\\":12.901,\\\\\\\"memory\\\\\\\":477392720.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0245,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:35:46.6239188Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.745,\\\\\\\"memory\\\\\\\":477878848.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:35:58.0946445Z\\\\\\\",\\\\\\\"cpu\\\\\\\":13.505,\\\\\\\"memory\\\\\\\":478137976.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0133,\\\\\\\"availableThreads\\\\\\\":32646,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:36:08.1053585Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.241,\\\\\\\"memory\\\\\\\":477377172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1237,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:36:18.1160784Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.388,\\\\\\\"memory\\\\\\\":476850392.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0742,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":48,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-09T00:36:19.1561535Z; ResponseTime: 2022-03-09T00:36:19.1561535Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/89b53386-0e2f-4c70-a409-55d296072be5/services/7be8e45e-cbfa-4ca7-ade4-2991dadeccf0/partitions/8f37e399-840d-4778-8526-7b837a522a1e/replicas/132844860527865080s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.104, ActivityId: 2b4fe2d6-f714-46b8-b87f-1798e67effcc, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1462503Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0293},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1462796Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0062},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1462858Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4955},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1467813Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5944},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1483757Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0597},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1484354Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-09T00:36:19.1561535Z; ResponseTime: 2022-03-09T00:36:19.1561535Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/89b53386-0e2f-4c70-a409-55d296072be5/services/7be8e45e-cbfa-4ca7-ade4-2991dadeccf0/partitions/8f37e399-840d-4778-8526-7b837a522a1e/replicas/132844860607087686s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.365, ActivityId: 2b4fe2d6-f714-46b8-b87f-1798e67effcc, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1561535Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0101},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1561636Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0039},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1561675Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.379},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1565465Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8338},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1583803Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0264},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:36:19.1584067Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"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/KeyspaceName3/colls/tableName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 11fbfc69-13c6-4af2-87f5-7c3d72fc84c7, Request URI: /apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/8c48ae9f-2251-4baa-a98b-69b9af4d43cc/partitions/b23f6cc9-9dc8-4125-958a-020c1b42ba51/replicas/132967839057238493s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:24:49.6850857Z, RequestEndTime: 2022-05-12T10:24:49.6850857Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:23:55.8544416Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.407,\\\\\\\"memory\\\\\\\":648369568.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0159,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:24:05.8645628Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.278,\\\\\\\"memory\\\\\\\":648379860.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.013,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:24:15.8746851Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.920,\\\\\\\"memory\\\\\\\":648368240.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0149,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:24:25.8948301Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.205,\\\\\\\"memory\\\\\\\":648365548.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:24:35.9049369Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.609,\\\\\\\"memory\\\\\\\":648146548.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:24:45.9150606Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.298,\\\\\\\"memory\\\\\\\":647863520.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0188,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:24:49.6850857Z; ResponseTime: 2022-05-12T10:24:49.6850857Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/8c48ae9f-2251-4baa-a98b-69b9af4d43cc/partitions/b23f6cc9-9dc8-4125-958a-020c1b42ba51/replicas/132967839057238493s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.942, ActivityId: 11fbfc69-13c6-4af2-87f5-7c3d72fc84c7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6850857Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.008},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6850937Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6850957Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.247},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6853427Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0265},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6863692Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0721},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6864413Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:24:49.6450862Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:24:49.6450862Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:24:49.6450862Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":484,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:24:49.6850857Z; ResponseTime: 2022-05-12T10:24:49.6850857Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/8c48ae9f-2251-4baa-a98b-69b9af4d43cc/partitions/b23f6cc9-9dc8-4125-958a-020c1b42ba51/replicas/132967839057238495s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.682, ActivityId: 11fbfc69-13c6-4af2-87f5-7c3d72fc84c7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6850857Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0034},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6850891Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6850904Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1294},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6852198Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0183},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6862381Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1608},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:24:49.6863989Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:24:49.5850865Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:24:49.5850865Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:24:49.5850865Z\\\\\\\"},\\\\\\\"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/KeyspaceName3/colls/tableName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b4fe2d6-f714-46b8-b87f-1798e67effcc" + "11fbfc69-13c6-4af2-87f5-7c3d72fc84c7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1479,22 +1419,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-request-id": [ - "45b6d4bb-0402-48df-895b-3ce8e1dcd9ab" + "b0360817-13bc-41b0-97a5-8e20fbdff8bd" ], "x-ms-correlation-request-id": [ - "45b6d4bb-0402-48df-895b-3ce8e1dcd9ab" + "b0360817-13bc-41b0-97a5-8e20fbdff8bd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003650Z:45b6d4bb-0402-48df-895b-3ce8e1dcd9ab" + "CENTRALINDIA:20220512T102534Z:b0360817-13bc-41b0-97a5-8e20fbdff8bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:36:50 GMT" + "Thu, 12 May 2022 10:25:33 GMT" ], "Content-Length": [ "633" @@ -1503,26 +1443,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"tableName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName\",\r\n \"_rid\": \"Xnp8AORiP-4=\",\r\n \"_etag\": \"\\\"00000f00-0000-0100-0000-6227f68a0000\\\"\",\r\n \"_ts\": 1646786186,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"tableName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName\",\r\n \"_rid\": \"iCFBAJwQ9FI=\",\r\n \"_etag\": \"\\\"00004f10-0000-0100-0000-627ce0850000\\\"\",\r\n \"_ts\": 1652351109,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName\",\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2b4fe2d6-f714-46b8-b87f-1798e67effcc" + "11fbfc69-13c6-4af2-87f5-7c3d72fc84c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1539,13 +1479,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/b83b0ef4-5728-4c74-899a-188744bc192d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/b3b5ce3b-b522-4dbf-bdad-9621b1c1354b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b83b0ef4-5728-4c74-899a-188744bc192d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b3b5ce3b-b522-4dbf-bdad-9621b1c1354b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b83b0ef4-5728-4c74-899a-188744bc192d" + "b3b5ce3b-b522-4dbf-bdad-9621b1c1354b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,19 +1497,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "51f97794-b121-4b21-b417-0bf8ba136b0f" + "a6e86cab-30e1-49f9-a082-cd86f630b600" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003619Z:51f97794-b121-4b21-b417-0bf8ba136b0f" + "CENTRALINDIA:20220512T102502Z:a6e86cab-30e1-49f9-a082-cd86f630b600" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:36:19 GMT" + "Thu, 12 May 2022 10:25:01 GMT" ], "Content-Length": [ "21" @@ -1582,19 +1522,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b83b0ef4-5728-4c74-899a-188744bc192d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjgzYjBlZjQtNTcyOC00Yzc0LTg5OWEtMTg4NzQ0YmMxOTJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b3b5ce3b-b522-4dbf-bdad-9621b1c1354b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjNiNWNlM2ItYjUyMi00ZGJmLWJkYWQtOTYyMWIxYzEzNTRiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b4fe2d6-f714-46b8-b87f-1798e67effcc" + "11fbfc69-13c6-4af2-87f5-7c3d72fc84c7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1614,22 +1554,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11997" ], "x-ms-request-id": [ - "37d07502-944b-4345-a58a-e78ca906d7fa" + "ffe943ca-5404-4663-8e3b-8c35b42467ec" ], "x-ms-correlation-request-id": [ - "37d07502-944b-4345-a58a-e78ca906d7fa" + "ffe943ca-5404-4663-8e3b-8c35b42467ec" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003650Z:37d07502-944b-4345-a58a-e78ca906d7fa" + "CENTRALINDIA:20220512T102533Z:ffe943ca-5404-4663-8e3b-8c35b42467ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:36:49 GMT" + "Thu, 12 May 2022 10:25:32 GMT" ], "Content-Length": [ "22" @@ -1642,22 +1582,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04c7ab05-dd80-441f-adbf-70712452cb94" + "acdb23d7-69d8-4a39-ac76-af334746ff1b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1677,22 +1617,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "e31d35fc-180f-420b-a7d9-5cdc6f2350a1" + "24cb2214-d316-4b4e-b5cb-6cc5aeba6bc4" ], "x-ms-correlation-request-id": [ - "e31d35fc-180f-420b-a7d9-5cdc6f2350a1" + "24cb2214-d316-4b4e-b5cb-6cc5aeba6bc4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003650Z:e31d35fc-180f-420b-a7d9-5cdc6f2350a1" + "CENTRALINDIA:20220512T102536Z:24cb2214-d316-4b4e-b5cb-6cc5aeba6bc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:36:50 GMT" + "Thu, 12 May 2022 10:25:35 GMT" ], "Content-Length": [ "418" @@ -1701,26 +1641,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"EpPE\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"ua3Q\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7539d790-c9c5-4acc-9485-e04ac17965b2" + "8f864d46-720a-43db-bfc1-bd9c66d0d933" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1731,13 +1671,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/84f11b16-cbcc-4be7-8aa8-4e8185240c0e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/ba7ee581-c5fa-4da7-bc82-ba610149d4c2?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84f11b16-cbcc-4be7-8aa8-4e8185240c0e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ba7ee581-c5fa-4da7-bc82-ba610149d4c2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "84f11b16-cbcc-4be7-8aa8-4e8185240c0e" + "ba7ee581-c5fa-4da7-bc82-ba610149d4c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1749,19 +1689,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "7b376e34-7f53-4956-9b89-805ac2edc89b" + "0025bfad-0843-4d4d-a5b7-34e0dad57b6c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003651Z:7b376e34-7f53-4956-9b89-805ac2edc89b" + "CENTRALINDIA:20220512T102538Z:0025bfad-0843-4d4d-a5b7-34e0dad57b6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:36:51 GMT" + "Thu, 12 May 2022 10:25:38 GMT" ], "Content-Length": [ "21" @@ -1774,19 +1714,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84f11b16-cbcc-4be7-8aa8-4e8185240c0e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRmMTFiMTYtY2JjYy00YmU3LThhYTgtNGU4MTg1MjQwYzBlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ba7ee581-c5fa-4da7-bc82-ba610149d4c2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmE3ZWU1ODEtYzVmYS00ZGE3LWJjODItYmE2MTAxNDlkNGMyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7539d790-c9c5-4acc-9485-e04ac17965b2" + "8f864d46-720a-43db-bfc1-bd9c66d0d933" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1806,22 +1746,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11999" ], "x-ms-request-id": [ - "90a9445c-9307-4dca-8686-aaeceb38dfdb" + "641b86fe-b575-449b-9347-947b08e5b0cf" ], "x-ms-correlation-request-id": [ - "90a9445c-9307-4dca-8686-aaeceb38dfdb" + "641b86fe-b575-449b-9347-947b08e5b0cf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003721Z:90a9445c-9307-4dca-8686-aaeceb38dfdb" + "CENTRALINDIA:20220512T102609Z:641b86fe-b575-449b-9347-947b08e5b0cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:37:21 GMT" + "Thu, 12 May 2022 10:26:08 GMT" ], "Content-Length": [ "22" @@ -1834,19 +1774,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/84f11b16-cbcc-4be7-8aa8-4e8185240c0e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy84NGYxMWIxNi1jYmNjLTRiZTctOGFhOC00ZTgxODUyNDBjMGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/ba7ee581-c5fa-4da7-bc82-ba610149d4c2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy9iYTdlZTU4MS1jNWZhLTRkYTctYmM4Mi1iYTYxMDE0OWQ0YzI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7539d790-c9c5-4acc-9485-e04ac17965b2" + "8f864d46-720a-43db-bfc1-bd9c66d0d933" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1866,22 +1806,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-request-id": [ - "8bda7b76-0000-4d2a-b7a6-5dab18ea43c4" + "edf37a7f-a56f-484e-81c6-4e72553a2d3b" ], "x-ms-correlation-request-id": [ - "8bda7b76-0000-4d2a-b7a6-5dab18ea43c4" + "edf37a7f-a56f-484e-81c6-4e72553a2d3b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003722Z:8bda7b76-0000-4d2a-b7a6-5dab18ea43c4" + "CENTRALINDIA:20220512T102610Z:edf37a7f-a56f-484e-81c6-4e72553a2d3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:37:21 GMT" + "Thu, 12 May 2022 10:26:09 GMT" ], "Content-Length": [ "500" @@ -1890,26 +1830,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"EpPE\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"ua3Q\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 100,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 1000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00324749-dd67-42df-8892-b45a86ea8c69" + "f12303e5-5e4f-434a-a562-85cae91c46a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1920,13 +1860,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/739d9460-454e-4169-94f1-1339a23fdca6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/cb87d65d-b39c-4359-b5d6-969cbee9086d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/739d9460-454e-4169-94f1-1339a23fdca6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cb87d65d-b39c-4359-b5d6-969cbee9086d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "739d9460-454e-4169-94f1-1339a23fdca6" + "cb87d65d-b39c-4359-b5d6-969cbee9086d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1938,19 +1878,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "a4af2381-7b9b-40df-8f35-c49ff1941d6c" + "f3ef8545-7d98-4670-93c0-fb9871456ab2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003722Z:a4af2381-7b9b-40df-8f35-c49ff1941d6c" + "CENTRALINDIA:20220512T102613Z:f3ef8545-7d98-4670-93c0-fb9871456ab2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:37:22 GMT" + "Thu, 12 May 2022 10:26:13 GMT" ], "Content-Length": [ "21" @@ -1963,19 +1903,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/739d9460-454e-4169-94f1-1339a23fdca6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzM5ZDk0NjAtNDU0ZS00MTY5LTk0ZjEtMTMzOWEyM2ZkY2E2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cb87d65d-b39c-4359-b5d6-969cbee9086d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2I4N2Q2NWQtYjM5Yy00MzU5LWI1ZDYtOTY5Y2JlZTkwODZkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00324749-dd67-42df-8892-b45a86ea8c69" + "f12303e5-5e4f-434a-a562-85cae91c46a0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1995,22 +1935,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-request-id": [ - "3ac0a1e4-e7c5-4c42-bde5-ee434ea8abed" + "287fcf03-da08-471d-b81c-aeb1b97307af" ], "x-ms-correlation-request-id": [ - "3ac0a1e4-e7c5-4c42-bde5-ee434ea8abed" + "287fcf03-da08-471d-b81c-aeb1b97307af" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003753Z:3ac0a1e4-e7c5-4c42-bde5-ee434ea8abed" + "CENTRALINDIA:20220512T102644Z:287fcf03-da08-471d-b81c-aeb1b97307af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:37:52 GMT" + "Thu, 12 May 2022 10:26:43 GMT" ], "Content-Length": [ "22" @@ -2023,19 +1963,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/739d9460-454e-4169-94f1-1339a23fdca6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvNzM5ZDk0NjAtNDU0ZS00MTY5LTk0ZjEtMTMzOWEyM2ZkY2E2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/cb87d65d-b39c-4359-b5d6-969cbee9086d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvY2I4N2Q2NWQtYjM5Yy00MzU5LWI1ZDYtOTY5Y2JlZTkwODZkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00324749-dd67-42df-8892-b45a86ea8c69" + "f12303e5-5e4f-434a-a562-85cae91c46a0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2055,22 +1995,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11998" ], "x-ms-request-id": [ - "988dfbc0-2c30-4139-bd1a-1b32e316f70c" + "75c46044-962c-4818-b23c-61fb4922f482" ], "x-ms-correlation-request-id": [ - "988dfbc0-2c30-4139-bd1a-1b32e316f70c" + "75c46044-962c-4818-b23c-61fb4922f482" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003753Z:988dfbc0-2c30-4139-bd1a-1b32e316f70c" + "CENTRALINDIA:20220512T102644Z:75c46044-962c-4818-b23c-61fb4922f482" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:37:52 GMT" + "Thu, 12 May 2022 10:26:43 GMT" ], "Content-Length": [ "471" @@ -2079,26 +2019,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"EpPE\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"ua3Q\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "459050b7-c1f7-4d9c-9f6f-1272520677a5" + "bd350ea3-cfac-4c5b-93a2-9bf192f765e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2109,13 +2049,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/f387240d-e1b2-4715-9b9e-daf4a5286823?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/2ba05471-d98c-4384-9c14-2c7abac2841b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f387240d-e1b2-4715-9b9e-daf4a5286823?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ba05471-d98c-4384-9c14-2c7abac2841b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f387240d-e1b2-4715-9b9e-daf4a5286823" + "2ba05471-d98c-4384-9c14-2c7abac2841b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2130,16 +2070,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "6e824d92-6f5f-4e0b-a1bd-a8cd406a03b9" + "1b27fb97-d66f-49c3-815d-c59243e5545b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003754Z:6e824d92-6f5f-4e0b-a1bd-a8cd406a03b9" + "JIOINDIACENTRAL:20220512T102648Z:1b27fb97-d66f-49c3-815d-c59243e5545b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:37:53 GMT" + "Thu, 12 May 2022 10:26:48 GMT" ], "Content-Length": [ "21" @@ -2152,22 +2092,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bceb5c82-1958-41bf-8350-73ccd8fce872" + "a7b9e082-64cc-414b-8419-8d7b5300603d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2178,13 +2118,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/ac7466ec-84d6-4b2f-a548-65fd8f91ef61?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/51547b1b-ad1e-456e-a8e3-9f224e2743f6?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac7466ec-84d6-4b2f-a548-65fd8f91ef61?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/51547b1b-ad1e-456e-a8e3-9f224e2743f6?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ac7466ec-84d6-4b2f-a548-65fd8f91ef61" + "51547b1b-ad1e-456e-a8e3-9f224e2743f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2199,16 +2139,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "68eb32d6-b71f-4b29-8069-82ddcffb4ff9" + "02acbc7d-6f32-4dee-8a32-b9c0d74852ab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003900Z:68eb32d6-b71f-4b29-8069-82ddcffb4ff9" + "CENTRALINDIA:20220512T102757Z:02acbc7d-6f32-4dee-8a32-b9c0d74852ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:39:00 GMT" + "Thu, 12 May 2022 10:27:57 GMT" ], "Content-Length": [ "21" @@ -2221,19 +2161,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f387240d-e1b2-4715-9b9e-daf4a5286823?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjM4NzI0MGQtZTFiMi00NzE1LTliOWUtZGFmNGE1Mjg2ODIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ba05471-d98c-4384-9c14-2c7abac2841b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmJhMDU0NzEtZDk4Yy00Mzg0LTljMTQtMmM3YWJhYzI4NDFiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "459050b7-c1f7-4d9c-9f6f-1272520677a5" + "bd350ea3-cfac-4c5b-93a2-9bf192f765e3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2253,22 +2193,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11992" ], "x-ms-request-id": [ - "dd327ba2-caf2-4ed6-b5c4-0a45c3f71e1d" + "ddcd7fd4-93fd-4ea8-9898-1f767f14cacc" ], "x-ms-correlation-request-id": [ - "dd327ba2-caf2-4ed6-b5c4-0a45c3f71e1d" + "ddcd7fd4-93fd-4ea8-9898-1f767f14cacc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003824Z:dd327ba2-caf2-4ed6-b5c4-0a45c3f71e1d" + "JIOINDIACENTRAL:20220512T102719Z:ddcd7fd4-93fd-4ea8-9898-1f767f14cacc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:38:24 GMT" + "Thu, 12 May 2022 10:27:18 GMT" ], "Content-Length": [ "22" @@ -2281,19 +2221,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/f387240d-e1b2-4715-9b9e-daf4a5286823?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS9vcGVyYXRpb25SZXN1bHRzL2YzODcyNDBkLWUxYjItNDcxNS05YjllLWRhZjRhNTI4NjgyMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/2ba05471-d98c-4384-9c14-2c7abac2841b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzJiYTA1NDcxLWQ5OGMtNDM4NC05YzE0LTJjN2FiYWMyODQxYj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "459050b7-c1f7-4d9c-9f6f-1272520677a5" + "bd350ea3-cfac-4c5b-93a2-9bf192f765e3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2313,22 +2253,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11991" ], "x-ms-request-id": [ - "a141d9fe-f5ac-4c88-8383-cf377457431b" + "0bb838d1-0c1b-4541-97ae-58f7d1a3b586" ], "x-ms-correlation-request-id": [ - "a141d9fe-f5ac-4c88-8383-cf377457431b" + "0bb838d1-0c1b-4541-97ae-58f7d1a3b586" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003825Z:a141d9fe-f5ac-4c88-8383-cf377457431b" + "JIOINDIACENTRAL:20220512T102720Z:0bb838d1-0c1b-4541-97ae-58f7d1a3b586" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:38:24 GMT" + "Thu, 12 May 2022 10:27:19 GMT" ], "Content-Type": [ "application/json" @@ -2338,22 +2278,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a810fe92-7965-4e8b-89f8-ff28b097df16" + "6c8465f9-d13c-4349-97e6-a61511472136" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2364,13 +2304,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/bf6d32bd-b68e-4186-8cca-f8e48b67d8c0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/4d2d455c-ec36-43f3-8b6d-f8090956978e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bf6d32bd-b68e-4186-8cca-f8e48b67d8c0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4d2d455c-ec36-43f3-8b6d-f8090956978e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "bf6d32bd-b68e-4186-8cca-f8e48b67d8c0" + "4d2d455c-ec36-43f3-8b6d-f8090956978e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2382,19 +2322,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "b80feef1-f925-482d-8353-520e08b275d2" + "1f85dd09-093d-43c8-998b-8cb5ea499e9c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003827Z:b80feef1-f925-482d-8353-520e08b275d2" + "JIOINDIACENTRAL:20220512T102723Z:1f85dd09-093d-43c8-998b-8cb5ea499e9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:38:27 GMT" + "Thu, 12 May 2022 10:27:22 GMT" ], "Content-Length": [ "21" @@ -2407,22 +2347,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "526a52cd-df40-4580-ac84-c5c1df491bb1" + "3148b97b-50f7-41be-8bd4-9b95b6fb8d27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2433,13 +2373,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/8b22608e-ca9a-4df8-8b46-a96a2faf4f39?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/62c6fb25-bd2f-4546-b773-ebcf247b9329?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8b22608e-ca9a-4df8-8b46-a96a2faf4f39?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62c6fb25-bd2f-4546-b773-ebcf247b9329?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "8b22608e-ca9a-4df8-8b46-a96a2faf4f39" + "62c6fb25-bd2f-4546-b773-ebcf247b9329" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2454,16 +2394,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "ec9c4a26-34ec-42cd-a96c-4b18593d70a2" + "4caed140-0d11-48cd-886a-e6dd6c33382c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003932Z:ec9c4a26-34ec-42cd-a96c-4b18593d70a2" + "CENTRALINDIA:20220512T102829Z:4caed140-0d11-48cd-886a-e6dd6c33382c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:39:31 GMT" + "Thu, 12 May 2022 10:28:29 GMT" ], "Content-Length": [ "21" @@ -2476,19 +2416,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bf6d32bd-b68e-4186-8cca-f8e48b67d8c0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmY2ZDMyYmQtYjY4ZS00MTg2LThjY2EtZjhlNDhiNjdkOGMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4d2d455c-ec36-43f3-8b6d-f8090956978e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGQyZDQ1NWMtZWMzNi00M2YzLThiNmQtZjgwOTA5NTY5NzhlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a810fe92-7965-4e8b-89f8-ff28b097df16" + "6c8465f9-d13c-4349-97e6-a61511472136" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2508,22 +2448,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11980" ], "x-ms-request-id": [ - "be42740e-2f0b-4245-8f87-06c195513373" + "6c44ed8c-aa86-49d2-bd4a-109832e3bad3" ], "x-ms-correlation-request-id": [ - "be42740e-2f0b-4245-8f87-06c195513373" + "6c44ed8c-aa86-49d2-bd4a-109832e3bad3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003857Z:be42740e-2f0b-4245-8f87-06c195513373" + "JIOINDIACENTRAL:20220512T102754Z:6c44ed8c-aa86-49d2-bd4a-109832e3bad3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:38:57 GMT" + "Thu, 12 May 2022 10:27:53 GMT" ], "Content-Length": [ "22" @@ -2536,19 +2476,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/bf6d32bd-b68e-4186-8cca-f8e48b67d8c0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy9iZjZkMzJiZC1iNjhlLTQxODYtOGNjYS1mOGU0OGI2N2Q4YzA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/4d2d455c-ec36-43f3-8b6d-f8090956978e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy80ZDJkNDU1Yy1lYzM2LTQzZjMtOGI2ZC1mODA5MDk1Njk3OGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a810fe92-7965-4e8b-89f8-ff28b097df16" + "6c8465f9-d13c-4349-97e6-a61511472136" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2568,22 +2508,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11979" ], "x-ms-request-id": [ - "49e00181-d859-4e2b-b373-0d5f5a54c395" + "2ca81bcc-4141-438e-8d46-37d966c28c1a" ], "x-ms-correlation-request-id": [ - "49e00181-d859-4e2b-b373-0d5f5a54c395" + "2ca81bcc-4141-438e-8d46-37d966c28c1a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003857Z:49e00181-d859-4e2b-b373-0d5f5a54c395" + "JIOINDIACENTRAL:20220512T102755Z:2ca81bcc-4141-438e-8d46-37d966c28c1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:38:57 GMT" + "Thu, 12 May 2022 10:27:55 GMT" ], "Content-Type": [ "application/json" @@ -2593,19 +2533,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac7466ec-84d6-4b2f-a548-65fd8f91ef61?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWM3NDY2ZWMtODRkNi00YjJmLWE1NDgtNjVmZDhmOTFlZjYxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/51547b1b-ad1e-456e-a8e3-9f224e2743f6?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTE1NDdiMWItYWQxZS00NTZlLWE4ZTMtOWYyMjRlMjc0M2Y2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bceb5c82-1958-41bf-8350-73ccd8fce872" + "a7b9e082-64cc-414b-8419-8d7b5300603d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2625,22 +2565,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "896cb11f-68c0-4aff-a818-edb064c7436b" + "a6185dda-f11d-4826-a44d-7ec3842ba905" ], "x-ms-correlation-request-id": [ - "896cb11f-68c0-4aff-a818-edb064c7436b" + "a6185dda-f11d-4826-a44d-7ec3842ba905" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003930Z:896cb11f-68c0-4aff-a818-edb064c7436b" + "CENTRALINDIA:20220512T102827Z:a6185dda-f11d-4826-a44d-7ec3842ba905" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:39:29 GMT" + "Thu, 12 May 2022 10:28:26 GMT" ], "Content-Length": [ "22" @@ -2653,19 +2593,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/ac7466ec-84d6-4b2f-a548-65fd8f91ef61?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS9vcGVyYXRpb25SZXN1bHRzL2FjNzQ2NmVjLTg0ZDYtNGIyZi1hNTQ4LTY1ZmQ4ZjkxZWY2MT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/51547b1b-ad1e-456e-a8e3-9f224e2743f6?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvdGFibGVzL3RhYmxlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzUxNTQ3YjFiLWFkMWUtNDU2ZS1hOGUzLTlmMjI0ZTI3NDNmNj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bceb5c82-1958-41bf-8350-73ccd8fce872" + "a7b9e082-64cc-414b-8419-8d7b5300603d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2685,22 +2625,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-request-id": [ - "916c5f33-6917-4e85-845d-b280be0b5ab1" + "68a1e510-d71a-434b-a43b-95162652fcbc" ], "x-ms-correlation-request-id": [ - "916c5f33-6917-4e85-845d-b280be0b5ab1" + "68a1e510-d71a-434b-a43b-95162652fcbc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T003930Z:916c5f33-6917-4e85-845d-b280be0b5ab1" + "CENTRALINDIA:20220512T102828Z:68a1e510-d71a-434b-a43b-95162652fcbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:39:29 GMT" + "Thu, 12 May 2022 10:28:27 GMT" ], "Content-Type": [ "application/json" @@ -2710,19 +2650,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8b22608e-ca9a-4df8-8b46-a96a2faf4f39?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIyMjYwOGUtY2E5YS00ZGY4LThiNDYtYTk2YTJmYWY0ZjM5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62c6fb25-bd2f-4546-b773-ebcf247b9329?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjJjNmZiMjUtYmQyZi00NTQ2LWI3NzMtZWJjZjI0N2I5MzI5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "526a52cd-df40-4580-ac84-c5c1df491bb1" + "3148b97b-50f7-41be-8bd4-9b95b6fb8d27" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2742,22 +2682,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11990" ], "x-ms-request-id": [ - "f18ce98b-903f-4c23-ac6e-a0fc7f5368c5" + "96859af5-e723-45d3-8d90-ae1aaa48e713" ], "x-ms-correlation-request-id": [ - "f18ce98b-903f-4c23-ac6e-a0fc7f5368c5" + "96859af5-e723-45d3-8d90-ae1aaa48e713" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T004002Z:f18ce98b-903f-4c23-ac6e-a0fc7f5368c5" + "CENTRALINDIA:20220512T102859Z:96859af5-e723-45d3-8d90-ae1aaa48e713" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:40:02 GMT" + "Thu, 12 May 2022 10:28:59 GMT" ], "Content-Length": [ "22" @@ -2770,19 +2710,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/8b22608e-ca9a-4df8-8b46-a96a2faf4f39?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy84YjIyNjA4ZS1jYTlhLTRkZjgtOGI0Ni1hOTZhMmZhZjRmMzk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2745/cassandraKeyspaces/KeyspaceName3/operationResults/62c6fb25-bd2f-4546-b773-ebcf247b9329?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDUvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy82MmM2ZmIyNS1iZDJmLTQ1NDYtYjc3My1lYmNmMjQ3YjkzMjk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "526a52cd-df40-4580-ac84-c5c1df491bb1" + "3148b97b-50f7-41be-8bd4-9b95b6fb8d27" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2802,22 +2742,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11989" ], "x-ms-request-id": [ - "b8d4d842-ad22-4288-ad47-ef4df735f379" + "6c0c9964-8d50-4e17-89bb-73a8fe24b5d5" ], "x-ms-correlation-request-id": [ - "b8d4d842-ad22-4288-ad47-ef4df735f379" + "6c0c9964-8d50-4e17-89bb-73a8fe24b5d5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T004003Z:b8d4d842-ad22-4288-ad47-ef4df735f379" + "CENTRALINDIA:20220512T102900Z:6c0c9964-8d50-4e17-89bb-73a8fe24b5d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:40:02 GMT" + "Thu, 12 May 2022 10:28:59 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraThroughputCmdlets.json index 680db5870cd7..27079380527a 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.CassandraOperationsTests/TestCassandraThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c6431487-259c-4af0-b71b-7bad9efb9c90" + "507d1235-95b9-460c-b468-764a7b1aff08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "855cad8b-d301-4f3d-a3a3-d8c25d20dc69" + "73e5051e-c48f-4fcd-ba05-1aea1223cd4c" ], "x-ms-correlation-request-id": [ - "855cad8b-d301-4f3d-a3a3-d8c25d20dc69" + "73e5051e-c48f-4fcd-ba05-1aea1223cd4c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170417Z:855cad8b-d301-4f3d-a3a3-d8c25d20dc69" + "JIOINDIACENTRAL:20220512T100728Z:73e5051e-c48f-4fcd-ba05-1aea1223cd4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:04:16 GMT" + "Thu, 12 May 2022 10:07:28 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDg/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDg/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb6b531-6eb8-4c74-b433-f44a3e7bb616" + "6c44e975-cd2e-425c-8076-f8ddb1594fe7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "7d970d6e-f873-4f68-906f-8850380706f1" + "c95421cb-8e7d-44ea-86fe-afc9f264d582" ], "x-ms-correlation-request-id": [ - "7d970d6e-f873-4f68-906f-8850380706f1" + "c95421cb-8e7d-44ea-86fe-afc9f264d582" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170418Z:7d970d6e-f873-4f68-906f-8850380706f1" + "JIOINDIACENTRAL:20220512T100729Z:c95421cb-8e7d-44ea-86fe-afc9f264d582" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:04:17 GMT" + "Thu, 12 May 2022 10:07:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDg/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDg/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb6b531-6eb8-4c74-b433-f44a3e7bb616" + "6c44e975-cd2e-425c-8076-f8ddb1594fe7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11983" ], "x-ms-request-id": [ - "22185dcd-e9a3-4fb1-9297-f7881b7c27b2" + "afb048e7-be5f-43db-938f-22b521722299" ], "x-ms-correlation-request-id": [ - "22185dcd-e9a3-4fb1-9297-f7881b7c27b2" + "afb048e7-be5f-43db-938f-22b521722299" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170701Z:22185dcd-e9a3-4fb1-9297-f7881b7c27b2" + "JIOINDIACENTRAL:20220512T101012Z:afb048e7-be5f-43db-938f-22b521722299" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:07:00 GMT" + "Thu, 12 May 2022 10:10:12 GMT" ], "Content-Length": [ "2469" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748\",\r\n \"name\": \"cassandra-db2748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:06:41.9621566Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2748.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2748.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"740cf760-0ded-4057-bbde-adeeeb2aa0c0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748\",\r\n \"name\": \"cassandra-db2748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:09:51.4587572Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2748.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2748.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d354b404-2fbd-410e-a9de-c4bc6585ca50\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDg/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDg/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5eb283f-6887-4d9f-a3ce-458141b58b54" + "5a2d5ae4-f704-404a-963f-28949b80760d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-request-id": [ - "cef63f9a-431f-4883-b79e-53bc490ccdec" + "d177a541-0fd0-43e6-adac-54addd02c60c" ], "x-ms-correlation-request-id": [ - "cef63f9a-431f-4883-b79e-53bc490ccdec" + "d177a541-0fd0-43e6-adac-54addd02c60c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170805Z:cef63f9a-431f-4883-b79e-53bc490ccdec" + "CENTRALINDIA:20220512T101124Z:d177a541-0fd0-43e6-adac-54addd02c60c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:08:05 GMT" + "Thu, 12 May 2022 10:11:24 GMT" ], "Content-Length": [ "2469" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748\",\r\n \"name\": \"cassandra-db2748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:06:41.9621566Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2748.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2748.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"740cf760-0ded-4057-bbde-adeeeb2aa0c0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748\",\r\n \"name\": \"cassandra-db2748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:09:51.4587572Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cassandra-db2748.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://cassandra-db2748.cassandra.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d354b404-2fbd-410e-a9de-c4bc6585ca50\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cassandra-db2748-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDg/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDg/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "deb6b531-6eb8-4c74-b433-f44a3e7bb616" + "6c44e975-cd2e-425c-8076-f8ddb1594fe7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/operationResults/806dcf93-731e-4307-9898-08220ea7c566?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/operationResults/89d2e54a-fe6d-436e-b381-2818a968daa0?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "806dcf93-731e-4307-9898-08220ea7c566" + "89d2e54a-fe6d-436e-b381-2818a968daa0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/806dcf93-731e-4307-9898-08220ea7c566?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/89d2e54a-fe6d-436e-b381-2818a968daa0?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "111576bb-78f0-44b5-b73c-92d396b7f9f6" + "9cc93dc8-668f-4ff3-9a50-c51a89a695f9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170427Z:111576bb-78f0-44b5-b73c-92d396b7f9f6" + "JIOINDIACENTRAL:20220512T100737Z:9cc93dc8-668f-4ff3-9a50-c51a89a695f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:04:27 GMT" + "Thu, 12 May 2022 10:07:37 GMT" ], "Content-Length": [ "2067" @@ -321,23 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748\",\r\n \"name\": \"cassandra-db2748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T17:04:24.8755889Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"740cf760-0ded-4057-bbde-adeeeb2aa0c0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748\",\r\n \"name\": \"cassandra-db2748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:07:35.1459642Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Cassandra\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d354b404-2fbd-410e-a9de-c4bc6585ca50\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cassandra-db2748-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableCassandra\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/806dcf93-731e-4307-9898-08220ea7c566?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODA2ZGNmOTMtNzMxZS00MzA3LTk4OTgtMDgyMjBlYTdjNTY2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/89d2e54a-fe6d-436e-b381-2818a968daa0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODlkMmU1NGEtZmU2ZC00MzZlLWIzODEtMjgxOGE5NjhkYWEwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb6b531-6eb8-4c74-b433-f44a3e7bb616" + "6c44e975-cd2e-425c-8076-f8ddb1594fe7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -357,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11988" ], "x-ms-request-id": [ - "74302379-0658-466f-9377-b7465465ced5" + "8fa55364-bb94-4635-a8d9-1e6724e45c76" ], "x-ms-correlation-request-id": [ - "74302379-0658-466f-9377-b7465465ced5" + "8fa55364-bb94-4635-a8d9-1e6724e45c76" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170458Z:74302379-0658-466f-9377-b7465465ced5" + "JIOINDIACENTRAL:20220512T100808Z:8fa55364-bb94-4635-a8d9-1e6724e45c76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:04:58 GMT" + "Thu, 12 May 2022 10:08:08 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/806dcf93-731e-4307-9898-08220ea7c566?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODA2ZGNmOTMtNzMxZS00MzA3LTk4OTgtMDgyMjBlYTdjNTY2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/89d2e54a-fe6d-436e-b381-2818a968daa0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODlkMmU1NGEtZmU2ZC00MzZlLWIzODEtMjgxOGE5NjhkYWEwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb6b531-6eb8-4c74-b433-f44a3e7bb616" + "6c44e975-cd2e-425c-8076-f8ddb1594fe7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11987" ], "x-ms-request-id": [ - "eadcac93-1e8c-4f2b-93cd-aede1a891b93" + "0506f3ca-4d30-4346-8462-c761dbaa735b" ], "x-ms-correlation-request-id": [ - "eadcac93-1e8c-4f2b-93cd-aede1a891b93" + "0506f3ca-4d30-4346-8462-c761dbaa735b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170528Z:eadcac93-1e8c-4f2b-93cd-aede1a891b93" + "JIOINDIACENTRAL:20220512T100839Z:0506f3ca-4d30-4346-8462-c761dbaa735b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:05:28 GMT" + "Thu, 12 May 2022 10:08:39 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/806dcf93-731e-4307-9898-08220ea7c566?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODA2ZGNmOTMtNzMxZS00MzA3LTk4OTgtMDgyMjBlYTdjNTY2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/89d2e54a-fe6d-436e-b381-2818a968daa0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODlkMmU1NGEtZmU2ZC00MzZlLWIzODEtMjgxOGE5NjhkYWEwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb6b531-6eb8-4c74-b433-f44a3e7bb616" + "6c44e975-cd2e-425c-8076-f8ddb1594fe7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11986" ], "x-ms-request-id": [ - "801a1cba-c175-4410-9c35-927d79e69985" + "e4d65146-77c2-46ea-9a82-cd9812f3b182" ], "x-ms-correlation-request-id": [ - "801a1cba-c175-4410-9c35-927d79e69985" + "e4d65146-77c2-46ea-9a82-cd9812f3b182" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170559Z:801a1cba-c175-4410-9c35-927d79e69985" + "JIOINDIACENTRAL:20220512T100910Z:e4d65146-77c2-46ea-9a82-cd9812f3b182" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:05:59 GMT" + "Thu, 12 May 2022 10:09:09 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/806dcf93-731e-4307-9898-08220ea7c566?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODA2ZGNmOTMtNzMxZS00MzA3LTk4OTgtMDgyMjBlYTdjNTY2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/89d2e54a-fe6d-436e-b381-2818a968daa0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODlkMmU1NGEtZmU2ZC00MzZlLWIzODEtMjgxOGE5NjhkYWEwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb6b531-6eb8-4c74-b433-f44a3e7bb616" + "6c44e975-cd2e-425c-8076-f8ddb1594fe7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11985" ], "x-ms-request-id": [ - "6906f604-4251-4372-ad7e-ca90f535e846" + "bf43f4ee-d628-4195-ad56-256ba2283159" ], "x-ms-correlation-request-id": [ - "6906f604-4251-4372-ad7e-ca90f535e846" + "bf43f4ee-d628-4195-ad56-256ba2283159" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170630Z:6906f604-4251-4372-ad7e-ca90f535e846" + "JIOINDIACENTRAL:20220512T100940Z:bf43f4ee-d628-4195-ad56-256ba2283159" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:06:29 GMT" + "Thu, 12 May 2022 10:09:40 GMT" ], "Content-Length": [ "21" @@ -565,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/806dcf93-731e-4307-9898-08220ea7c566?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODA2ZGNmOTMtNzMxZS00MzA3LTk4OTgtMDgyMjBlYTdjNTY2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/89d2e54a-fe6d-436e-b381-2818a968daa0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODlkMmU1NGEtZmU2ZC00MzZlLWIzODEtMjgxOGE5NjhkYWEwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb6b531-6eb8-4c74-b433-f44a3e7bb616" + "6c44e975-cd2e-425c-8076-f8ddb1594fe7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11984" ], "x-ms-request-id": [ - "c7a9693d-c612-4221-8471-f93994e89754" + "d4372efe-0320-4442-bf88-3a845ee58c7e" ], "x-ms-correlation-request-id": [ - "c7a9693d-c612-4221-8471-f93994e89754" + "d4372efe-0320-4442-bf88-3a845ee58c7e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170701Z:c7a9693d-c612-4221-8471-f93994e89754" + "JIOINDIACENTRAL:20220512T101012Z:d4372efe-0320-4442-bf88-3a845ee58c7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:07:00 GMT" + "Thu, 12 May 2022 10:10:11 GMT" ], "Content-Length": [ "22" @@ -625,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af17ee3d-f220-4d36-89a7-45fde6905a4a" + "02cd0ce8-3f11-4a2f-8a29-9983c3c6b641" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -660,47 +660,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "448bf1d2-484b-4d26-a331-f2d8e457e921" + "5f8fdf68-f1ef-487b-8078-93542670b110" ], "x-ms-correlation-request-id": [ - "448bf1d2-484b-4d26-a331-f2d8e457e921" + "5f8fdf68-f1ef-487b-8078-93542670b110" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170701Z:448bf1d2-484b-4d26-a331-f2d8e457e921" + "CENTRALINDIA:20220512T101014Z:5f8fdf68-f1ef-487b-8078-93542670b110" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:07:00 GMT" + "Thu, 12 May 2022 10:10:13 GMT" ], "Content-Length": [ - "5584" + "6296" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: af17ee3d-f220-4d36-89a7-45fde6905a4a, Request URI: /apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/7135921c-69c9-443b-aa76-db8d514be356/partitions/592d3047-b051-4531-b2cf-98198bae6c49/replicas/132911775425953633s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T17:07:01.7191998Z, RequestEndTime: 2022-03-08T17:07:01.7291747Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:05:57.2888175Z\\\\\\\",\\\\\\\"cpu\\\\\\\":7.386,\\\\\\\"memory\\\\\\\":408050304.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0185,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:06:07.2988420Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.512,\\\\\\\"memory\\\\\\\":405933224.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0153,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:06:17.2988741Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.176,\\\\\\\"memory\\\\\\\":403527216.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0112,\\\\\\\"availableThreads\\\\\\\":32759,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:06:27.3089538Z\\\\\\\",\\\\\\\"cpu\\\\\\\":9.463,\\\\\\\"memory\\\\\\\":409435180.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0257,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:06:48.1290772Z\\\\\\\",\\\\\\\"cpu\\\\\\\":11.434,\\\\\\\"memory\\\\\\\":405721280.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0275,\\\\\\\"availableThreads\\\\\\\":32711,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:06:58.1391520Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.212,\\\\\\\"memory\\\\\\\":404690676.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":2.1509,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T17:07:01.7191998Z; ResponseTime: 2022-03-08T17:07:01.7291747Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11000/apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/7135921c-69c9-443b-aa76-db8d514be356/partitions/592d3047-b051-4531-b2cf-98198bae6c49/replicas/132911775425953633s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.352, ActivityId: af17ee3d-f220-4d36-89a7-45fde6905a4a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7191998Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0126},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7192124Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0127},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7192251Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1874},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7194125Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0308},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7214433Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1222},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7215655Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":463,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T17:07:01.7191998Z; ResponseTime: 2022-03-08T17:07:01.7291747Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/7135921c-69c9-443b-aa76-db8d514be356/partitions/592d3047-b051-4531-b2cf-98198bae6c49/replicas/132911775425953634s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.255, ActivityId: af17ee3d-f220-4d36-89a7-45fde6905a4a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7191998Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0064},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7192062Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7192092Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1343},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7193435Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8736},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7212171Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.111},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:07:01.7213281Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":463,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/KeyspaceName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 02cd0ce8-3f11-4a2f-8a29-9983c3c6b641, Request URI: /apps/6ca80850-1551-4c0b-8add-037c71ad661b/services/e9c5cd85-5be9-49ac-a6b0-0481c96c7feb/partitions/9058b41b-c1aa-426f-a9b6-ce0cf220477e/replicas/132968040039463167s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:10:14.1032582Z, RequestEndTime: 2022-05-12T10:10:14.1132487Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:09:17.5741753Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.581,\\\\\\\"memory\\\\\\\":656643348.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0173,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:09:27.5840001Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.770,\\\\\\\"memory\\\\\\\":656595984.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0152,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:09:37.5938288Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.505,\\\\\\\"memory\\\\\\\":656576816.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0166,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:09:47.6036665Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.356,\\\\\\\"memory\\\\\\\":656560200.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0119,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:09:57.6135075Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.336,\\\\\\\"memory\\\\\\\":656658300.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0171,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:10:07.6233527Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.876,\\\\\\\"memory\\\\\\\":656363300.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0252,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:10:14.1032582Z; ResponseTime: 2022-05-12T10:10:14.1132487Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/6ca80850-1551-4c0b-8add-037c71ad661b/services/e9c5cd85-5be9-49ac-a6b0-0481c96c7feb/partitions/9058b41b-c1aa-426f-a9b6-ce0cf220477e/replicas/132968040039463167s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.924, ActivityId: 02cd0ce8-3f11-4a2f-8a29-9983c3c6b641, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1032582Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0061},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1032643Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0018},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1032661Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0854},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1033515Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1894},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1045409Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0706},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1046115Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:10:14.0632481Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:10:14.0632481Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:10:14.0632481Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":461,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:10:14.1032582Z; ResponseTime: 2022-05-12T10:10:14.1132487Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/6ca80850-1551-4c0b-8add-037c71ad661b/services/e9c5cd85-5be9-49ac-a6b0-0481c96c7feb/partitions/9058b41b-c1aa-426f-a9b6-ce0cf220477e/replicas/132968040039463168s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.878, ActivityId: 02cd0ce8-3f11-4a2f-8a29-9983c3c6b641, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1032582Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0032},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1032614Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0053},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1032667Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.053},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1033197Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1867},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1045064Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0508},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:10:14.1045572Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:10:13.0032660Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:10:13.0032660Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:10:13.0132673Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":461,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/KeyspaceName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af17ee3d-f220-4d36-89a7-45fde6905a4a" + "02cd0ce8-3f11-4a2f-8a29-9983c3c6b641" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "f7f7ab22-9c06-4667-b5a7-8d86dcb77e27" + "f212aaa1-9683-4a5d-8270-7f4606661675" ], "x-ms-correlation-request-id": [ - "f7f7ab22-9c06-4667-b5a7-8d86dcb77e27" + "f212aaa1-9683-4a5d-8270-7f4606661675" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170732Z:f7f7ab22-9c06-4667-b5a7-8d86dcb77e27" + "CENTRALINDIA:20220512T101046Z:f212aaa1-9683-4a5d-8270-7f4606661675" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:07:32 GMT" + "Thu, 12 May 2022 10:10:45 GMT" ], "Content-Length": [ "418" @@ -744,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"KeyspaceName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"KeyspaceName\",\r\n \"_rid\": \"srBCAA==\",\r\n \"_etag\": \"\\\"00000c04-0000-0100-0000-62278d400000\\\"\",\r\n \"_ts\": 1646759232\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"KeyspaceName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"KeyspaceName\",\r\n \"_rid\": \"EJZ9AA==\",\r\n \"_etag\": \"\\\"0000f81a-0000-0100-0000-627cdd100000\\\"\",\r\n \"_ts\": 1652350224\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"KeyspaceName\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "af17ee3d-f220-4d36-89a7-45fde6905a4a" + "02cd0ce8-3f11-4a2f-8a29-9983c3c6b641" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,13 +780,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/85fb2dfe-fa48-49ff-94b4-797e73574279?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/c7c09613-fe29-4fb9-8729-4ce93af3f542?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/85fb2dfe-fa48-49ff-94b4-797e73574279?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7c09613-fe29-4fb9-8729-4ce93af3f542?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "85fb2dfe-fa48-49ff-94b4-797e73574279" + "c7c09613-fe29-4fb9-8729-4ce93af3f542" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,19 +798,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "4f96cf5e-2b05-4ee1-8fe2-8e569a355671" + "40081cf6-f82c-4c43-8a43-7d5b79d516b6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170702Z:4f96cf5e-2b05-4ee1-8fe2-8e569a355671" + "CENTRALINDIA:20220512T101015Z:40081cf6-f82c-4c43-8a43-7d5b79d516b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:07:01 GMT" + "Thu, 12 May 2022 10:10:14 GMT" ], "Content-Length": [ "21" @@ -823,19 +823,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/85fb2dfe-fa48-49ff-94b4-797e73574279?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODVmYjJkZmUtZmE0OC00OWZmLTk0YjQtNzk3ZTczNTc0Mjc5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7c09613-fe29-4fb9-8729-4ce93af3f542?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzdjMDk2MTMtZmUyOS00ZmI5LTg3MjktNGNlOTNhZjNmNTQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af17ee3d-f220-4d36-89a7-45fde6905a4a" + "02cd0ce8-3f11-4a2f-8a29-9983c3c6b641" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -855,22 +855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "b9a3a257-2662-4d4f-bfb1-7cbd8958e3e0" + "8e4f30f5-e435-4339-a51d-c1e8dbe50c8c" ], "x-ms-correlation-request-id": [ - "b9a3a257-2662-4d4f-bfb1-7cbd8958e3e0" + "8e4f30f5-e435-4339-a51d-c1e8dbe50c8c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170732Z:b9a3a257-2662-4d4f-bfb1-7cbd8958e3e0" + "CENTRALINDIA:20220512T101045Z:8e4f30f5-e435-4339-a51d-c1e8dbe50c8c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:07:32 GMT" + "Thu, 12 May 2022 10:10:45 GMT" ], "Content-Length": [ "22" @@ -883,22 +883,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2efe5bc0-ced0-4d3b-8bbe-cae6b6502402" + "e6713e97-3f36-4e2f-abb2-43c7c8c917d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -918,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "7c4a0be3-5d8a-48a0-a006-752f249067b3" + "4ebebe0c-73e9-4813-b09e-47b035a72b62" ], "x-ms-correlation-request-id": [ - "7c4a0be3-5d8a-48a0-a006-752f249067b3" + "4ebebe0c-73e9-4813-b09e-47b035a72b62" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170733Z:7c4a0be3-5d8a-48a0-a006-752f249067b3" + "CENTRALINDIA:20220512T101048Z:4ebebe0c-73e9-4813-b09e-47b035a72b62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:07:32 GMT" + "Thu, 12 May 2022 10:10:47 GMT" ], "Content-Length": [ "394" @@ -942,23 +942,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"V9fZ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"47Ue\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea822f75-0223-401d-aade-c65908e172cf" + "bd85d682-9e44-4dd7-a2bd-e099e5de2c5c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "f8b89352-6ef9-4c4d-8997-34db693b570c" + "83eb1f2e-f606-4224-afe8-1cacfd460f27" ], "x-ms-correlation-request-id": [ - "f8b89352-6ef9-4c4d-8997-34db693b570c" + "83eb1f2e-f606-4224-afe8-1cacfd460f27" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170805Z:f8b89352-6ef9-4c4d-8997-34db693b570c" + "CENTRALINDIA:20220512T101122Z:83eb1f2e-f606-4224-afe8-1cacfd460f27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:08:05 GMT" + "Thu, 12 May 2022 10:11:22 GMT" ], "Content-Length": [ "394" @@ -1002,23 +1002,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"V9fZ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"47Ue\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a383d84-762f-4664-99a5-22d80308bded" + "81e2dfde-2bba-40de-b28a-401f6aa32e00" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11995" ], "x-ms-request-id": [ - "999009ba-2dc5-4342-b576-18d9552cc7f6" + "c27f62c8-45e3-4ebc-87d2-7a3101d0e58f" ], "x-ms-correlation-request-id": [ - "999009ba-2dc5-4342-b576-18d9552cc7f6" + "c27f62c8-45e3-4ebc-87d2-7a3101d0e58f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170836Z:999009ba-2dc5-4342-b576-18d9552cc7f6" + "CENTRALINDIA:20220512T101157Z:c27f62c8-45e3-4ebc-87d2-7a3101d0e58f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:08:36 GMT" + "Thu, 12 May 2022 10:11:56 GMT" ], "Content-Length": [ "394" @@ -1062,23 +1062,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"V9fZ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"47Ue\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "802a7b66-d7f6-4356-9126-09a6aabb7211" + "43da3f7d-8b44-4712-8661-b195ef4c75af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1098,22 +1098,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "5c6c2ccb-a2d6-417e-8f55-d57652249592" + "c91a3e8a-e282-4063-8b7a-05f8eb28c74d" ], "x-ms-correlation-request-id": [ - "5c6c2ccb-a2d6-417e-8f55-d57652249592" + "c91a3e8a-e282-4063-8b7a-05f8eb28c74d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170908Z:5c6c2ccb-a2d6-417e-8f55-d57652249592" + "JIOINDIACENTRAL:20220512T101233Z:c91a3e8a-e282-4063-8b7a-05f8eb28c74d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:09:07 GMT" + "Thu, 12 May 2022 10:12:32 GMT" ], "Content-Length": [ "393" @@ -1122,26 +1122,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"V9fZ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"47Ue\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ea822f75-0223-401d-aade-c65908e172cf" + "bd85d682-9e44-4dd7-a2bd-e099e5de2c5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1158,13 +1158,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/d60211b6-41ff-41a4-8b5f-2b35058a0191?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/5b8dd4de-3493-435b-8857-5bb46c9493ff?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d60211b6-41ff-41a4-8b5f-2b35058a0191?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5b8dd4de-3493-435b-8857-5bb46c9493ff?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d60211b6-41ff-41a4-8b5f-2b35058a0191" + "5b8dd4de-3493-435b-8857-5bb46c9493ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,19 +1176,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "124ca7f9-221d-48d3-8b56-6e2d8a0dbb59" + "14071791-2d44-4eb6-833a-f926afa11ebb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170733Z:124ca7f9-221d-48d3-8b56-6e2d8a0dbb59" + "CENTRALINDIA:20220512T101051Z:14071791-2d44-4eb6-833a-f926afa11ebb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:07:33 GMT" + "Thu, 12 May 2022 10:10:51 GMT" ], "Content-Length": [ "21" @@ -1201,22 +1201,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a383d84-762f-4664-99a5-22d80308bded" + "81e2dfde-2bba-40de-b28a-401f6aa32e00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1233,13 +1233,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/5e46f941-0836-4655-94ac-e75d87c7912a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/3339f2ec-af62-47c3-9b21-c84c18358433?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5e46f941-0836-4655-94ac-e75d87c7912a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3339f2ec-af62-47c3-9b21-c84c18358433?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "5e46f941-0836-4655-94ac-e75d87c7912a" + "3339f2ec-af62-47c3-9b21-c84c18358433" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,19 +1251,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "6046930b-ae97-4a2a-a543-93c205997e27" + "7002fa58-e9be-45d0-8b2d-990bd173965c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170806Z:6046930b-ae97-4a2a-a543-93c205997e27" + "CENTRALINDIA:20220512T101126Z:7002fa58-e9be-45d0-8b2d-990bd173965c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:08:05 GMT" + "Thu, 12 May 2022 10:11:25 GMT" ], "Content-Length": [ "21" @@ -1276,22 +1276,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "802a7b66-d7f6-4356-9126-09a6aabb7211" + "43da3f7d-8b44-4712-8661-b195ef4c75af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1308,13 +1308,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/4c930e98-1ea0-44d6-bbba-1cf7f5b1647d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/ffb5accf-27a4-443c-b043-4909424eb32f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4c930e98-1ea0-44d6-bbba-1cf7f5b1647d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ffb5accf-27a4-443c-b043-4909424eb32f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "4c930e98-1ea0-44d6-bbba-1cf7f5b1647d" + "ffb5accf-27a4-443c-b043-4909424eb32f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,19 +1326,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "43e00048-f960-4e42-82e0-2d3d4d6dae9e" + "0ff5278a-ad73-4b1e-9946-a6d3a9658243" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170837Z:43e00048-f960-4e42-82e0-2d3d4d6dae9e" + "JIOINDIACENTRAL:20220512T101202Z:0ff5278a-ad73-4b1e-9946-a6d3a9658243" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:08:37 GMT" + "Thu, 12 May 2022 10:12:01 GMT" ], "Content-Length": [ "21" @@ -1351,19 +1351,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d60211b6-41ff-41a4-8b5f-2b35058a0191?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDYwMjExYjYtNDFmZi00MWE0LThiNWYtMmIzNTA1OGEwMTkxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5b8dd4de-3493-435b-8857-5bb46c9493ff?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWI4ZGQ0ZGUtMzQ5My00MzViLTg4NTctNWJiNDZjOTQ5M2ZmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea822f75-0223-401d-aade-c65908e172cf" + "bd85d682-9e44-4dd7-a2bd-e099e5de2c5c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1383,22 +1383,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "fb153c10-e571-4f39-9ccd-4c2d4989968e" + "d56a6383-3880-4d7d-a1ef-7da4398b6019" ], "x-ms-correlation-request-id": [ - "fb153c10-e571-4f39-9ccd-4c2d4989968e" + "d56a6383-3880-4d7d-a1ef-7da4398b6019" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170804Z:fb153c10-e571-4f39-9ccd-4c2d4989968e" + "CENTRALINDIA:20220512T101121Z:d56a6383-3880-4d7d-a1ef-7da4398b6019" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:08:04 GMT" + "Thu, 12 May 2022 10:11:21 GMT" ], "Content-Length": [ "22" @@ -1411,19 +1411,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5e46f941-0836-4655-94ac-e75d87c7912a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWU0NmY5NDEtMDgzNi00NjU1LTk0YWMtZTc1ZDg3Yzc5MTJhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3339f2ec-af62-47c3-9b21-c84c18358433?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzMzOWYyZWMtYWY2Mi00N2MzLTliMjEtYzg0YzE4MzU4NDMzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a383d84-762f-4664-99a5-22d80308bded" + "81e2dfde-2bba-40de-b28a-401f6aa32e00" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1443,22 +1443,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-request-id": [ - "58068862-6267-43ed-a0a3-2a186b376794" + "1b23621f-a264-46b2-847b-c7d22075202c" ], "x-ms-correlation-request-id": [ - "58068862-6267-43ed-a0a3-2a186b376794" + "1b23621f-a264-46b2-847b-c7d22075202c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170836Z:58068862-6267-43ed-a0a3-2a186b376794" + "CENTRALINDIA:20220512T101157Z:1b23621f-a264-46b2-847b-c7d22075202c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:08:36 GMT" + "Thu, 12 May 2022 10:11:56 GMT" ], "Content-Length": [ "22" @@ -1471,19 +1471,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4c930e98-1ea0-44d6-bbba-1cf7f5b1647d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGM5MzBlOTgtMWVhMC00NGQ2LWJiYmEtMWNmN2Y1YjE2NDdkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ffb5accf-27a4-443c-b043-4909424eb32f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmZiNWFjY2YtMjdhNC00NDNjLWIwNDMtNDkwOTQyNGViMzJmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "802a7b66-d7f6-4356-9126-09a6aabb7211" + "43da3f7d-8b44-4712-8661-b195ef4c75af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1503,22 +1503,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "39cdb8b1-a318-4b48-ab88-fe63632dc6af" + "eaf56cec-820a-480d-9c69-338f5d9e68e6" ], "x-ms-correlation-request-id": [ - "39cdb8b1-a318-4b48-ab88-fe63632dc6af" + "eaf56cec-820a-480d-9c69-338f5d9e68e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170907Z:39cdb8b1-a318-4b48-ab88-fe63632dc6af" + "JIOINDIACENTRAL:20220512T101233Z:eaf56cec-820a-480d-9c69-338f5d9e68e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:09:07 GMT" + "Thu, 12 May 2022 10:12:32 GMT" ], "Content-Length": [ "22" @@ -1531,22 +1531,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5fe21a1-8c33-4938-8372-27a56ab1475d" + "45a36373-a210-4e76-8c08-a6f2da93efaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1566,47 +1566,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-request-id": [ - "ad40d932-f07c-44c6-8e80-162ea9803e08" + "18a5cc84-d2c1-46de-bbd7-1e1275b44cef" ], "x-ms-correlation-request-id": [ - "ad40d932-f07c-44c6-8e80-162ea9803e08" + "18a5cc84-d2c1-46de-bbd7-1e1275b44cef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170908Z:ad40d932-f07c-44c6-8e80-162ea9803e08" + "JIOINDIACENTRAL:20220512T101237Z:18a5cc84-d2c1-46de-bbd7-1e1275b44cef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:09:07 GMT" + "Thu, 12 May 2022 10:12:37 GMT" ], "Content-Length": [ - "5608" + "6320" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: a5fe21a1-8c33-4938-8372-27a56ab1475d, Request URI: /apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/7135921c-69c9-443b-aa76-db8d514be356/partitions/592d3047-b051-4531-b2cf-98198bae6c49/replicas/132911775425953633s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T17:09:08.4520334Z, RequestEndTime: 2022-03-08T17:09:08.4520334Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:08:11.4618705Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.262,\\\\\\\"memory\\\\\\\":401145492.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0199,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:08:21.4719611Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.079,\\\\\\\"memory\\\\\\\":400571636.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0165,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:08:31.4820728Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.754,\\\\\\\"memory\\\\\\\":400156564.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0736,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:08:41.4920146Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.514,\\\\\\\"memory\\\\\\\":399735372.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0278,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:08:51.5020392Z\\\\\\\",\\\\\\\"cpu\\\\\\\":10.198,\\\\\\\"memory\\\\\\\":404144440.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T17:09:01.5120667Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.190,\\\\\\\"memory\\\\\\\":403856380.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T17:09:08.4520334Z; ResponseTime: 2022-03-08T17:09:08.4520334Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11000/apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/7135921c-69c9-443b-aa76-db8d514be356/partitions/592d3047-b051-4531-b2cf-98198bae6c49/replicas/132911775425953633s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.281, ActivityId: a5fe21a1-8c33-4938-8372-27a56ab1475d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4520334Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.019},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4520524Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0045},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4520569Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2861},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4523430Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0038},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4543468Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1652},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4545120Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":493,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T17:09:08.4520334Z; ResponseTime: 2022-03-08T17:09:08.4520334Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/7135921c-69c9-443b-aa76-db8d514be356/partitions/592d3047-b051-4531-b2cf-98198bae6c49/replicas/132911775425953635s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.226, ActivityId: a5fe21a1-8c33-4938-8372-27a56ab1475d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4520334Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0245},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4520579Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4520609Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1904},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4522513Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8217},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4540730Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1633},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T17:09:08.4542363Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":493,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/KeyspaceName/colls/tableName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 45a36373-a210-4e76-8c08-a6f2da93efaa, Request URI: /apps/6ca80850-1551-4c0b-8add-037c71ad661b/services/e9c5cd85-5be9-49ac-a6b0-0481c96c7feb/partitions/9058b41b-c1aa-426f-a9b6-ce0cf220477e/replicas/132968040039463167s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:12:37.8113863Z, RequestEndTime: 2022-05-12T10:12:37.8113863Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:11:47.7119582Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.471,\\\\\\\"memory\\\\\\\":656241040.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0134,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:11:57.7118488Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.644,\\\\\\\"memory\\\\\\\":656464144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0149,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:12:07.7217356Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.434,\\\\\\\"memory\\\\\\\":656361192.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0133,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:12:17.7316096Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.199,\\\\\\\"memory\\\\\\\":656613488.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0123,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:12:27.7414976Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.432,\\\\\\\"memory\\\\\\\":656748532.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0148,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:12:37.7513874Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.332,\\\\\\\"memory\\\\\\\":656511188.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0156,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:12:37.8113863Z; ResponseTime: 2022-05-12T10:12:37.8113863Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/6ca80850-1551-4c0b-8add-037c71ad661b/services/e9c5cd85-5be9-49ac-a6b0-0481c96c7feb/partitions/9058b41b-c1aa-426f-a9b6-ce0cf220477e/replicas/132968040039463167s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.177, ActivityId: 45a36373-a210-4e76-8c08-a6f2da93efaa, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8113863Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0066},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8113929Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8113951Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1716},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8115667Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5298},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8130965Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0256},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8131221Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:12:37.8113863Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:12:37.8113863Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:12:37.8113863Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":481,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:12:37.8113863Z; ResponseTime: 2022-05-12T10:12:37.8113863Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/6ca80850-1551-4c0b-8add-037c71ad661b/services/e9c5cd85-5be9-49ac-a6b0-0481c96c7feb/partitions/9058b41b-c1aa-426f-a9b6-ce0cf220477e/replicas/132968040039463168s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.85, ActivityId: 45a36373-a210-4e76-8c08-a6f2da93efaa, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8113863Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8113893Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8113901Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1393},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8115294Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0373},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8125667Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.067},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:12:37.8126337Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:12:37.8113863Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:12:37.8113863Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:12:37.8113863Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":481,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/KeyspaceName/colls/tableName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5fe21a1-8c33-4938-8372-27a56ab1475d" + "45a36373-a210-4e76-8c08-a6f2da93efaa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1626,22 +1626,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11996" ], "x-ms-request-id": [ - "ee7347a3-a945-4ae7-b5a2-8753e2649b5c" + "a7d937f4-dc8b-442b-9b9a-cf8667373afa" ], "x-ms-correlation-request-id": [ - "ee7347a3-a945-4ae7-b5a2-8753e2649b5c" + "a7d937f4-dc8b-442b-9b9a-cf8667373afa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170939Z:ee7347a3-a945-4ae7-b5a2-8753e2649b5c" + "JIOINDIACENTRAL:20220512T101309Z:a7d937f4-dc8b-442b-9b9a-cf8667373afa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:09:39 GMT" + "Thu, 12 May 2022 10:13:09 GMT" ], "Content-Length": [ "632" @@ -1650,26 +1650,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"tableName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName\",\r\n \"_rid\": \"srBCAKq2VnU=\",\r\n \"_etag\": \"\\\"00001604-0000-0100-0000-62278dbf0000\\\"\",\r\n \"_ts\": 1646759359,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\r\n \"name\": \"tableName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName\",\r\n \"_rid\": \"EJZ9AKezdGo=\",\r\n \"_etag\": \"\\\"0000021b-0000-0100-0000-627cdd9d0000\\\"\",\r\n \"_ts\": 1652350365,\r\n \"defaultTtl\": 0,\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName\",\r\n \"schema\": {\r\n \"columns\": [\r\n {\r\n \"name\": \"ColumnA\",\r\n \"type\": \"int\"\r\n },\r\n {\r\n \"name\": \"ColumnB\",\r\n \"type\": \"ascii\"\r\n }\r\n ],\r\n \"partitionKeys\": [\r\n {\r\n \"name\": \"ColumnA\"\r\n }\r\n ],\r\n \"clusterKeys\": [\r\n {\r\n \"name\": \"ColumnB\",\r\n \"orderBy\": \"Asc\"\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a5fe21a1-8c33-4938-8372-27a56ab1475d" + "45a36373-a210-4e76-8c08-a6f2da93efaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1686,13 +1686,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/0373e555-9398-4d32-b055-fd1d2b8e8892?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/8b63aafe-0742-463f-8c40-d598fc5b4c1e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0373e555-9398-4d32-b055-fd1d2b8e8892?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8b63aafe-0742-463f-8c40-d598fc5b4c1e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "0373e555-9398-4d32-b055-fd1d2b8e8892" + "8b63aafe-0742-463f-8c40-d598fc5b4c1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,19 +1704,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "7b8d3de8-9bbe-44cd-b0fd-358b43b6247e" + "789d1227-9b40-45b6-898f-9d50a476e2a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170909Z:7b8d3de8-9bbe-44cd-b0fd-358b43b6247e" + "JIOINDIACENTRAL:20220512T101238Z:789d1227-9b40-45b6-898f-9d50a476e2a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:09:08 GMT" + "Thu, 12 May 2022 10:12:38 GMT" ], "Content-Length": [ "21" @@ -1729,19 +1729,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0373e555-9398-4d32-b055-fd1d2b8e8892?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDM3M2U1NTUtOTM5OC00ZDMyLWIwNTUtZmQxZDJiOGU4ODkyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8b63aafe-0742-463f-8c40-d598fc5b4c1e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGI2M2FhZmUtMDc0Mi00NjNmLThjNDAtZDU5OGZjNWI0YzFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5fe21a1-8c33-4938-8372-27a56ab1475d" + "45a36373-a210-4e76-8c08-a6f2da93efaa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1761,22 +1761,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11997" ], "x-ms-request-id": [ - "cde5d6fe-dddd-4819-b642-d2d8bf36fc54" + "4be32800-d90c-4dae-8c20-5084ce100cd3" ], "x-ms-correlation-request-id": [ - "cde5d6fe-dddd-4819-b642-d2d8bf36fc54" + "4be32800-d90c-4dae-8c20-5084ce100cd3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170939Z:cde5d6fe-dddd-4819-b642-d2d8bf36fc54" + "JIOINDIACENTRAL:20220512T101309Z:4be32800-d90c-4dae-8c20-5084ce100cd3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:09:39 GMT" + "Thu, 12 May 2022 10:13:08 GMT" ], "Content-Length": [ "22" @@ -1789,22 +1789,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa5f7ee1-ed3e-4a12-af6e-fef24bbc8b7a" + "528d6e5c-dab5-4091-8ab1-12128ca8d9d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1824,22 +1824,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-request-id": [ - "9b41714a-5722-454b-bdd8-aee1195f124a" + "f6bb8d0b-1fc2-40dd-8809-d20286709522" ], "x-ms-correlation-request-id": [ - "9b41714a-5722-454b-bdd8-aee1195f124a" + "f6bb8d0b-1fc2-40dd-8809-d20286709522" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170940Z:9b41714a-5722-454b-bdd8-aee1195f124a" + "JIOINDIACENTRAL:20220512T101312Z:f6bb8d0b-1fc2-40dd-8809-d20286709522" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:09:39 GMT" + "Thu, 12 May 2022 10:13:11 GMT" ], "Content-Length": [ "417" @@ -1848,23 +1848,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"YK8w\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"3TMX\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0624d9af-d576-4105-9634-69274bd1fbac" + "a21d673d-4b82-42aa-9bd1-63d791b1b388" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1884,22 +1884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11992" ], "x-ms-request-id": [ - "2fc1e3fd-d144-485e-a2fd-b3abcf2fc71c" + "ed9b9c9a-7f08-4a79-9d76-0fd11b47fd01" ], "x-ms-correlation-request-id": [ - "2fc1e3fd-d144-485e-a2fd-b3abcf2fc71c" + "ed9b9c9a-7f08-4a79-9d76-0fd11b47fd01" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171011Z:2fc1e3fd-d144-485e-a2fd-b3abcf2fc71c" + "JIOINDIACENTRAL:20220512T101346Z:ed9b9c9a-7f08-4a79-9d76-0fd11b47fd01" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:10:10 GMT" + "Thu, 12 May 2022 10:13:46 GMT" ], "Content-Length": [ "417" @@ -1908,23 +1908,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"YK8w\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"3TMX\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0482fa47-01e9-4ccb-88e2-42986571d707" + "e78043cd-8261-4a26-a755-a5effafbad66" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1944,22 +1944,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11990" ], "x-ms-request-id": [ - "93585ffc-a610-4f3c-98a9-de310d737116" + "fa0e8ed4-c0a0-45c6-b9f1-7eda44d53a3e" ], "x-ms-correlation-request-id": [ - "93585ffc-a610-4f3c-98a9-de310d737116" + "fa0e8ed4-c0a0-45c6-b9f1-7eda44d53a3e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171043Z:93585ffc-a610-4f3c-98a9-de310d737116" + "JIOINDIACENTRAL:20220512T101420Z:fa0e8ed4-c0a0-45c6-b9f1-7eda44d53a3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:10:42 GMT" + "Thu, 12 May 2022 10:14:20 GMT" ], "Content-Length": [ "417" @@ -1968,23 +1968,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"YK8w\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"3TMX\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27050030-c831-4f79-a338-42d400273480" + "5d9c3539-8455-4b6a-a3b2-ce36508057b7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2004,22 +2004,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11996" ], "x-ms-request-id": [ - "9bb182f4-8416-4545-aa57-2c3ae0b30878" + "2f9900f0-b32f-494a-bee9-d71024016ff8" ], "x-ms-correlation-request-id": [ - "9bb182f4-8416-4545-aa57-2c3ae0b30878" + "2f9900f0-b32f-494a-bee9-d71024016ff8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171114Z:9bb182f4-8416-4545-aa57-2c3ae0b30878" + "JIOINDIACENTRAL:20220512T101454Z:2f9900f0-b32f-494a-bee9-d71024016ff8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:11:13 GMT" + "Thu, 12 May 2022 10:14:54 GMT" ], "Content-Length": [ "417" @@ -2028,26 +2028,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"YK8w\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"3TMX\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0624d9af-d576-4105-9634-69274bd1fbac" + "a21d673d-4b82-42aa-9bd1-63d791b1b388" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2064,13 +2064,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/584986d6-1bc8-4249-b952-b070c4984d0c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/47ed4acb-d9d1-4841-825a-8d7e4d8eafd1?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/584986d6-1bc8-4249-b952-b070c4984d0c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47ed4acb-d9d1-4841-825a-8d7e4d8eafd1?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "584986d6-1bc8-4249-b952-b070c4984d0c" + "47ed4acb-d9d1-4841-825a-8d7e4d8eafd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,19 +2082,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "dda269a9-88f7-46e7-8ccc-1aa762c5df43" + "6d1eeedc-d9ea-4669-9581-383d4d39e015" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T170941Z:dda269a9-88f7-46e7-8ccc-1aa762c5df43" + "JIOINDIACENTRAL:20220512T101314Z:6d1eeedc-d9ea-4669-9581-383d4d39e015" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:09:40 GMT" + "Thu, 12 May 2022 10:13:13 GMT" ], "Content-Length": [ "21" @@ -2107,22 +2107,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0482fa47-01e9-4ccb-88e2-42986571d707" + "e78043cd-8261-4a26-a755-a5effafbad66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2139,13 +2139,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/a21eba45-dd72-4da8-92de-f834e66c3b26?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/5170ff82-a2ee-49c0-81ac-a65bf5cb74da?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a21eba45-dd72-4da8-92de-f834e66c3b26?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5170ff82-a2ee-49c0-81ac-a65bf5cb74da?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a21eba45-dd72-4da8-92de-f834e66c3b26" + "5170ff82-a2ee-49c0-81ac-a65bf5cb74da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2157,19 +2157,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "5677d6d4-f51f-4700-a752-7191d1e2ccba" + "6584002c-8fbf-45cd-94d9-2bc4b966bf78" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171012Z:5677d6d4-f51f-4700-a752-7191d1e2ccba" + "JIOINDIACENTRAL:20220512T101349Z:6584002c-8fbf-45cd-94d9-2bc4b966bf78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:10:11 GMT" + "Thu, 12 May 2022 10:13:49 GMT" ], "Content-Length": [ "21" @@ -2182,22 +2182,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "27050030-c831-4f79-a338-42d400273480" + "5d9c3539-8455-4b6a-a3b2-ce36508057b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2214,13 +2214,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/ab02e8ad-87e4-4e52-b217-f9688b5f9fed?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/3ad79138-cfe8-44b3-9b8c-db776471f62c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ab02e8ad-87e4-4e52-b217-f9688b5f9fed?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ad79138-cfe8-44b3-9b8c-db776471f62c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ab02e8ad-87e4-4e52-b217-f9688b5f9fed" + "3ad79138-cfe8-44b3-9b8c-db776471f62c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2232,19 +2232,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "009d8715-e255-4ab5-b866-663a9aff9cdf" + "1a255d4f-149c-44e9-af76-43d0a68f41bb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171043Z:009d8715-e255-4ab5-b866-663a9aff9cdf" + "JIOINDIACENTRAL:20220512T101422Z:1a255d4f-149c-44e9-af76-43d0a68f41bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:10:43 GMT" + "Thu, 12 May 2022 10:14:22 GMT" ], "Content-Length": [ "21" @@ -2257,19 +2257,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/584986d6-1bc8-4249-b952-b070c4984d0c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTg0OTg2ZDYtMWJjOC00MjQ5LWI5NTItYjA3MGM0OTg0ZDBjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47ed4acb-d9d1-4841-825a-8d7e4d8eafd1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDdlZDRhY2ItZDlkMS00ODQxLTgyNWEtOGQ3ZTRkOGVhZmQxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0624d9af-d576-4105-9634-69274bd1fbac" + "a21d673d-4b82-42aa-9bd1-63d791b1b388" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2289,22 +2289,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11993" ], "x-ms-request-id": [ - "a8fd48f8-2a3d-42a9-a10c-44940900a10e" + "8b20a54e-418a-40b4-aca7-63a7c52b8e01" ], "x-ms-correlation-request-id": [ - "a8fd48f8-2a3d-42a9-a10c-44940900a10e" + "8b20a54e-418a-40b4-aca7-63a7c52b8e01" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171011Z:a8fd48f8-2a3d-42a9-a10c-44940900a10e" + "JIOINDIACENTRAL:20220512T101345Z:8b20a54e-418a-40b4-aca7-63a7c52b8e01" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:10:10 GMT" + "Thu, 12 May 2022 10:13:45 GMT" ], "Content-Length": [ "22" @@ -2317,19 +2317,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a21eba45-dd72-4da8-92de-f834e66c3b26?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTIxZWJhNDUtZGQ3Mi00ZGE4LTkyZGUtZjgzNGU2NmMzYjI2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5170ff82-a2ee-49c0-81ac-a65bf5cb74da?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTE3MGZmODItYTJlZS00OWMwLTgxYWMtYTY1YmY1Y2I3NGRhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0482fa47-01e9-4ccb-88e2-42986571d707" + "e78043cd-8261-4a26-a755-a5effafbad66" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2349,22 +2349,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11991" ], "x-ms-request-id": [ - "a2de9d12-7741-41e6-8dec-9d3423f655be" + "ecb91661-d114-4f14-9c3f-f435807fba35" ], "x-ms-correlation-request-id": [ - "a2de9d12-7741-41e6-8dec-9d3423f655be" + "ecb91661-d114-4f14-9c3f-f435807fba35" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171042Z:a2de9d12-7741-41e6-8dec-9d3423f655be" + "JIOINDIACENTRAL:20220512T101420Z:ecb91661-d114-4f14-9c3f-f435807fba35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:10:42 GMT" + "Thu, 12 May 2022 10:14:20 GMT" ], "Content-Length": [ "22" @@ -2377,19 +2377,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ab02e8ad-87e4-4e52-b217-f9688b5f9fed?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWIwMmU4YWQtODdlNC00ZTUyLWIyMTctZjk2ODhiNWY5ZmVkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ad79138-cfe8-44b3-9b8c-db776471f62c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2FkNzkxMzgtY2ZlOC00NGIzLTliOGMtZGI3NzY0NzFmNjJjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27050030-c831-4f79-a338-42d400273480" + "5d9c3539-8455-4b6a-a3b2-ce36508057b7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2409,22 +2409,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11997" ], "x-ms-request-id": [ - "16c093c6-ce62-4ed8-ad31-ce3511df2330" + "586668f7-8623-47e2-bec0-7d3ce7c36149" ], "x-ms-correlation-request-id": [ - "16c093c6-ce62-4ed8-ad31-ce3511df2330" + "586668f7-8623-47e2-bec0-7d3ce7c36149" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171114Z:16c093c6-ce62-4ed8-ad31-ce3511df2330" + "JIOINDIACENTRAL:20220512T101453Z:586668f7-8623-47e2-bec0-7d3ce7c36149" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:11:13 GMT" + "Thu, 12 May 2022 10:14:53 GMT" ], "Content-Length": [ "22" @@ -2437,22 +2437,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb39034b-ec8c-4abd-978c-549adf6d69e7" + "af704991-d40b-4a8e-82cb-3b07daf76730" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2463,13 +2463,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/7b2030f0-641b-47d9-b45f-6835b1790467?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/826a71a5-0dd2-4d8c-ba55-28f9db02d9e1?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7b2030f0-641b-47d9-b45f-6835b1790467?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/826a71a5-0dd2-4d8c-ba55-28f9db02d9e1?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "7b2030f0-641b-47d9-b45f-6835b1790467" + "826a71a5-0dd2-4d8c-ba55-28f9db02d9e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2481,19 +2481,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "5b69afd3-8d1d-40a2-bdd2-0bb90ae9e4d7" + "7d184461-29d3-4800-a093-bb7cdce9a702" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171115Z:5b69afd3-8d1d-40a2-bdd2-0bb90ae9e4d7" + "JIOINDIACENTRAL:20220512T101456Z:7d184461-29d3-4800-a093-bb7cdce9a702" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:11:15 GMT" + "Thu, 12 May 2022 10:14:56 GMT" ], "Content-Length": [ "21" @@ -2506,22 +2506,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3d59acf-50ba-475c-813b-abbc0d931db6" + "d40c4ebf-91c7-4ac8-bb02-10b30c5d18b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2532,13 +2532,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/aef81543-0a69-4384-bd56-515fd17707a5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/b1279ead-f871-4535-9b62-0af240b3616b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/aef81543-0a69-4384-bd56-515fd17707a5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1279ead-f871-4535-9b62-0af240b3616b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "aef81543-0a69-4384-bd56-515fd17707a5" + "b1279ead-f871-4535-9b62-0af240b3616b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2550,19 +2550,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "e2e58c82-14b5-46e1-8d7a-6dad979c1901" + "abfee26e-7801-451e-a687-fbadf641a8f2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171220Z:e2e58c82-14b5-46e1-8d7a-6dad979c1901" + "CENTRALINDIA:20220512T101604Z:abfee26e-7801-451e-a687-fbadf641a8f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:12:19 GMT" + "Thu, 12 May 2022 10:16:03 GMT" ], "Content-Length": [ "21" @@ -2575,19 +2575,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7b2030f0-641b-47d9-b45f-6835b1790467?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2IyMDMwZjAtNjQxYi00N2Q5LWI0NWYtNjgzNWIxNzkwNDY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/826a71a5-0dd2-4d8c-ba55-28f9db02d9e1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODI2YTcxYTUtMGRkMi00ZDhjLWJhNTUtMjhmOWRiMDJkOWUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb39034b-ec8c-4abd-978c-549adf6d69e7" + "af704991-d40b-4a8e-82cb-3b07daf76730" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2607,22 +2607,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11982" ], "x-ms-request-id": [ - "d81f16f2-f759-47d3-a118-8ce187f2dca7" + "119fe397-5bcf-4edd-a787-10fb3c914b40" ], "x-ms-correlation-request-id": [ - "d81f16f2-f759-47d3-a118-8ce187f2dca7" + "119fe397-5bcf-4edd-a787-10fb3c914b40" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171145Z:d81f16f2-f759-47d3-a118-8ce187f2dca7" + "JIOINDIACENTRAL:20220512T101527Z:119fe397-5bcf-4edd-a787-10fb3c914b40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:11:44 GMT" + "Thu, 12 May 2022 10:15:27 GMT" ], "Content-Length": [ "22" @@ -2635,19 +2635,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/7b2030f0-641b-47d9-b45f-6835b1790467?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL29wZXJhdGlvblJlc3VsdHMvN2IyMDMwZjAtNjQxYi00N2Q5LWI0NWYtNjgzNWIxNzkwNDY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/826a71a5-0dd2-4d8c-ba55-28f9db02d9e1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL29wZXJhdGlvblJlc3VsdHMvODI2YTcxYTUtMGRkMi00ZDhjLWJhNTUtMjhmOWRiMDJkOWUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb39034b-ec8c-4abd-978c-549adf6d69e7" + "af704991-d40b-4a8e-82cb-3b07daf76730" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2667,22 +2667,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11981" ], "x-ms-request-id": [ - "cb06378c-922d-4880-83e6-2d7be24cb046" + "6562d7c6-337c-4865-b7ae-c1f197544b8e" ], "x-ms-correlation-request-id": [ - "cb06378c-922d-4880-83e6-2d7be24cb046" + "6562d7c6-337c-4865-b7ae-c1f197544b8e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171145Z:cb06378c-922d-4880-83e6-2d7be24cb046" + "JIOINDIACENTRAL:20220512T101528Z:6562d7c6-337c-4865-b7ae-c1f197544b8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:11:45 GMT" + "Thu, 12 May 2022 10:15:27 GMT" ], "Content-Type": [ "application/json" @@ -2692,22 +2692,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea5800bc-f1ba-466f-800a-c8f0ee34cc55" + "e370f524-bd8a-4549-b3ca-5bb8b1e244c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2718,13 +2718,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/84bb44b5-5a29-4579-9a60-c46c8522e061?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/5e01bb5a-5fa8-4ac0-bb07-ec0d87244e33?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84bb44b5-5a29-4579-9a60-c46c8522e061?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5e01bb5a-5fa8-4ac0-bb07-ec0d87244e33?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "84bb44b5-5a29-4579-9a60-c46c8522e061" + "5e01bb5a-5fa8-4ac0-bb07-ec0d87244e33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2736,19 +2736,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "1fcfcd8b-39e3-49fb-8285-93fc63758c54" + "a4cf74d0-2a87-4851-832c-a27116857bcc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T171147Z:1fcfcd8b-39e3-49fb-8285-93fc63758c54" + "CENTRALINDIA:20220512T101529Z:a4cf74d0-2a87-4851-832c-a27116857bcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:11:46 GMT" + "Thu, 12 May 2022 10:15:29 GMT" ], "Content-Length": [ "21" @@ -2761,22 +2761,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd01fb1e-e1d5-4d09-82ca-ca260013c818" + "9a29ebdc-6ae1-49bb-962c-685b584b46a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2787,13 +2787,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/302f48c2-0b3e-48eb-b29f-b9884b6ccf84?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/01587ca0-74a0-4b1d-884a-5a228739cf25?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/302f48c2-0b3e-48eb-b29f-b9884b6ccf84?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/01587ca0-74a0-4b1d-884a-5a228739cf25?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "302f48c2-0b3e-48eb-b29f-b9884b6ccf84" + "01587ca0-74a0-4b1d-884a-5a228739cf25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2808,16 +2808,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "17a0ce30-a9f0-4dcb-9995-4e0f2e2c8b72" + "7fb8aa68-3584-41fe-8556-5bd1ab24e729" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171253Z:17a0ce30-a9f0-4dcb-9995-4e0f2e2c8b72" + "CENTRALINDIA:20220512T101639Z:7fb8aa68-3584-41fe-8556-5bd1ab24e729" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:12:53 GMT" + "Thu, 12 May 2022 10:16:38 GMT" ], "Content-Length": [ "21" @@ -2830,19 +2830,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84bb44b5-5a29-4579-9a60-c46c8522e061?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRiYjQ0YjUtNWEyOS00NTc5LTlhNjAtYzQ2Yzg1MjJlMDYxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5e01bb5a-5fa8-4ac0-bb07-ec0d87244e33?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMWJiNWEtNWZhOC00YWMwLWJiMDctZWMwZDg3MjQ0ZTMzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea5800bc-f1ba-466f-800a-c8f0ee34cc55" + "e370f524-bd8a-4549-b3ca-5bb8b1e244c9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2862,22 +2862,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "a2c1251b-745a-41a3-8409-b4a1397983db" + "6d17bc16-6671-4110-9137-9348590a4daf" ], "x-ms-correlation-request-id": [ - "a2c1251b-745a-41a3-8409-b4a1397983db" + "6d17bc16-6671-4110-9137-9348590a4daf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T171218Z:a2c1251b-745a-41a3-8409-b4a1397983db" + "CENTRALINDIA:20220512T101600Z:6d17bc16-6671-4110-9137-9348590a4daf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:12:17 GMT" + "Thu, 12 May 2022 10:15:59 GMT" ], "Content-Length": [ "22" @@ -2890,19 +2890,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/84bb44b5-5a29-4579-9a60-c46c8522e061?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzg0YmI0NGI1LTVhMjktNDU3OS05YTYwLWM0NmM4NTIyZTA2MT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/5e01bb5a-5fa8-4ac0-bb07-ec0d87244e33?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzVlMDFiYjVhLTVmYTgtNGFjMC1iYjA3LWVjMGQ4NzI0NGUzMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea5800bc-f1ba-466f-800a-c8f0ee34cc55" + "e370f524-bd8a-4549-b3ca-5bb8b1e244c9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2922,22 +2922,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-request-id": [ - "b1752f19-e7a8-4bc2-9950-8fc27b1b8fb1" + "b4f01dfc-184d-488f-bde4-5e808e431497" ], "x-ms-correlation-request-id": [ - "b1752f19-e7a8-4bc2-9950-8fc27b1b8fb1" + "b4f01dfc-184d-488f-bde4-5e808e431497" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T171218Z:b1752f19-e7a8-4bc2-9950-8fc27b1b8fb1" + "CENTRALINDIA:20220512T101600Z:b4f01dfc-184d-488f-bde4-5e808e431497" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:12:17 GMT" + "Thu, 12 May 2022 10:16:00 GMT" ], "Content-Type": [ "application/json" @@ -2947,19 +2947,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/aef81543-0a69-4384-bd56-515fd17707a5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWVmODE1NDMtMGE2OS00Mzg0LWJkNTYtNTE1ZmQxNzcwN2E1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1279ead-f871-4535-9b62-0af240b3616b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjEyNzllYWQtZjg3MS00NTM1LTliNjItMGFmMjQwYjM2MTZiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3d59acf-50ba-475c-813b-abbc0d931db6" + "d40c4ebf-91c7-4ac8-bb02-10b30c5d18b4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2979,22 +2979,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "a446457f-7943-4c42-89a6-38ef12678c69" + "9e9b9ab5-1c16-4899-a66f-f931158c3886" ], "x-ms-correlation-request-id": [ - "a446457f-7943-4c42-89a6-38ef12678c69" + "9e9b9ab5-1c16-4899-a66f-f931158c3886" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171251Z:a446457f-7943-4c42-89a6-38ef12678c69" + "CENTRALINDIA:20220512T101634Z:9e9b9ab5-1c16-4899-a66f-f931158c3886" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:12:51 GMT" + "Thu, 12 May 2022 10:16:34 GMT" ], "Content-Length": [ "22" @@ -3007,19 +3007,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/aef81543-0a69-4384-bd56-515fd17707a5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL29wZXJhdGlvblJlc3VsdHMvYWVmODE1NDMtMGE2OS00Mzg0LWJkNTYtNTE1ZmQxNzcwN2E1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/b1279ead-f871-4535-9b62-0af240b3616b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS90YWJsZXMvdGFibGVOYW1lL29wZXJhdGlvblJlc3VsdHMvYjEyNzllYWQtZjg3MS00NTM1LTliNjItMGFmMjQwYjM2MTZiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3d59acf-50ba-475c-813b-abbc0d931db6" + "d40c4ebf-91c7-4ac8-bb02-10b30c5d18b4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3039,22 +3039,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "b161801a-39ee-473b-9a5a-d9cf4eb72907" + "167d9925-3bf7-4584-b076-e1a7f77d3c42" ], "x-ms-correlation-request-id": [ - "b161801a-39ee-473b-9a5a-d9cf4eb72907" + "167d9925-3bf7-4584-b076-e1a7f77d3c42" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171251Z:b161801a-39ee-473b-9a5a-d9cf4eb72907" + "CENTRALINDIA:20220512T101635Z:167d9925-3bf7-4584-b076-e1a7f77d3c42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:12:51 GMT" + "Thu, 12 May 2022 10:16:35 GMT" ], "Content-Type": [ "application/json" @@ -3064,19 +3064,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/302f48c2-0b3e-48eb-b29f-b9884b6ccf84?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzAyZjQ4YzItMGIzZS00OGViLWIyOWYtYjk4ODRiNmNjZjg0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/01587ca0-74a0-4b1d-884a-5a228739cf25?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDE1ODdjYTAtNzRhMC00YjFkLTg4NGEtNWEyMjg3MzljZjI1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd01fb1e-e1d5-4d09-82ca-ca260013c818" + "9a29ebdc-6ae1-49bb-962c-685b584b46a4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3099,19 +3099,19 @@ "11999" ], "x-ms-request-id": [ - "27c22dd1-0102-4c8f-835c-5c95029f977d" + "1cf143cc-545b-4188-a1d5-f0f5d39bc969" ], "x-ms-correlation-request-id": [ - "27c22dd1-0102-4c8f-835c-5c95029f977d" + "1cf143cc-545b-4188-a1d5-f0f5d39bc969" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171324Z:27c22dd1-0102-4c8f-835c-5c95029f977d" + "CENTRALINDIA:20220512T101709Z:1cf143cc-545b-4188-a1d5-f0f5d39bc969" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:13:23 GMT" + "Thu, 12 May 2022 10:17:09 GMT" ], "Content-Length": [ "22" @@ -3124,19 +3124,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/302f48c2-0b3e-48eb-b29f-b9884b6ccf84?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzMwMmY0OGMyLTBiM2UtNDhlYi1iMjlmLWI5ODg0YjZjY2Y4ND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup48/providers/Microsoft.DocumentDB/databaseAccounts/cassandra-db2748/cassandraKeyspaces/KeyspaceName/operationResults/01587ca0-74a0-4b1d-884a-5a228739cf25?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nhc3NhbmRyYS1kYjI3NDgvY2Fzc2FuZHJhS2V5c3BhY2VzL0tleXNwYWNlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzAxNTg3Y2EwLTc0YTAtNGIxZC04ODRhLTVhMjI4NzM5Y2YyNT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd01fb1e-e1d5-4d09-82ca-ca260013c818" + "9a29ebdc-6ae1-49bb-962c-685b584b46a4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3159,19 +3159,19 @@ "11998" ], "x-ms-request-id": [ - "1137957d-e8bc-4c6c-94f7-83d519157270" + "df0fe6eb-2303-49ba-b608-0d33159e5db6" ], "x-ms-correlation-request-id": [ - "1137957d-e8bc-4c6c-94f7-83d519157270" + "df0fe6eb-2303-49ba-b608-0d33159e5db6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T171324Z:1137957d-e8bc-4c6c-94f7-83d519157270" + "CENTRALINDIA:20220512T101710Z:df0fe6eb-2303-49ba-b608-0d33159e5db6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 17:13:23 GMT" + "Thu, 12 May 2022 10:17:09 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md index 8a70897d8e14..bdda3038d94a 100644 --- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md +++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md @@ -55,6 +55,28 @@ Tags : Resource : Microsoft.Azure.Commands.CosmosDB.Models.PSSqlContainerGetPropertiesResource ``` +### Example 2: Create a new CosmosDB Sql Container with Client Encryption Policy +```powershell +PS C:\> $includedPath1 = [Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionIncludedPath]::new("/path1","key1","Deterministic","AEAD_AES_256_CBC_HMAC_SHA256"); +PS C:\> $includedPath2 = [Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionIncludedPath]::new("/path2","key2","Randomized","AEAD_AES_256_CBC_HMAC_SHA256"); +PS C:\> $listofIncludedPaths = New-Object Collections.Generic.List[Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionIncludedPath] +PS C:\> $listofIncludedPaths.Add($includedPath1) +PS C:\> $listofIncludedPaths.Add($includedPath2) +PS C:\> $newClientEncryptionPolicy = New-Object Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionPolicy +PS C:\> $newClientEncryptionPolicy.IncludedPaths = $listofIncludedPaths +PS C:\> $newPSSqlClientEncryptionPolicy = [Microsoft.Azure.Commands.CosmosDB.Models.PSSqlClientEncryptionPolicy]::new($newClientEncryptionPolicy) +PS C:\> New-AzCosmosDBSqlContainer -AccountName myAccountName -DatabaseName myDatabaseName -ResourceGroupName myRgName -Name myContainerName -PartitionKeyPath /a/b/c -PartitionKeyKind Hash -ClientEncryptionPolicy $newPSSqlClientEncryptionPolicy +``` + +```output +Name : myContainerName +Id : /subscriptions/mySubscriptionId/resourceGroups/myRgName/providers/Microsoft.DocumentDB/databaseAccounts/myAccountName/sqlDatabases/myDatabaseName/contain + ers/myContainerName +Location : +Tags : +Resource : Microsoft.Azure.Commands.CosmosDB.Models.PSSqlContainerGetPropertiesResource +``` + ## PARAMETERS ### -AccountName From b2b444a000e433bb1f982a969030430042b2d4d7 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Thu, 12 May 2022 20:23:01 +0530 Subject: [PATCH 10/18] updated session records. --- .../ScenarioTests/TableOperationsTests.ps1 | 2 +- .../TestGremlinMigrateThroughputCmdlets.json | 1086 +++---- .../TestGremlinOperationsCmdlets.json | 1148 ++++--- ...mlinOperationsCmdletsUsingInputObject.json | 1186 ++++--- .../TestGremlinThroughputCmdlets.json | 1232 ++++---- .../TestMongoMigrateThroughputCmdlets.json | 1068 +++---- .../TestMongoOperationsCmdlets.json | 906 +++--- .../TestMongoThroughputCmdlets.json | 1214 ++++--- ...oDBCollectionBackupInformationCmdLets.json | 574 ++-- .../TestMongoRestoreAccountCmdlets.json | 496 +-- .../TestRestoreFromNewAccountCmdlets.json | 1238 ++++---- ...tSqlContainerBackupInformationCmdLets.json | 540 ++-- ...dateCosmosDBAccountBackupPolicyCmdLet.json | 276 +- .../TestClientEncryptionKeyCmdlets.json | 2778 +++++++++++++++++ .../TestSqlMigrateThroughputCmdlets.json | 960 +++--- .../TestSqlOperationsCmdlets.json | 2122 ++++++------- ...tSqlOperationsCmdletsUsingInputObject.json | 2418 +++++++------- .../TestSqlRoleCmdlets.json | 2076 ++++++------ .../TestSqlThroughputCmdlets.json | 1740 +++++------ .../TestTableMigrateThroughputCmdlets.json | 628 ++-- .../TestTableOperationsCmdlets.json | 678 ++-- ...ableOperationsCmdletsUsingInputObject.json | 766 ++--- .../TestTableThroughputCmdlets.json | 824 +++-- 23 files changed, 14157 insertions(+), 11799 deletions(-) create mode 100644 src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestClientEncryptionKeyCmdlets.json diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.ps1 index e7c9a2b6a250..b48534ad107e 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.ps1 @@ -150,7 +150,7 @@ Test Table throughput cmdlets using all parameter sets #> function Test-TableThroughputCmdlets { - $AccountName = "table-db2530" + $AccountName = "table-db2527" $rgName = "CosmosDBResourceGroup34" $TableName = "tableName3" $apiKind = "Table" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinMigrateThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinMigrateThroughputCmdlets.json index 9ac41f0e021c..a9676c4c9999 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinMigrateThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinMigrateThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88fdbb52-b939-40a3-9428-2bef86b49632" + "f480440c-6eec-4e07-aeb4-15a17af3d75f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "edfc1c1f-d2f3-45f2-b716-b07321b26076" + "9ab309c1-6024-4bc3-b6b5-50db8c5111a1" ], "x-ms-correlation-request-id": [ - "edfc1c1f-d2f3-45f2-b716-b07321b26076" + "9ab309c1-6024-4bc3-b6b5-50db8c5111a1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T001745Z:edfc1c1f-d2f3-45f2-b716-b07321b26076" + "JIOINDIACENTRAL:20220512T134835Z:9ab309c1-6024-4bc3-b6b5-50db8c5111a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:17:44 GMT" + "Thu, 12 May 2022 13:48:35 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" + "8cc53a2a-938b-482f-8447-f5724d19b66f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "10f737b1-874d-44e2-be9b-ed9eae5a921c" + "438bf432-9772-42b2-bf9f-2bb18963409b" ], "x-ms-correlation-request-id": [ - "10f737b1-874d-44e2-be9b-ed9eae5a921c" + "438bf432-9772-42b2-bf9f-2bb18963409b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T001746Z:10f737b1-874d-44e2-be9b-ed9eae5a921c" + "JIOINDIACENTRAL:20220512T134836Z:438bf432-9772-42b2-bf9f-2bb18963409b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:17:45 GMT" + "Thu, 12 May 2022 13:48:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" + "8cc53a2a-938b-482f-8447-f5724d19b66f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-request-id": [ - "5ef7d4f7-4faa-45a6-995e-21f977a52090" + "63e4a82c-f45c-497d-bcef-fc6c4e90e488" ], "x-ms-correlation-request-id": [ - "5ef7d4f7-4faa-45a6-995e-21f977a52090" + "63e4a82c-f45c-497d-bcef-fc6c4e90e488" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002056Z:5ef7d4f7-4faa-45a6-995e-21f977a52090" + "JIOINDIACENTRAL:20220512T135120Z:63e4a82c-f45c-497d-bcef-fc6c4e90e488" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:20:56 GMT" + "Thu, 12 May 2022 13:51:19 GMT" ], "Content-Length": [ "2444" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:20:05.0676283Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1053.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1053.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e4e5df76-b612-4f40-be7c-263ea15862ab\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:51:02.4422628Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1053.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1053.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"6091ec54-5805-482e-8494-52730d962a6a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2585303d-abbb-4065-92e0-1882bf4edd73" + "b5b1f4e8-e56f-4eca-a64f-829d9760167a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11982" ], "x-ms-request-id": [ - "f4124ee1-0fdf-47be-baeb-2424b19cf8b5" + "31ebce51-84ba-499c-b180-9dc95695ae1c" ], "x-ms-correlation-request-id": [ - "f4124ee1-0fdf-47be-baeb-2424b19cf8b5" + "31ebce51-84ba-499c-b180-9dc95695ae1c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002200Z:f4124ee1-0fdf-47be-baeb-2424b19cf8b5" + "JIOINDIACENTRAL:20220512T135231Z:31ebce51-84ba-499c-b180-9dc95695ae1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:21:59 GMT" + "Thu, 12 May 2022 13:52:30 GMT" ], "Content-Length": [ "2444" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:20:05.0676283Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1053.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1053.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e4e5df76-b612-4f40-be7c-263ea15862ab\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:51:02.4422628Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1053.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1053.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"6091ec54-5805-482e-8494-52730d962a6a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" + "8cc53a2a-938b-482f-8447-f5724d19b66f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/operationResults/c02eaa41-6ded-4321-a114-38885ea84f78?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/operationResults/94d7de6f-defd-4dd5-8cdc-bb483bebaa01?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c02eaa41-6ded-4321-a114-38885ea84f78" + "94d7de6f-defd-4dd5-8cdc-bb483bebaa01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c02eaa41-6ded-4321-a114-38885ea84f78?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94d7de6f-defd-4dd5-8cdc-bb483bebaa01?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "3b34ad92-d7db-4028-a28d-37dac423857e" + "02641c19-4d0e-47d7-b639-7e9343d8de70" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T001754Z:3b34ad92-d7db-4028-a28d-37dac423857e" + "JIOINDIACENTRAL:20220512T134846Z:02641c19-4d0e-47d7-b639-7e9343d8de70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:17:54 GMT" + "Thu, 12 May 2022 13:48:46 GMT" ], "Content-Length": [ "2056" @@ -321,83 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:17:52.0679949Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e4e5df76-b612-4f40-be7c-263ea15862ab\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c02eaa41-6ded-4321-a114-38885ea84f78?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzAyZWFhNDEtNmRlZC00MzIxLWExMTQtMzg4ODVlYTg0Zjc4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "3750947b-011a-4426-9454-1fb6940185df" - ], - "x-ms-correlation-request-id": [ - "3750947b-011a-4426-9454-1fb6940185df" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T001825Z:3750947b-011a-4426-9454-1fb6940185df" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Mar 2022 00:18:25 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:48:43.6140904Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"6091ec54-5805-482e-8494-52730d962a6a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c02eaa41-6ded-4321-a114-38885ea84f78?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzAyZWFhNDEtNmRlZC00MzIxLWExMTQtMzg4ODVlYTg0Zjc4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94d7de6f-defd-4dd5-8cdc-bb483bebaa01?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTRkN2RlNmYtZGVmZC00ZGQ1LThjZGMtYmI0ODNiZWJhYTAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" + "8cc53a2a-938b-482f-8447-f5724d19b66f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "6c3fcaa6-54d1-410c-8c4b-e769320e55cf" + "4bdff5d0-1df4-40ac-8abf-cbf433b78707" ], "x-ms-correlation-request-id": [ - "6c3fcaa6-54d1-410c-8c4b-e769320e55cf" + "4bdff5d0-1df4-40ac-8abf-cbf433b78707" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T001855Z:6c3fcaa6-54d1-410c-8c4b-e769320e55cf" + "JIOINDIACENTRAL:20220512T134917Z:4bdff5d0-1df4-40ac-8abf-cbf433b78707" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:18:55 GMT" + "Thu, 12 May 2022 13:49:16 GMT" ], "Content-Length": [ "21" @@ -445,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c02eaa41-6ded-4321-a114-38885ea84f78?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzAyZWFhNDEtNmRlZC00MzIxLWExMTQtMzg4ODVlYTg0Zjc4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94d7de6f-defd-4dd5-8cdc-bb483bebaa01?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTRkN2RlNmYtZGVmZC00ZGQ1LThjZGMtYmI0ODNiZWJhYTAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" + "8cc53a2a-938b-482f-8447-f5724d19b66f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-request-id": [ - "32bfd608-d578-4861-9181-d633a5ef9ef9" + "7f3f864a-12bd-4021-8842-691101f7bb29" ], "x-ms-correlation-request-id": [ - "32bfd608-d578-4861-9181-d633a5ef9ef9" + "7f3f864a-12bd-4021-8842-691101f7bb29" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T001925Z:32bfd608-d578-4861-9181-d633a5ef9ef9" + "JIOINDIACENTRAL:20220512T134947Z:7f3f864a-12bd-4021-8842-691101f7bb29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:19:25 GMT" + "Thu, 12 May 2022 13:49:47 GMT" ], "Content-Length": [ "21" @@ -505,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c02eaa41-6ded-4321-a114-38885ea84f78?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzAyZWFhNDEtNmRlZC00MzIxLWExMTQtMzg4ODVlYTg0Zjc4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94d7de6f-defd-4dd5-8cdc-bb483bebaa01?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTRkN2RlNmYtZGVmZC00ZGQ1LThjZGMtYmI0ODNiZWJhYTAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" + "8cc53a2a-938b-482f-8447-f5724d19b66f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-request-id": [ - "c27c4ec4-3cb8-43f8-8003-90b6ef0ef7f2" + "52d1992c-258c-496f-9e9e-faa54a9e449b" ], "x-ms-correlation-request-id": [ - "c27c4ec4-3cb8-43f8-8003-90b6ef0ef7f2" + "52d1992c-258c-496f-9e9e-faa54a9e449b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T001956Z:c27c4ec4-3cb8-43f8-8003-90b6ef0ef7f2" + "JIOINDIACENTRAL:20220512T135018Z:52d1992c-258c-496f-9e9e-faa54a9e449b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:19:55 GMT" + "Thu, 12 May 2022 13:50:18 GMT" ], "Content-Length": [ "21" @@ -565,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c02eaa41-6ded-4321-a114-38885ea84f78?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzAyZWFhNDEtNmRlZC00MzIxLWExMTQtMzg4ODVlYTg0Zjc4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94d7de6f-defd-4dd5-8cdc-bb483bebaa01?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTRkN2RlNmYtZGVmZC00ZGQ1LThjZGMtYmI0ODNiZWJhYTAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" + "8cc53a2a-938b-482f-8447-f5724d19b66f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-request-id": [ - "a8726588-63c6-4220-9fd2-e42d3a8da637" + "645ab157-0c06-40de-96e6-b0bb64d201fa" ], "x-ms-correlation-request-id": [ - "a8726588-63c6-4220-9fd2-e42d3a8da637" + "645ab157-0c06-40de-96e6-b0bb64d201fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002026Z:a8726588-63c6-4220-9fd2-e42d3a8da637" + "JIOINDIACENTRAL:20220512T135048Z:645ab157-0c06-40de-96e6-b0bb64d201fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:20:25 GMT" + "Thu, 12 May 2022 13:50:48 GMT" ], "Content-Length": [ "21" @@ -625,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c02eaa41-6ded-4321-a114-38885ea84f78?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzAyZWFhNDEtNmRlZC00MzIxLWExMTQtMzg4ODVlYTg0Zjc4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94d7de6f-defd-4dd5-8cdc-bb483bebaa01?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTRkN2RlNmYtZGVmZC00ZGQ1LThjZGMtYmI0ODNiZWJhYTAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb7a810-371d-4c57-84e5-f1c7e6f88acc" + "8cc53a2a-938b-482f-8447-f5724d19b66f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "a82c4406-1006-4516-b68c-8808e11b43da" + "62c4bbcd-4105-4599-aba2-f33b837c62d7" ], "x-ms-correlation-request-id": [ - "a82c4406-1006-4516-b68c-8808e11b43da" + "62c4bbcd-4105-4599-aba2-f33b837c62d7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002056Z:a82c4406-1006-4516-b68c-8808e11b43da" + "JIOINDIACENTRAL:20220512T135119Z:62c4bbcd-4105-4599-aba2-f33b837c62d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:20:56 GMT" + "Thu, 12 May 2022 13:51:19 GMT" ], "Content-Length": [ "22" @@ -685,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d12d18d-5c53-41fa-a141-d9d62f94e520" + "9f3085ff-4fe9-4a2f-bdcf-8fa90ada6866" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,47 +660,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-request-id": [ - "575176f2-ecc4-46f5-93cf-0f8ccb6a02cf" + "ebd45f35-b3c5-43c2-b1d5-e6a848c40ebd" ], "x-ms-correlation-request-id": [ - "575176f2-ecc4-46f5-93cf-0f8ccb6a02cf" + "ebd45f35-b3c5-43c2-b1d5-e6a848c40ebd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002057Z:575176f2-ecc4-46f5-93cf-0f8ccb6a02cf" + "CENTRALINDIA:20220512T135121Z:ebd45f35-b3c5-43c2-b1d5-e6a848c40ebd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:20:57 GMT" + "Thu, 12 May 2022 13:51:21 GMT" ], "Content-Length": [ - "5579" + "6289" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 6d12d18d-5c53-41fa-a141-d9d62f94e520, Request URI: /apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/df4aad5b-2c28-45c1-a366-2ebb84d70f4b/partitions/96013af2-4c8a-4f29-a171-1148dfe2bf3b/replicas/132902211098834780s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-09T00:20:57.3782449Z, RequestEndTime: 2022-03-09T00:20:57.3782449Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:19:59.8477087Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.938,\\\\\\\"memory\\\\\\\":412118340.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0417,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:20:09.8578259Z\\\\\\\",\\\\\\\"cpu\\\\\\\":5.348,\\\\\\\"memory\\\\\\\":413839028.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0368,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:20:19.8678545Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.697,\\\\\\\"memory\\\\\\\":413178240.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0327,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:20:29.8779453Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.701,\\\\\\\"memory\\\\\\\":411930008.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0148,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:20:39.8880653Z\\\\\\\",\\\\\\\"cpu\\\\\\\":8.690,\\\\\\\"memory\\\\\\\":413658248.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0158,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:20:49.8981952Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.825,\\\\\\\"memory\\\\\\\":412964520.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0163,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-09T00:20:57.3782449Z; ResponseTime: 2022-03-09T00:20:57.3782449Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/df4aad5b-2c28-45c1-a366-2ebb84d70f4b/partitions/96013af2-4c8a-4f29-a171-1148dfe2bf3b/replicas/132902211098834780s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.262, ActivityId: 6d12d18d-5c53-41fa-a141-d9d62f94e520, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3782449Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0127},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3782576Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0034},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3782610Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1099},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3783709Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9222},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3802931Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0651},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3803582Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-09T00:20:57.3782449Z; ResponseTime: 2022-03-09T00:20:57.3782449Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/df4aad5b-2c28-45c1-a366-2ebb84d70f4b/partitions/96013af2-4c8a-4f29-a171-1148dfe2bf3b/replicas/132902211098834778s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.169, ActivityId: 6d12d18d-5c53-41fa-a141-d9d62f94e520, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3782449Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0069},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3782518Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0023},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3782541Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1013},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3783554Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.923},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3802784Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0752},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:20:57.3803536Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 9f3085ff-4fe9-4a2f-bdcf-8fa90ada6866, Request URI: /apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/a5658296-0420-4530-9b2c-3d052fbc561d/partitions/192b5861-60ce-4877-b766-b01781f9aa78/replicas/132968319068922059s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T13:51:21.6236473Z, RequestEndTime: 2022-05-12T13:51:21.6236473Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:50:27.6042452Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.403,\\\\\\\"memory\\\\\\\":658005340.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.02,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:50:37.6141366Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.132,\\\\\\\"memory\\\\\\\":657870056.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0317,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:50:47.6240288Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.227,\\\\\\\"memory\\\\\\\":657723624.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0117,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:50:57.6339215Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.266,\\\\\\\"memory\\\\\\\":658443580.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0159,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:51:07.6438018Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.256,\\\\\\\"memory\\\\\\\":658453380.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0641,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:51:17.6536966Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.405,\\\\\\\"memory\\\\\\\":658320988.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0677,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T13:51:21.6236473Z; ResponseTime: 2022-05-12T13:51:21.6236473Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/a5658296-0420-4530-9b2c-3d052fbc561d/partitions/192b5861-60ce-4877-b766-b01781f9aa78/replicas/132968319068922059s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.775, ActivityId: 9f3085ff-4fe9-4a2f-bdcf-8fa90ada6866, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6236473Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0061},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6236534Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6236556Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0793},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6237349Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1143},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6248492Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1625},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6250117Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:51:21.5836493Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:51:21.5836493Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:51:21.5836493Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T13:51:21.6236473Z; ResponseTime: 2022-05-12T13:51:21.6236473Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11300/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/a5658296-0420-4530-9b2c-3d052fbc561d/partitions/192b5861-60ce-4877-b766-b01781f9aa78/replicas/132968319068922060s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.89, ActivityId: 9f3085ff-4fe9-4a2f-bdcf-8fa90ada6866, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6236473Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6236499Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6236507Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0495},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6237002Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2618},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6249620Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1493},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:51:21.6251113Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:51:21.5836493Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:51:21.5836493Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:51:21.5836493Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d12d18d-5c53-41fa-a141-d9d62f94e520" + "9f3085ff-4fe9-4a2f-bdcf-8fa90ada6866" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-request-id": [ - "6dc1c1f9-daa4-4385-9138-2f2be7725101" + "2f982a21-460a-4d15-b0b6-3138879f025f" ], "x-ms-correlation-request-id": [ - "6dc1c1f9-daa4-4385-9138-2f2be7725101" + "2f982a21-460a-4d15-b0b6-3138879f025f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002128Z:6dc1c1f9-daa4-4385-9138-2f2be7725101" + "CENTRALINDIA:20220512T135153Z:2f982a21-460a-4d15-b0b6-3138879f025f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:21:28 GMT" + "Thu, 12 May 2022 13:51:53 GMT" ], "Content-Length": [ "457" @@ -804,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"-X1UAA==\",\r\n \"_self\": \"dbs/-X1UAA==/\",\r\n \"_etag\": \"\\\"00000900-0000-0100-0000-6227f2f20000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646785266\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"bQhSAA==\",\r\n \"_self\": \"dbs/bQhSAA==/\",\r\n \"_etag\": \"\\\"0000d90e-0000-0100-0000-627d10e20000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652363490\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6d12d18d-5c53-41fa-a141-d9d62f94e520" + "9f3085ff-4fe9-4a2f-bdcf-8fa90ada6866" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,13 +780,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/332d925c-8e6c-4140-a66c-3dfc62d96989?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/335c3ccc-2720-484f-8e8b-62500372f767?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/332d925c-8e6c-4140-a66c-3dfc62d96989?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/335c3ccc-2720-484f-8e8b-62500372f767?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "332d925c-8e6c-4140-a66c-3dfc62d96989" + "335c3ccc-2720-484f-8e8b-62500372f767" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,19 +798,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "a191a900-bc8f-477a-b368-37408b094a3a" + "3f966080-33d3-4917-8ec4-bfeaf9a8149d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002058Z:a191a900-bc8f-477a-b368-37408b094a3a" + "CENTRALINDIA:20220512T135123Z:3f966080-33d3-4917-8ec4-bfeaf9a8149d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:20:57 GMT" + "Thu, 12 May 2022 13:51:22 GMT" ], "Content-Length": [ "21" @@ -883,19 +823,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/332d925c-8e6c-4140-a66c-3dfc62d96989?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzMyZDkyNWMtOGU2Yy00MTQwLWE2NmMtM2RmYzYyZDk2OTg5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/335c3ccc-2720-484f-8e8b-62500372f767?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzM1YzNjY2MtMjcyMC00ODRmLThlOGItNjI1MDAzNzJmNzY3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d12d18d-5c53-41fa-a141-d9d62f94e520" + "9f3085ff-4fe9-4a2f-bdcf-8fa90ada6866" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -915,22 +855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-request-id": [ - "a07d69f3-d474-49f6-b2e3-90c88b466e30" + "e0ef05ae-f3df-454a-a853-108a38e86ea6" ], "x-ms-correlation-request-id": [ - "a07d69f3-d474-49f6-b2e3-90c88b466e30" + "e0ef05ae-f3df-454a-a853-108a38e86ea6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002128Z:a07d69f3-d474-49f6-b2e3-90c88b466e30" + "CENTRALINDIA:20220512T135153Z:e0ef05ae-f3df-454a-a853-108a38e86ea6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:21:28 GMT" + "Thu, 12 May 2022 13:51:53 GMT" ], "Content-Length": [ "22" @@ -943,22 +883,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b33dfeac-1dac-4d26-aee5-9f920a3e2293" + "be9caab4-1f5b-4ecb-8daf-5df943b90793" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-request-id": [ - "32462cbb-cb2d-4b9c-b3ad-b1e4f12a3557" + "07c67a3d-f3a2-48f1-83f1-6f79041fbf89" ], "x-ms-correlation-request-id": [ - "32462cbb-cb2d-4b9c-b3ad-b1e4f12a3557" + "07c67a3d-f3a2-48f1-83f1-6f79041fbf89" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002129Z:32462cbb-cb2d-4b9c-b3ad-b1e4f12a3557" + "CENTRALINDIA:20220512T135155Z:07c67a3d-f3a2-48f1-83f1-6f79041fbf89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:21:29 GMT" + "Thu, 12 May 2022 13:51:54 GMT" ], "Content-Length": [ "383" @@ -1002,26 +942,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"0d+s\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"UqHT\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d379781b-0a0b-4362-9168-2bb424bc826e" + "5ba93d4d-748e-46b8-9a4e-b5e194020cdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1032,13 +972,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/5e16e49f-65b4-435d-9319-b3ea1dfa38f3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/8f0e13d5-e343-4adf-b97d-748279a39104?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5e16e49f-65b4-435d-9319-b3ea1dfa38f3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8f0e13d5-e343-4adf-b97d-748279a39104?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "5e16e49f-65b4-435d-9319-b3ea1dfa38f3" + "8f0e13d5-e343-4adf-b97d-748279a39104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,16 +993,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f7530fd9-0801-49b0-9e26-b5067c354430" + "38aca281-a0e3-4ddd-bbd0-760925e8efc4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002129Z:f7530fd9-0801-49b0-9e26-b5067c354430" + "CENTRALINDIA:20220512T135158Z:38aca281-a0e3-4ddd-bbd0-760925e8efc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:21:29 GMT" + "Thu, 12 May 2022 13:51:57 GMT" ], "Content-Length": [ "21" @@ -1075,19 +1015,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5e16e49f-65b4-435d-9319-b3ea1dfa38f3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUxNmU0OWYtNjViNC00MzVkLTkzMTktYjNlYTFkZmEzOGYzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8f0e13d5-e343-4adf-b97d-748279a39104?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGYwZTEzZDUtZTM0My00YWRmLWI5N2QtNzQ4Mjc5YTM5MTA0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d379781b-0a0b-4362-9168-2bb424bc826e" + "5ba93d4d-748e-46b8-9a4e-b5e194020cdd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1107,22 +1047,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "a46dd4ad-4952-4f75-889b-eb1915dfc93a" + "5fb86f2d-c81b-42e7-80dc-5e98621f677e" ], "x-ms-correlation-request-id": [ - "a46dd4ad-4952-4f75-889b-eb1915dfc93a" + "5fb86f2d-c81b-42e7-80dc-5e98621f677e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002200Z:a46dd4ad-4952-4f75-889b-eb1915dfc93a" + "CENTRALINDIA:20220512T135228Z:5fb86f2d-c81b-42e7-80dc-5e98621f677e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:21:59 GMT" + "Thu, 12 May 2022 13:52:28 GMT" ], "Content-Length": [ "22" @@ -1135,19 +1075,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/5e16e49f-65b4-435d-9319-b3ea1dfa38f3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy81ZTE2ZTQ5Zi02NWI0LTQzNWQtOTMxOS1iM2VhMWRmYTM4ZjM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/8f0e13d5-e343-4adf-b97d-748279a39104?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy84ZjBlMTNkNS1lMzQzLTRhZGYtYjk3ZC03NDgyNzlhMzkxMDQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d379781b-0a0b-4362-9168-2bb424bc826e" + "5ba93d4d-748e-46b8-9a4e-b5e194020cdd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1167,22 +1107,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-request-id": [ - "cc4733e3-d428-4488-a4da-87752835b992" + "eee7795f-412b-465f-bfb4-c64ebd5a7dfd" ], "x-ms-correlation-request-id": [ - "cc4733e3-d428-4488-a4da-87752835b992" + "eee7795f-412b-465f-bfb4-c64ebd5a7dfd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002200Z:cc4733e3-d428-4488-a4da-87752835b992" + "CENTRALINDIA:20220512T135230Z:eee7795f-412b-465f-bfb4-c64ebd5a7dfd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:21:59 GMT" + "Thu, 12 May 2022 13:52:29 GMT" ], "Content-Length": [ "464" @@ -1191,26 +1131,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"0d+s\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"UqHT\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 200,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 2000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8e80ca1-a4a1-401d-a40c-6eb0e9fe055a" + "fab874cc-1a78-41bd-a26f-6e5dede0ef98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1221,13 +1161,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/ba82b88c-640a-4ec4-b2c8-2d319320f7bc?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/c16d03c6-e434-45c8-ab0b-c33dfdbc10d2?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ba82b88c-640a-4ec4-b2c8-2d319320f7bc?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c16d03c6-e434-45c8-ab0b-c33dfdbc10d2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ba82b88c-640a-4ec4-b2c8-2d319320f7bc" + "c16d03c6-e434-45c8-ab0b-c33dfdbc10d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,16 +1182,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "a812c9c8-927c-4aa2-a9d4-ffc527d6e65c" + "b95e4b2e-9894-4342-970e-c211ea423d83" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002201Z:a812c9c8-927c-4aa2-a9d4-ffc527d6e65c" + "JIOINDIACENTRAL:20220512T135233Z:b95e4b2e-9894-4342-970e-c211ea423d83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:22:00 GMT" + "Thu, 12 May 2022 13:52:32 GMT" ], "Content-Length": [ "21" @@ -1264,19 +1204,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ba82b88c-640a-4ec4-b2c8-2d319320f7bc?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmE4MmI4OGMtNjQwYS00ZWM0LWIyYzgtMmQzMTkzMjBmN2JjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c16d03c6-e434-45c8-ab0b-c33dfdbc10d2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzE2ZDAzYzYtZTQzNC00NWM4LWFiMGItYzMzZGZkYmMxMGQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8e80ca1-a4a1-401d-a40c-6eb0e9fe055a" + "fab874cc-1a78-41bd-a26f-6e5dede0ef98" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1296,22 +1236,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11987" ], "x-ms-request-id": [ - "e16405be-a5c4-4aba-9400-94b853328b51" + "4e0245a0-e518-4951-bffa-8993d6a9b64a" ], "x-ms-correlation-request-id": [ - "e16405be-a5c4-4aba-9400-94b853328b51" + "4e0245a0-e518-4951-bffa-8993d6a9b64a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002231Z:e16405be-a5c4-4aba-9400-94b853328b51" + "JIOINDIACENTRAL:20220512T135304Z:4e0245a0-e518-4951-bffa-8993d6a9b64a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:22:31 GMT" + "Thu, 12 May 2022 13:53:03 GMT" ], "Content-Length": [ "22" @@ -1324,19 +1264,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/ba82b88c-640a-4ec4-b2c8-2d319320f7bc?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvYmE4MmI4OGMtNjQwYS00ZWM0LWIyYzgtMmQzMTkzMjBmN2JjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/c16d03c6-e434-45c8-ab0b-c33dfdbc10d2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvYzE2ZDAzYzYtZTQzNC00NWM4LWFiMGItYzMzZGZkYmMxMGQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8e80ca1-a4a1-401d-a40c-6eb0e9fe055a" + "fab874cc-1a78-41bd-a26f-6e5dede0ef98" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1356,22 +1296,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11986" ], "x-ms-request-id": [ - "c0fbdf7d-0cfc-4b5c-8ff7-c68e64d90216" + "ae843ffe-c619-4648-ad39-4ed4fc609d2e" ], "x-ms-correlation-request-id": [ - "c0fbdf7d-0cfc-4b5c-8ff7-c68e64d90216" + "ae843ffe-c619-4648-ad39-4ed4fc609d2e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002231Z:c0fbdf7d-0cfc-4b5c-8ff7-c68e64d90216" + "JIOINDIACENTRAL:20220512T135304Z:ae843ffe-c619-4648-ad39-4ed4fc609d2e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:22:31 GMT" + "Thu, 12 May 2022 13:53:04 GMT" ], "Content-Length": [ "435" @@ -1380,26 +1320,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"0d+s\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"UqHT\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 2000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c85921f-f8a6-48bb-b978-6eae62a48489" + "e6a0d203-485c-458a-8a94-7211d89bcdf2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1419,47 +1359,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11990" ], "x-ms-request-id": [ - "898b2d37-52e8-4315-935d-a8d5505743c1" + "68a51059-6368-46a3-beae-19870e7bab8c" ], "x-ms-correlation-request-id": [ - "898b2d37-52e8-4315-935d-a8d5505743c1" + "68a51059-6368-46a3-beae-19870e7bab8c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002232Z:898b2d37-52e8-4315-935d-a8d5505743c1" + "JIOINDIACENTRAL:20220512T135307Z:68a51059-6368-46a3-beae-19870e7bab8c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:22:32 GMT" + "Thu, 12 May 2022 13:53:07 GMT" ], "Content-Length": [ - "5605" + "6315" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 1c85921f-f8a6-48bb-b978-6eae62a48489, Request URI: /apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/df4aad5b-2c28-45c1-a366-2ebb84d70f4b/partitions/96013af2-4c8a-4f29-a171-1148dfe2bf3b/replicas/132902211098834778s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-09T00:22:32.0890714Z, RequestEndTime: 2022-03-09T00:22:32.0890714Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:21:39.9486126Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.259,\\\\\\\"memory\\\\\\\":412058432.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0199,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:21:49.9586567Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.575,\\\\\\\"memory\\\\\\\":411670040.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0087,\\\\\\\"availableThreads\\\\\\\":32759,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:21:59.9687944Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.466,\\\\\\\"memory\\\\\\\":410917396.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0338,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:22:09.9788673Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.905,\\\\\\\"memory\\\\\\\":409895724.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0204,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:22:19.9889372Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.080,\\\\\\\"memory\\\\\\\":413158172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0117,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:22:29.9990632Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.676,\\\\\\\"memory\\\\\\\":412247224.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0191,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-09T00:22:32.0890714Z; ResponseTime: 2022-03-09T00:22:32.0890714Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/df4aad5b-2c28-45c1-a366-2ebb84d70f4b/partitions/96013af2-4c8a-4f29-a171-1148dfe2bf3b/replicas/132902211098834778s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.219, ActivityId: 1c85921f-f8a6-48bb-b978-6eae62a48489, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0890714Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0519},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0891233Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0029},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0891262Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.3639},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0894901Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8784},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0913685Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1222},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0914907Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-09T00:22:32.0890714Z; ResponseTime: 2022-03-09T00:22:32.0890714Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/1cd2971c-9605-40eb-8841-99f0b264e443/services/df4aad5b-2c28-45c1-a366-2ebb84d70f4b/partitions/96013af2-4c8a-4f29-a171-1148dfe2bf3b/replicas/132902211098834780s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.27, ActivityId: 1c85921f-f8a6-48bb-b978-6eae62a48489, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0890714Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0069},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0890783Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0890805Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2839},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0893644Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.7864},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0911508Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0554},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:22:32.0912062Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"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/dbName4/colls/graphName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: e6a0d203-485c-458a-8a94-7211d89bcdf2, Request URI: /apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/a5658296-0420-4530-9b2c-3d052fbc561d/partitions/192b5861-60ce-4877-b766-b01781f9aa78/replicas/132968319068922061s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T13:53:07.3067731Z, RequestEndTime: 2022-05-12T13:53:07.3067731Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:52:07.8578302Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.380,\\\\\\\"memory\\\\\\\":646826348.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:52:17.8576202Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.203,\\\\\\\"memory\\\\\\\":646829332.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0195,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:52:27.8674472Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.319,\\\\\\\"memory\\\\\\\":646712808.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0124,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:52:37.8773194Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.322,\\\\\\\"memory\\\\\\\":646599400.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0185,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:52:47.8871157Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.259,\\\\\\\"memory\\\\\\\":646383792.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:52:57.8969021Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.853,\\\\\\\"memory\\\\\\\":646178484.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0102,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T13:53:07.3067731Z; ResponseTime: 2022-05-12T13:53:07.3067731Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/a5658296-0420-4530-9b2c-3d052fbc561d/partitions/192b5861-60ce-4877-b766-b01781f9aa78/replicas/132968319068922061s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.91, ActivityId: e6a0d203-485c-458a-8a94-7211d89bcdf2, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3067731Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0148},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3067879Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0021},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3067900Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2638},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3070538Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2254},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3082792Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0742},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3083534Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:53:07.2567732Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:53:07.2567732Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:53:07.2567732Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T13:53:07.3067731Z; ResponseTime: 2022-05-12T13:53:07.3067731Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/a5658296-0420-4530-9b2c-3d052fbc561d/partitions/192b5861-60ce-4877-b766-b01781f9aa78/replicas/132968319068922059s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.928, ActivityId: e6a0d203-485c-458a-8a94-7211d89bcdf2, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3067731Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0035},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3067766Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3067777Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1502},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3069279Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2586},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3081865Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.052},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:53:07.3082385Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:53:07.2567732Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:53:07.2567732Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:53:07.2567732Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4/colls/graphName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c85921f-f8a6-48bb-b978-6eae62a48489" + "e6a0d203-485c-458a-8a94-7211d89bcdf2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1479,22 +1419,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11988" ], "x-ms-request-id": [ - "266d8546-e689-4e2f-9c45-860c4ec830b7" + "0698073b-cf3b-4acc-9a08-e151c49a7047" ], "x-ms-correlation-request-id": [ - "266d8546-e689-4e2f-9c45-860c4ec830b7" + "0698073b-cf3b-4acc-9a08-e151c49a7047" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002303Z:266d8546-e689-4e2f-9c45-860c4ec830b7" + "JIOINDIACENTRAL:20220512T135340Z:0698073b-cf3b-4acc-9a08-e151c49a7047" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:23:02 GMT" + "Thu, 12 May 2022 13:53:39 GMT" ], "Content-Length": [ "1067" @@ -1503,26 +1443,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graphName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graphName\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"-X1UAL5+C0Y=\",\r\n \"_ts\": 1646785362,\r\n \"_self\": \"dbs/-X1UAA==/colls/-X1UAL5+C0Y=/\",\r\n \"_etag\": \"\\\"00000f00-0000-0100-0000-6227f3520000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graphName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graphName\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"bQhSAJTc2oE=\",\r\n \"_ts\": 1652363596,\r\n \"_self\": \"dbs/bQhSAA==/colls/bQhSAJTc2oE=/\",\r\n \"_etag\": \"\\\"0000df0e-0000-0100-0000-627d114c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graphName\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1c85921f-f8a6-48bb-b978-6eae62a48489" + "e6a0d203-485c-458a-8a94-7211d89bcdf2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1539,13 +1479,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/723954d4-5e03-4253-8456-7a4fc54088c7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/dd7a7ba2-e916-4608-841a-e779b4277d0f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/723954d4-5e03-4253-8456-7a4fc54088c7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dd7a7ba2-e916-4608-841a-e779b4277d0f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "723954d4-5e03-4253-8456-7a4fc54088c7" + "dd7a7ba2-e916-4608-841a-e779b4277d0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1560,16 +1500,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "1d8a0e11-bfa9-4491-95b0-ab276da0af1a" + "3d81a25d-ef85-4b3b-a43d-8dc1275a8ef8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002232Z:1d8a0e11-bfa9-4491-95b0-ab276da0af1a" + "JIOINDIACENTRAL:20220512T135308Z:3d81a25d-ef85-4b3b-a43d-8dc1275a8ef8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:22:32 GMT" + "Thu, 12 May 2022 13:53:08 GMT" ], "Content-Length": [ "21" @@ -1582,19 +1522,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/723954d4-5e03-4253-8456-7a4fc54088c7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzIzOTU0ZDQtNWUwMy00MjUzLTg0NTYtN2E0ZmM1NDA4OGM3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dd7a7ba2-e916-4608-841a-e779b4277d0f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGQ3YTdiYTItZTkxNi00NjA4LTg0MWEtZTc3OWI0Mjc3ZDBmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c85921f-f8a6-48bb-b978-6eae62a48489" + "e6a0d203-485c-458a-8a94-7211d89bcdf2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1614,22 +1554,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11989" ], "x-ms-request-id": [ - "00cbaadf-5cfe-481f-a914-0a368c9342c4" + "00abca0b-de06-4f9d-b1d7-7eb24408360c" ], "x-ms-correlation-request-id": [ - "00cbaadf-5cfe-481f-a914-0a368c9342c4" + "00abca0b-de06-4f9d-b1d7-7eb24408360c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002303Z:00cbaadf-5cfe-481f-a914-0a368c9342c4" + "JIOINDIACENTRAL:20220512T135338Z:00abca0b-de06-4f9d-b1d7-7eb24408360c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:23:02 GMT" + "Thu, 12 May 2022 13:53:38 GMT" ], "Content-Length": [ "22" @@ -1642,22 +1582,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c9fb3fc-3102-4f1c-8722-7390494b620e" + "0b8af38d-73bc-4b1c-8e20-0d48841f99ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1677,22 +1617,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11987" ], "x-ms-request-id": [ - "e56c3ea9-e249-4fef-9298-5bd9020671a9" + "7a38e9b5-dffc-43b0-8c4a-b0676fedafca" ], "x-ms-correlation-request-id": [ - "e56c3ea9-e249-4fef-9298-5bd9020671a9" + "7a38e9b5-dffc-43b0-8c4a-b0676fedafca" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002303Z:e56c3ea9-e249-4fef-9298-5bd9020671a9" + "JIOINDIACENTRAL:20220512T135342Z:7a38e9b5-dffc-43b0-8c4a-b0676fedafca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:23:03 GMT" + "Thu, 12 May 2022 13:53:41 GMT" ], "Content-Length": [ "406" @@ -1701,26 +1641,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"8X5B\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"pr4F\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d5f2e8-b3d8-4cac-a29e-234e741488f8" + "941b4ad0-d0d8-4f3c-b90b-87c88541f1bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1731,13 +1671,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/949c7043-5930-4152-8a5e-e06abe316598?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/0bd1beb1-da56-4f06-bd58-18c9b3101f7c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/949c7043-5930-4152-8a5e-e06abe316598?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0bd1beb1-da56-4f06-bd58-18c9b3101f7c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "949c7043-5930-4152-8a5e-e06abe316598" + "0bd1beb1-da56-4f06-bd58-18c9b3101f7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1752,16 +1692,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "0ae5c408-1cec-4abb-94a0-9631c3185287" + "1f80d917-0cc3-44ab-8c6a-755c474ca552" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002304Z:0ae5c408-1cec-4abb-94a0-9631c3185287" + "JIOINDIACENTRAL:20220512T135343Z:1f80d917-0cc3-44ab-8c6a-755c474ca552" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:23:03 GMT" + "Thu, 12 May 2022 13:53:42 GMT" ], "Content-Length": [ "21" @@ -1774,19 +1714,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/949c7043-5930-4152-8a5e-e06abe316598?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTQ5YzcwNDMtNTkzMC00MTUyLThhNWUtZTA2YWJlMzE2NTk4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0bd1beb1-da56-4f06-bd58-18c9b3101f7c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGJkMWJlYjEtZGE1Ni00ZjA2LWJkNTgtMThjOWIzMTAxZjdjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d5f2e8-b3d8-4cac-a29e-234e741488f8" + "941b4ad0-d0d8-4f3c-b90b-87c88541f1bc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1806,22 +1746,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11985" ], "x-ms-request-id": [ - "70b8a3c8-a88a-494b-8a71-c4e2fc1c325d" + "a4bafe40-33cd-4511-a609-a7e5409eb600" ], "x-ms-correlation-request-id": [ - "70b8a3c8-a88a-494b-8a71-c4e2fc1c325d" + "a4bafe40-33cd-4511-a609-a7e5409eb600" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002334Z:70b8a3c8-a88a-494b-8a71-c4e2fc1c325d" + "JIOINDIACENTRAL:20220512T135414Z:a4bafe40-33cd-4511-a609-a7e5409eb600" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:23:34 GMT" + "Thu, 12 May 2022 13:54:14 GMT" ], "Content-Length": [ "22" @@ -1834,19 +1774,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/949c7043-5930-4152-8a5e-e06abe316598?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzk0OWM3MDQzLTU5MzAtNDE1Mi04YTVlLWUwNmFiZTMxNjU5OD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/0bd1beb1-da56-4f06-bd58-18c9b3101f7c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzBiZDFiZWIxLWRhNTYtNGYwNi1iZDU4LTE4YzliMzEwMWY3Yz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d5f2e8-b3d8-4cac-a29e-234e741488f8" + "941b4ad0-d0d8-4f3c-b90b-87c88541f1bc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1866,22 +1806,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11984" ], "x-ms-request-id": [ - "f5de8e46-27de-4335-b28d-c1a134d4663b" + "253d3998-1b70-4dc7-a9f3-332fed2b246d" ], "x-ms-correlation-request-id": [ - "f5de8e46-27de-4335-b28d-c1a134d4663b" + "253d3998-1b70-4dc7-a9f3-332fed2b246d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002336Z:f5de8e46-27de-4335-b28d-c1a134d4663b" + "JIOINDIACENTRAL:20220512T135414Z:253d3998-1b70-4dc7-a9f3-332fed2b246d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:23:35 GMT" + "Thu, 12 May 2022 13:54:14 GMT" ], "Content-Length": [ "488" @@ -1890,26 +1830,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"8X5B\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"pr4F\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 100,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 1000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0c3c44f-596f-40b2-b3e2-72bf5edd66e0" + "fa511908-7314-487e-aec0-6c5ae84f124e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1920,13 +1860,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/c1019628-3f2a-414e-ae56-2bd91ea3b703?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/ac8eb245-f708-4d89-bcb2-1bb714ced460?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c1019628-3f2a-414e-ae56-2bd91ea3b703?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac8eb245-f708-4d89-bcb2-1bb714ced460?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c1019628-3f2a-414e-ae56-2bd91ea3b703" + "ac8eb245-f708-4d89-bcb2-1bb714ced460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1938,19 +1878,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "85e83836-7abc-4b20-b1b8-3e9399cc46be" + "d43496f2-2157-48b6-aee3-bcc219453987" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002336Z:85e83836-7abc-4b20-b1b8-3e9399cc46be" + "CENTRALINDIA:20220512T135416Z:d43496f2-2157-48b6-aee3-bcc219453987" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:23:36 GMT" + "Thu, 12 May 2022 13:54:15 GMT" ], "Content-Length": [ "21" @@ -1963,19 +1903,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c1019628-3f2a-414e-ae56-2bd91ea3b703?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzEwMTk2MjgtM2YyYS00MTRlLWFlNTYtMmJkOTFlYTNiNzAzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac8eb245-f708-4d89-bcb2-1bb714ced460?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWM4ZWIyNDUtZjcwOC00ZDg5LWJjYjItMWJiNzE0Y2VkNDYwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0c3c44f-596f-40b2-b3e2-72bf5edd66e0" + "fa511908-7314-487e-aec0-6c5ae84f124e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1995,22 +1935,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11998" ], "x-ms-request-id": [ - "a2e5a78b-6ffe-42d2-9930-92f7145b9818" + "057e20e1-5a65-40d2-9388-0dd3a19824d6" ], "x-ms-correlation-request-id": [ - "a2e5a78b-6ffe-42d2-9930-92f7145b9818" + "057e20e1-5a65-40d2-9388-0dd3a19824d6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002407Z:a2e5a78b-6ffe-42d2-9930-92f7145b9818" + "CENTRALINDIA:20220512T135446Z:057e20e1-5a65-40d2-9388-0dd3a19824d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:24:06 GMT" + "Thu, 12 May 2022 13:54:45 GMT" ], "Content-Length": [ "22" @@ -2023,19 +1963,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/c1019628-3f2a-414e-ae56-2bd91ea3b703?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy9jMTAxOTYyOC0zZjJhLTQxNGUtYWU1Ni0yYmQ5MWVhM2I3MDM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/ac8eb245-f708-4d89-bcb2-1bb714ced460?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy9hYzhlYjI0NS1mNzA4LTRkODktYmNiMi0xYmI3MTRjZWQ0NjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0c3c44f-596f-40b2-b3e2-72bf5edd66e0" + "fa511908-7314-487e-aec0-6c5ae84f124e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2055,22 +1995,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11997" ], "x-ms-request-id": [ - "1b9ece95-e8f7-4671-9d06-8e5493f818ac" + "812b2b60-0ab6-4157-a1bc-29b118356978" ], "x-ms-correlation-request-id": [ - "1b9ece95-e8f7-4671-9d06-8e5493f818ac" + "812b2b60-0ab6-4157-a1bc-29b118356978" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002407Z:1b9ece95-e8f7-4671-9d06-8e5493f818ac" + "CENTRALINDIA:20220512T135447Z:812b2b60-0ab6-4157-a1bc-29b118356978" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:24:07 GMT" + "Thu, 12 May 2022 13:54:47 GMT" ], "Content-Length": [ "459" @@ -2079,26 +2019,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"8X5B\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"pr4F\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c149c6cf-028c-4f11-96bc-3e15d1459ab2" + "a2330556-9153-4511-a695-4535c52cfa2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2109,13 +2049,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/c5571d00-9b88-4483-ad94-dc679f5a358a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/6846c279-f692-42f7-819d-9b6f9c492686?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c5571d00-9b88-4483-ad94-dc679f5a358a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6846c279-f692-42f7-819d-9b6f9c492686?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c5571d00-9b88-4483-ad94-dc679f5a358a" + "6846c279-f692-42f7-819d-9b6f9c492686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2130,16 +2070,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "e8c3ba2e-aa57-4bd4-86e9-247bb47b9dde" + "162542b4-186d-4339-98a4-f462c32c9611" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002408Z:e8c3ba2e-aa57-4bd4-86e9-247bb47b9dde" + "CENTRALINDIA:20220512T135453Z:162542b4-186d-4339-98a4-f462c32c9611" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:24:07 GMT" + "Thu, 12 May 2022 13:54:53 GMT" ], "Content-Length": [ "21" @@ -2152,22 +2092,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f24a867-ab3b-4f93-a987-21ff912bb997" + "f4b4f020-9584-4e0c-86d5-bd0c06585ec5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2178,13 +2118,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/95dcacf4-da66-484f-b6ed-68331d89f700?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/f991aec7-05da-4bf0-aaa8-01a78ed97fef?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95dcacf4-da66-484f-b6ed-68331d89f700?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f991aec7-05da-4bf0-aaa8-01a78ed97fef?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "95dcacf4-da66-484f-b6ed-68331d89f700" + "f991aec7-05da-4bf0-aaa8-01a78ed97fef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2196,19 +2136,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "08538010-24a5-48e1-9610-fafe6267501d" + "6de46bd9-c250-4175-a95c-34bfd434e87e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002513Z:08538010-24a5-48e1-9610-fafe6267501d" + "JIOINDIACENTRAL:20220512T135559Z:6de46bd9-c250-4175-a95c-34bfd434e87e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:25:13 GMT" + "Thu, 12 May 2022 13:55:59 GMT" ], "Content-Length": [ "21" @@ -2221,19 +2161,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c5571d00-9b88-4483-ad94-dc679f5a358a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzU1NzFkMDAtOWI4OC00NDgzLWFkOTQtZGM2NzlmNWEzNThhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6846c279-f692-42f7-819d-9b6f9c492686?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjg0NmMyNzktZjY5Mi00MmY3LTgxOWQtOWI2ZjljNDkyNjg2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c149c6cf-028c-4f11-96bc-3e15d1459ab2" + "a2330556-9153-4511-a695-4535c52cfa2e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2253,22 +2193,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-request-id": [ - "be66c3b8-9750-427c-97e8-7e4931bbb3ec" + "6bbb5842-8a55-4773-8640-437241cbf920" ], "x-ms-correlation-request-id": [ - "be66c3b8-9750-427c-97e8-7e4931bbb3ec" + "6bbb5842-8a55-4773-8640-437241cbf920" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002438Z:be66c3b8-9750-427c-97e8-7e4931bbb3ec" + "CENTRALINDIA:20220512T135523Z:6bbb5842-8a55-4773-8640-437241cbf920" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:24:37 GMT" + "Thu, 12 May 2022 13:55:23 GMT" ], "Content-Length": [ "22" @@ -2281,19 +2221,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/c5571d00-9b88-4483-ad94-dc679f5a358a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvYzU1NzFkMDAtOWI4OC00NDgzLWFkOTQtZGM2NzlmNWEzNThhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/6846c279-f692-42f7-819d-9b6f9c492686?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvNjg0NmMyNzktZjY5Mi00MmY3LTgxOWQtOWI2ZjljNDkyNjg2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c149c6cf-028c-4f11-96bc-3e15d1459ab2" + "a2330556-9153-4511-a695-4535c52cfa2e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2313,22 +2253,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11998" ], "x-ms-request-id": [ - "c0fc910b-8892-4a80-a2b5-e17f792ee78f" + "6ba5f334-a020-477d-9482-bf3e1106f19e" ], "x-ms-correlation-request-id": [ - "c0fc910b-8892-4a80-a2b5-e17f792ee78f" + "6ba5f334-a020-477d-9482-bf3e1106f19e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002438Z:c0fc910b-8892-4a80-a2b5-e17f792ee78f" + "CENTRALINDIA:20220512T135523Z:6ba5f334-a020-477d-9482-bf3e1106f19e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:24:37 GMT" + "Thu, 12 May 2022 13:55:23 GMT" ], "Content-Type": [ "application/json" @@ -2338,22 +2278,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d55cbaa-3a1b-436a-8c3f-1cbc098a4132" + "f8864b6f-a8d7-4edb-bdc6-a7698556e1a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2364,13 +2304,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/6d8d8508-bbb7-4525-9b7c-30f70a19e5c5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/85535b9d-ea43-4fc3-be2e-5c263eee88f2?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6d8d8508-bbb7-4525-9b7c-30f70a19e5c5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/85535b9d-ea43-4fc3-be2e-5c263eee88f2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "6d8d8508-bbb7-4525-9b7c-30f70a19e5c5" + "85535b9d-ea43-4fc3-be2e-5c263eee88f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2382,19 +2322,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "229965a3-1568-4487-9914-638d60a0e9a9" + "9acc56a0-ff3c-487a-b395-df59c018ad96" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002441Z:229965a3-1568-4487-9914-638d60a0e9a9" + "JIOINDIACENTRAL:20220512T135525Z:9acc56a0-ff3c-487a-b395-df59c018ad96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:24:41 GMT" + "Thu, 12 May 2022 13:55:25 GMT" ], "Content-Length": [ "21" @@ -2407,22 +2347,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91abfcb2-3183-4f0a-b565-f98935fe071e" + "4e9e2e4b-a919-4a0e-973c-494f936fd48c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2433,13 +2373,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/606e794a-5bd7-4e64-ba0f-c913751555c9?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/3d9195ef-b33a-4751-87da-bd098256c8c8?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/606e794a-5bd7-4e64-ba0f-c913751555c9?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3d9195ef-b33a-4751-87da-bd098256c8c8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "606e794a-5bd7-4e64-ba0f-c913751555c9" + "3d9195ef-b33a-4751-87da-bd098256c8c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,19 +2391,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "a0618033-8347-4f32-96b6-5e64aa293891" + "9a2c232d-0e51-42fa-903a-64e0b77a93ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002546Z:a0618033-8347-4f32-96b6-5e64aa293891" + "JIOINDIACENTRAL:20220512T135633Z:9a2c232d-0e51-42fa-903a-64e0b77a93ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:25:46 GMT" + "Thu, 12 May 2022 13:56:33 GMT" ], "Content-Length": [ "21" @@ -2476,19 +2416,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6d8d8508-bbb7-4525-9b7c-30f70a19e5c5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmQ4ZDg1MDgtYmJiNy00NTI1LTliN2MtMzBmNzBhMTllNWM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/85535b9d-ea43-4fc3-be2e-5c263eee88f2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODU1MzViOWQtZWE0My00ZmMzLWJlMmUtNWMyNjNlZWU4OGYyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d55cbaa-3a1b-436a-8c3f-1cbc098a4132" + "f8864b6f-a8d7-4edb-bdc6-a7698556e1a6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2508,22 +2448,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-request-id": [ - "4731ddba-917c-41ac-ab3a-959040dc042f" + "efb4afe4-1675-4d4f-80f7-24210f88711c" ], "x-ms-correlation-request-id": [ - "4731ddba-917c-41ac-ab3a-959040dc042f" + "efb4afe4-1675-4d4f-80f7-24210f88711c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002511Z:4731ddba-917c-41ac-ab3a-959040dc042f" + "JIOINDIACENTRAL:20220512T135556Z:efb4afe4-1675-4d4f-80f7-24210f88711c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:25:10 GMT" + "Thu, 12 May 2022 13:55:55 GMT" ], "Content-Length": [ "22" @@ -2536,19 +2476,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/6d8d8508-bbb7-4525-9b7c-30f70a19e5c5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzZkOGQ4NTA4LWJiYjctNDUyNS05YjdjLTMwZjcwYTE5ZTVjNT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/85535b9d-ea43-4fc3-be2e-5c263eee88f2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzg1NTM1YjlkLWVhNDMtNGZjMy1iZTJlLTVjMjYzZWVlODhmMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d55cbaa-3a1b-436a-8c3f-1cbc098a4132" + "f8864b6f-a8d7-4edb-bdc6-a7698556e1a6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2568,22 +2508,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-request-id": [ - "3ae9af8e-897d-4a10-a0ac-4271c2866277" + "b6b234ed-628c-4a3b-ac64-bd322a3ca588" ], "x-ms-correlation-request-id": [ - "3ae9af8e-897d-4a10-a0ac-4271c2866277" + "b6b234ed-628c-4a3b-ac64-bd322a3ca588" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220309T002511Z:3ae9af8e-897d-4a10-a0ac-4271c2866277" + "JIOINDIACENTRAL:20220512T135557Z:b6b234ed-628c-4a3b-ac64-bd322a3ca588" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:25:10 GMT" + "Thu, 12 May 2022 13:55:56 GMT" ], "Content-Type": [ "application/json" @@ -2593,19 +2533,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/95dcacf4-da66-484f-b6ed-68331d89f700?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTVkY2FjZjQtZGE2Ni00ODRmLWI2ZWQtNjgzMzFkODlmNzAwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f991aec7-05da-4bf0-aaa8-01a78ed97fef?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjk5MWFlYzctMDVkYS00YmYwLWFhYTgtMDFhNzhlZDk3ZmVmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f24a867-ab3b-4f93-a987-21ff912bb997" + "f4b4f020-9584-4e0c-86d5-bd0c06585ec5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2625,22 +2565,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-request-id": [ - "ed9ee448-7805-4250-b041-60d7c011cd50" + "1cb371b0-7660-4d40-b2a3-ed8673f225b2" ], "x-ms-correlation-request-id": [ - "ed9ee448-7805-4250-b041-60d7c011cd50" + "1cb371b0-7660-4d40-b2a3-ed8673f225b2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002544Z:ed9ee448-7805-4250-b041-60d7c011cd50" + "JIOINDIACENTRAL:20220512T135630Z:1cb371b0-7660-4d40-b2a3-ed8673f225b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:25:44 GMT" + "Thu, 12 May 2022 13:56:30 GMT" ], "Content-Length": [ "22" @@ -2653,19 +2593,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/95dcacf4-da66-484f-b6ed-68331d89f700?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvOTVkY2FjZjQtZGE2Ni00ODRmLWI2ZWQtNjgzMzFkODlmNzAwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/graphs/graphName/operationResults/f991aec7-05da-4bf0-aaa8-01a78ed97fef?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvZjk5MWFlYzctMDVkYS00YmYwLWFhYTgtMDFhNzhlZDk3ZmVmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f24a867-ab3b-4f93-a987-21ff912bb997" + "f4b4f020-9584-4e0c-86d5-bd0c06585ec5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2685,22 +2625,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-request-id": [ - "e814697c-0768-44c0-bb60-1ba2fe6f9d7a" + "1b02a471-111b-4814-ac68-2fb11060783b" ], "x-ms-correlation-request-id": [ - "e814697c-0768-44c0-bb60-1ba2fe6f9d7a" + "1b02a471-111b-4814-ac68-2fb11060783b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002544Z:e814697c-0768-44c0-bb60-1ba2fe6f9d7a" + "JIOINDIACENTRAL:20220512T135631Z:1b02a471-111b-4814-ac68-2fb11060783b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:25:44 GMT" + "Thu, 12 May 2022 13:56:30 GMT" ], "Content-Type": [ "application/json" @@ -2710,19 +2650,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/606e794a-5bd7-4e64-ba0f-c913751555c9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjA2ZTc5NGEtNWJkNy00ZTY0LWJhMGYtYzkxMzc1MTU1NWM5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3d9195ef-b33a-4751-87da-bd098256c8c8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2Q5MTk1ZWYtYjMzYS00NzUxLTg3ZGEtYmQwOTgyNTZjOGM4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91abfcb2-3183-4f0a-b565-f98935fe071e" + "4e9e2e4b-a919-4a0e-973c-494f936fd48c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2742,22 +2682,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" ], "x-ms-request-id": [ - "f5f61509-f4b1-49f1-97c5-36ff649a6e98" + "77a00beb-570a-442b-a760-21bf5f6658ba" ], "x-ms-correlation-request-id": [ - "f5f61509-f4b1-49f1-97c5-36ff649a6e98" + "77a00beb-570a-442b-a760-21bf5f6658ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002616Z:f5f61509-f4b1-49f1-97c5-36ff649a6e98" + "JIOINDIACENTRAL:20220512T135704Z:77a00beb-570a-442b-a760-21bf5f6658ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:26:16 GMT" + "Thu, 12 May 2022 13:57:03 GMT" ], "Content-Length": [ "22" @@ -2770,19 +2710,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/606e794a-5bd7-4e64-ba0f-c913751555c9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzYwNmU3OTRhLTViZDctNGU2NC1iYTBmLWM5MTM3NTE1NTVjOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName4/operationResults/3d9195ef-b33a-4751-87da-bd098256c8c8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzNkOTE5NWVmLWIzM2EtNDc1MS04N2RhLWJkMDk4MjU2YzhjOD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91abfcb2-3183-4f0a-b565-f98935fe071e" + "4e9e2e4b-a919-4a0e-973c-494f936fd48c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2802,22 +2742,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11982" ], "x-ms-request-id": [ - "32d7eb52-ba91-4ab7-bb5a-48b8f9087cca" + "4e0eb574-afc0-4b97-adea-0849bf4c4090" ], "x-ms-correlation-request-id": [ - "32d7eb52-ba91-4ab7-bb5a-48b8f9087cca" + "4e0eb574-afc0-4b97-adea-0849bf4c4090" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002617Z:32d7eb52-ba91-4ab7-bb5a-48b8f9087cca" + "JIOINDIACENTRAL:20220512T135704Z:4e0eb574-afc0-4b97-adea-0849bf4c4090" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:26:16 GMT" + "Thu, 12 May 2022 13:57:03 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinOperationsCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinOperationsCmdlets.json index a953a583a50e..fd02187b4aaa 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinOperationsCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinOperationsCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6c03aab8-069e-413c-b8ba-ad274b8f0271" + "b90f9129-61eb-45c6-a912-7c084f2c42be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "f6813427-5a7d-49f8-aee2-ee4c14c855ba" + "bd3e2009-343a-483c-914c-39fbcfeec4ef" ], "x-ms-correlation-request-id": [ - "f6813427-5a7d-49f8-aee2-ee4c14c855ba" + "bd3e2009-343a-483c-914c-39fbcfeec4ef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T154758Z:f6813427-5a7d-49f8-aee2-ee4c14c855ba" + "JIOINDIACENTRAL:20220512T125207Z:bd3e2009-343a-483c-914c-39fbcfeec4ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:47:57 GMT" + "Thu, 12 May 2022 12:52:07 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" + "eb83ee60-7962-4f48-b7ce-f134058c41af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "b9aaa1b5-e1ae-4b45-ae94-27cc20368279" + "cbbc2e2d-9497-4224-abf2-6f7ae59c41a9" ], "x-ms-correlation-request-id": [ - "b9aaa1b5-e1ae-4b45-ae94-27cc20368279" + "cbbc2e2d-9497-4224-abf2-6f7ae59c41a9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154759Z:b9aaa1b5-e1ae-4b45-ae94-27cc20368279" + "JIOINDIACENTRAL:20220512T125209Z:cbbc2e2d-9497-4224-abf2-6f7ae59c41a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:47:59 GMT" + "Thu, 12 May 2022 12:52:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" + "eb83ee60-7962-4f48-b7ce-f134058c41af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "033ae76f-c39c-4ca4-bbb3-da5bb8548de6" + "4ddde41f-8952-49df-8952-628d20ca28df" ], "x-ms-correlation-request-id": [ - "033ae76f-c39c-4ca4-bbb3-da5bb8548de6" + "4ddde41f-8952-49df-8952-628d20ca28df" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155114Z:033ae76f-c39c-4ca4-bbb3-da5bb8548de6" + "JIOINDIACENTRAL:20220512T125456Z:4ddde41f-8952-49df-8952-628d20ca28df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:14 GMT" + "Thu, 12 May 2022 12:54:55 GMT" ], "Content-Length": [ "2444" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050\",\r\n \"name\": \"gremlin-db1050\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:50:38.4636251Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1050.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1050.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"5e25f903-258a-4424-9625-a964c9aff082\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1050-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1050-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1050-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050\",\r\n \"name\": \"gremlin-db1050\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:54:33.9603197Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1050.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1050.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f2bb85db-985f-46a9-9704-011ab3731f87\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1050-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1050-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1050-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" + "eb83ee60-7962-4f48-b7ce-f134058c41af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -219,13 +219,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/operationResults/bab47eb7-e991-4b5a-a216-814945a6fac6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/operationResults/50f12fec-5419-4a91-aee6-0322dee371c5?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "bab47eb7-e991-4b5a-a216-814945a6fac6" + "50f12fec-5419-4a91-aee6-0322dee371c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab47eb7-e991-4b5a-a216-814945a6fac6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/50f12fec-5419-4a91-aee6-0322dee371c5?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,16 +240,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e73c8cf2-53f0-4543-bee2-974b393776c4" + "f5f74caa-67d4-4aaf-9376-ce8931ee8572" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154811Z:e73c8cf2-53f0-4543-bee2-974b393776c4" + "JIOINDIACENTRAL:20220512T125222Z:f5f74caa-67d4-4aaf-9376-ce8931ee8572" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:48:10 GMT" + "Thu, 12 May 2022 12:52:22 GMT" ], "Content-Length": [ "2056" @@ -258,23 +258,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050\",\r\n \"name\": \"gremlin-db1050\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:48:07.1562058Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"5e25f903-258a-4424-9625-a964c9aff082\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050\",\r\n \"name\": \"gremlin-db1050\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:52:19.6822475Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f2bb85db-985f-46a9-9704-011ab3731f87\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1050-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab47eb7-e991-4b5a-a216-814945a6fac6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFiNDdlYjctZTk5MS00YjVhLWEyMTYtODE0OTQ1YTZmYWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/50f12fec-5419-4a91-aee6-0322dee371c5?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTBmMTJmZWMtNTQxOS00YTkxLWFlZTYtMDMyMmRlZTM3MWM1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" + "eb83ee60-7962-4f48-b7ce-f134058c41af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -294,82 +294,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "fe282d89-d9c5-4ba4-97ba-afb80a63d788" - ], - "x-ms-correlation-request-id": [ - "fe282d89-d9c5-4ba4-97ba-afb80a63d788" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154841Z:fe282d89-d9c5-4ba4-97ba-afb80a63d788" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 15:48:40 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab47eb7-e991-4b5a-a216-814945a6fac6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFiNDdlYjctZTk5MS00YjVhLWEyMTYtODE0OTQ1YTZmYWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "0aa65048-cfdc-4339-98db-d6ca834c8e9e" + "287f944c-0648-4e52-80f0-b41e397de213" ], "x-ms-correlation-request-id": [ - "0aa65048-cfdc-4339-98db-d6ca834c8e9e" + "287f944c-0648-4e52-80f0-b41e397de213" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154912Z:0aa65048-cfdc-4339-98db-d6ca834c8e9e" + "JIOINDIACENTRAL:20220512T125253Z:287f944c-0648-4e52-80f0-b41e397de213" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:49:11 GMT" + "Thu, 12 May 2022 12:52:53 GMT" ], "Content-Length": [ "21" @@ -382,19 +322,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab47eb7-e991-4b5a-a216-814945a6fac6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFiNDdlYjctZTk5MS00YjVhLWEyMTYtODE0OTQ1YTZmYWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/50f12fec-5419-4a91-aee6-0322dee371c5?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTBmMTJmZWMtNTQxOS00YTkxLWFlZTYtMDMyMmRlZTM3MWM1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" + "eb83ee60-7962-4f48-b7ce-f134058c41af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -414,22 +354,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "a8336ee8-bcd4-4263-adce-7caa36703f5b" + "d3edb141-986c-4de6-8da9-ef4823b4c668" ], "x-ms-correlation-request-id": [ - "a8336ee8-bcd4-4263-adce-7caa36703f5b" + "d3edb141-986c-4de6-8da9-ef4823b4c668" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154943Z:a8336ee8-bcd4-4263-adce-7caa36703f5b" + "JIOINDIACENTRAL:20220512T125324Z:d3edb141-986c-4de6-8da9-ef4823b4c668" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:49:43 GMT" + "Thu, 12 May 2022 12:53:23 GMT" ], "Content-Length": [ "21" @@ -442,19 +382,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab47eb7-e991-4b5a-a216-814945a6fac6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFiNDdlYjctZTk5MS00YjVhLWEyMTYtODE0OTQ1YTZmYWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/50f12fec-5419-4a91-aee6-0322dee371c5?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTBmMTJmZWMtNTQxOS00YTkxLWFlZTYtMDMyMmRlZTM3MWM1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" + "eb83ee60-7962-4f48-b7ce-f134058c41af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -474,22 +414,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "44c799f9-eb0d-4ff9-8941-beb92b60260a" + "a931213c-0554-4d53-aefe-1e87f31fa7fa" ], "x-ms-correlation-request-id": [ - "44c799f9-eb0d-4ff9-8941-beb92b60260a" + "a931213c-0554-4d53-aefe-1e87f31fa7fa" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155013Z:44c799f9-eb0d-4ff9-8941-beb92b60260a" + "JIOINDIACENTRAL:20220512T125354Z:a931213c-0554-4d53-aefe-1e87f31fa7fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:50:13 GMT" + "Thu, 12 May 2022 12:53:54 GMT" ], "Content-Length": [ "21" @@ -502,19 +442,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab47eb7-e991-4b5a-a216-814945a6fac6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFiNDdlYjctZTk5MS00YjVhLWEyMTYtODE0OTQ1YTZmYWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/50f12fec-5419-4a91-aee6-0322dee371c5?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTBmMTJmZWMtNTQxOS00YTkxLWFlZTYtMDMyMmRlZTM3MWM1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" + "eb83ee60-7962-4f48-b7ce-f134058c41af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -534,22 +474,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "4084ee69-dfee-4026-af7a-5c243bdd9d7a" + "ed21f2d8-98cc-4352-b906-a3057b53c02f" ], "x-ms-correlation-request-id": [ - "4084ee69-dfee-4026-af7a-5c243bdd9d7a" + "ed21f2d8-98cc-4352-b906-a3057b53c02f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155044Z:4084ee69-dfee-4026-af7a-5c243bdd9d7a" + "JIOINDIACENTRAL:20220512T125425Z:ed21f2d8-98cc-4352-b906-a3057b53c02f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:50:43 GMT" + "Thu, 12 May 2022 12:54:24 GMT" ], "Content-Length": [ "21" @@ -562,19 +502,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab47eb7-e991-4b5a-a216-814945a6fac6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFiNDdlYjctZTk5MS00YjVhLWEyMTYtODE0OTQ1YTZmYWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/50f12fec-5419-4a91-aee6-0322dee371c5?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTBmMTJmZWMtNTQxOS00YTkxLWFlZTYtMDMyMmRlZTM3MWM1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45cc3f60-c557-4b43-8e77-c9db6ffef72e" + "eb83ee60-7962-4f48-b7ce-f134058c41af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -594,22 +534,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "024e36b6-5445-43c7-b05f-f52de8e4ce16" + "4195a267-51ac-4763-ae2f-b89c9b6e0f4a" ], "x-ms-correlation-request-id": [ - "024e36b6-5445-43c7-b05f-f52de8e4ce16" + "4195a267-51ac-4763-ae2f-b89c9b6e0f4a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155114Z:024e36b6-5445-43c7-b05f-f52de8e4ce16" + "JIOINDIACENTRAL:20220512T125456Z:4195a267-51ac-4763-ae2f-b89c9b6e0f4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:14 GMT" + "Thu, 12 May 2022 12:54:55 GMT" ], "Content-Length": [ "22" @@ -622,22 +562,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c595459-d27c-4ee2-98a5-874d2551d4aa" + "e5063144-c6fa-4db3-a7af-a8ed5f44fe04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,47 +597,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "39048c18-7f8c-4c8b-af18-8b6c393bfcaf" + "c1399fbd-6b4a-4fb8-b3c2-97243a023265" ], "x-ms-correlation-request-id": [ - "39048c18-7f8c-4c8b-af18-8b6c393bfcaf" + "c1399fbd-6b4a-4fb8-b3c2-97243a023265" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155115Z:39048c18-7f8c-4c8b-af18-8b6c393bfcaf" + "CENTRALINDIA:20220512T125459Z:c1399fbd-6b4a-4fb8-b3c2-97243a023265" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:15 GMT" + "Thu, 12 May 2022 12:54:58 GMT" ], "Content-Length": [ - "5579" + "6288" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 7c595459-d27c-4ee2-98a5-874d2551d4aa, Request URI: /apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104891s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T15:51:15.2157650Z, RequestEndTime: 2022-03-08T15:51:15.2257675Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:50:18.5167329Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.566,\\\\\\\"memory\\\\\\\":638042824.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0099,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:50:28.5265782Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.642,\\\\\\\"memory\\\\\\\":637221876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0512,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:50:38.5364014Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.663,\\\\\\\"memory\\\\\\\":636730132.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0088,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:50:48.5462390Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.834,\\\\\\\"memory\\\\\\\":636058520.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0235,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:50:58.5560818Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.963,\\\\\\\"memory\\\\\\\":635743304.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0154,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:51:08.5758932Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.580,\\\\\\\"memory\\\\\\\":635260036.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0209,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T15:51:15.2157650Z; ResponseTime: 2022-03-08T15:51:15.2257675Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104891s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.833, ActivityId: 7c595459-d27c-4ee2-98a5-874d2551d4aa, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2157650Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0088},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2157738Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0023},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2157761Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0953},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2158714Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1121},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2169835Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0648},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2170483Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T15:51:15.2157650Z; ResponseTime: 2022-03-08T15:51:15.2257675Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104893s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 2.785, ActivityId: 7c595459-d27c-4ee2-98a5-874d2551d4aa, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2157650Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2157678Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2157689Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0522},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2158211Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 3.0568},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2188779Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1864},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:15.2190643Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: e5063144-c6fa-4db3-a7af-a8ed5f44fe04, Request URI: /apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949416s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T12:54:59.0608957Z, RequestEndTime: 2022-05-12T12:54:59.0608957Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:00.0499132Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.366,\\\\\\\"memory\\\\\\\":478116108.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0262,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:10.0601358Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.351,\\\\\\\"memory\\\\\\\":477690288.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.019,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:20.0602657Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.363,\\\\\\\"memory\\\\\\\":477290092.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0419,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:30.0704102Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.323,\\\\\\\"memory\\\\\\\":477306728.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0186,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:40.0805641Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.943,\\\\\\\"memory\\\\\\\":477187704.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:50.0907672Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.705,\\\\\\\"memory\\\\\\\":477178036.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0123,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T12:54:59.0608957Z; ResponseTime: 2022-05-12T12:54:59.0608957Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949416s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.885, ActivityId: e5063144-c6fa-4db3-a7af-a8ed5f44fe04, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0608957Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0084},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0609041Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0609067Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1134},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0610201Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2838},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0623039Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0695},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0623734Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:54:59.0009121Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:54:59.0009121Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:54:59.0009121Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":453,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T12:54:59.0608957Z; ResponseTime: 2022-05-12T12:54:59.0608957Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949415s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.93, ActivityId: e5063144-c6fa-4db3-a7af-a8ed5f44fe04, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0608957Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0042},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0608999Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0609019Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0659},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0609678Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4474},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0624152Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0595},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:54:59.0624747Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:54:59.0009121Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:54:59.0009121Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:54:59.0009121Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":453,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c595459-d27c-4ee2-98a5-874d2551d4aa" + "e5063144-c6fa-4db3-a7af-a8ed5f44fe04" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -717,22 +657,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "7a070dd7-8d88-4002-a809-4f5275bc33a5" + "54b86bb7-78e4-4dd5-8e1b-fe562d6e9cb0" ], "x-ms-correlation-request-id": [ - "7a070dd7-8d88-4002-a809-4f5275bc33a5" + "54b86bb7-78e4-4dd5-8e1b-fe562d6e9cb0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155147Z:7a070dd7-8d88-4002-a809-4f5275bc33a5" + "CENTRALINDIA:20220512T125531Z:54b86bb7-78e4-4dd5-8e1b-fe562d6e9cb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:46 GMT" + "Thu, 12 May 2022 12:55:31 GMT" ], "Content-Length": [ "454" @@ -741,26 +681,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UiQBAA==\",\r\n \"_self\": \"dbs/UiQBAA==/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0100-0000-62277b780000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646754680\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"ba5FAA==\",\r\n \"_self\": \"dbs/ba5FAA==/\",\r\n \"_etag\": \"\\\"00003c2c-0000-0100-0000-627d03a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652360104\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb9d4212-0038-4136-86b6-eee7eac79094" + "89d1cf41-a859-4030-b335-b8b0c7798738" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "e5c5cf23-f421-4840-9423-3a6dbbf7ef72" + "255e2b2f-8b07-457f-ab47-19839738234f" ], "x-ms-correlation-request-id": [ - "e5c5cf23-f421-4840-9423-3a6dbbf7ef72" + "255e2b2f-8b07-457f-ab47-19839738234f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155147Z:e5c5cf23-f421-4840-9423-3a6dbbf7ef72" + "JIOINDIACENTRAL:20220512T125533Z:255e2b2f-8b07-457f-ab47-19839738234f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:46 GMT" + "Thu, 12 May 2022 12:55:33 GMT" ], "Content-Length": [ "454" @@ -804,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UiQBAA==\",\r\n \"_self\": \"dbs/UiQBAA==/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0100-0000-62277b780000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646754680\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"ba5FAA==\",\r\n \"_self\": \"dbs/ba5FAA==/\",\r\n \"_etag\": \"\\\"00003c2c-0000-0100-0000-627d03a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652360104\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95e65d0f-0632-4d45-b831-03b36315ea09" + "f0a7ccf1-17f9-4e8b-84ac-a282c462e572" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -843,22 +783,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11992" ], "x-ms-request-id": [ - "ea129b9e-f4e3-4edb-9fd6-14a6e54f1d4b" + "fe0ae50a-8674-417d-b18c-c8bd277d42c3" ], "x-ms-correlation-request-id": [ - "ea129b9e-f4e3-4edb-9fd6-14a6e54f1d4b" + "fe0ae50a-8674-417d-b18c-c8bd277d42c3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155252Z:ea129b9e-f4e3-4edb-9fd6-14a6e54f1d4b" + "JIOINDIACENTRAL:20220512T125648Z:fe0ae50a-8674-417d-b18c-c8bd277d42c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:51 GMT" + "Thu, 12 May 2022 12:56:47 GMT" ], "Content-Length": [ "454" @@ -867,23 +807,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UiQBAA==\",\r\n \"_self\": \"dbs/UiQBAA==/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0100-0000-62277b780000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646754680\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"ba5FAA==\",\r\n \"_self\": \"dbs/ba5FAA==/\",\r\n \"_etag\": \"\\\"00003c2c-0000-0100-0000-627d03a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652360104\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "709c881b-2941-4881-9117-dda09422929c" + "10e5a703-02fc-4fc8-89f0-745cb72835db" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -903,22 +843,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11992" ], "x-ms-request-id": [ - "12733ca6-a32e-4f3f-a3d8-d527be8c49f4" + "38520e7f-44e0-4bf6-811f-05088890e3c7" ], "x-ms-correlation-request-id": [ - "12733ca6-a32e-4f3f-a3d8-d527be8c49f4" + "38520e7f-44e0-4bf6-811f-05088890e3c7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155323Z:12733ca6-a32e-4f3f-a3d8-d527be8c49f4" + "JIOINDIACENTRAL:20220512T125721Z:38520e7f-44e0-4bf6-811f-05088890e3c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:22 GMT" + "Thu, 12 May 2022 12:57:21 GMT" ], "Content-Length": [ "454" @@ -927,26 +867,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UiQBAA==\",\r\n \"_self\": \"dbs/UiQBAA==/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0100-0000-62277b780000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646754680\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"ba5FAA==\",\r\n \"_self\": \"dbs/ba5FAA==/\",\r\n \"_etag\": \"\\\"00003c2c-0000-0100-0000-627d03a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652360104\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7c595459-d27c-4ee2-98a5-874d2551d4aa" + "e5063144-c6fa-4db3-a7af-a8ed5f44fe04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -963,13 +903,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/5cadae94-1f69-48c0-800d-3cb84955d29d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/08ed9bba-3ab6-4718-b612-3b2d901209b7?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cadae94-1f69-48c0-800d-3cb84955d29d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/08ed9bba-3ab6-4718-b612-3b2d901209b7?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "5cadae94-1f69-48c0-800d-3cb84955d29d" + "08ed9bba-3ab6-4718-b612-3b2d901209b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,19 +921,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "21ca1481-78b0-4046-9d7f-362ee192eadb" + "f867295b-09d6-4ea0-8643-b228d0339d53" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155116Z:21ca1481-78b0-4046-9d7f-362ee192eadb" + "CENTRALINDIA:20220512T125500Z:f867295b-09d6-4ea0-8643-b228d0339d53" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:15 GMT" + "Thu, 12 May 2022 12:54:59 GMT" ], "Content-Length": [ "21" @@ -1006,22 +946,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "709c881b-2941-4881-9117-dda09422929c" + "10e5a703-02fc-4fc8-89f0-745cb72835db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1038,13 +978,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/a29fa146-ae49-4d4c-bc86-d1323ef6c518?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/0dd34eef-d2d0-422f-8e57-5809937d7c86?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a29fa146-ae49-4d4c-bc86-d1323ef6c518?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0dd34eef-d2d0-422f-8e57-5809937d7c86?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a29fa146-ae49-4d4c-bc86-d1323ef6c518" + "0dd34eef-d2d0-422f-8e57-5809937d7c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,19 +996,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "f3213430-29a2-4e92-8663-dd16024e449f" + "db93bf9e-71db-44ab-858a-6a395e36962d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155253Z:f3213430-29a2-4e92-8663-dd16024e449f" + "JIOINDIACENTRAL:20220512T125649Z:db93bf9e-71db-44ab-858a-6a395e36962d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:53 GMT" + "Thu, 12 May 2022 12:56:49 GMT" ], "Content-Length": [ "21" @@ -1081,19 +1021,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cadae94-1f69-48c0-800d-3cb84955d29d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWNhZGFlOTQtMWY2OS00OGMwLTgwMGQtM2NiODQ5NTVkMjlkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/08ed9bba-3ab6-4718-b612-3b2d901209b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDhlZDliYmEtM2FiNi00NzE4LWI2MTItM2IyZDkwMTIwOWI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c595459-d27c-4ee2-98a5-874d2551d4aa" + "e5063144-c6fa-4db3-a7af-a8ed5f44fe04" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1113,22 +1053,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "c4452a00-7f74-4713-88d7-08df79261eb8" + "917841ff-bc55-4730-ab36-6fc96b06b61d" ], "x-ms-correlation-request-id": [ - "c4452a00-7f74-4713-88d7-08df79261eb8" + "917841ff-bc55-4730-ab36-6fc96b06b61d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155147Z:c4452a00-7f74-4713-88d7-08df79261eb8" + "CENTRALINDIA:20220512T125531Z:917841ff-bc55-4730-ab36-6fc96b06b61d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:46 GMT" + "Thu, 12 May 2022 12:55:30 GMT" ], "Content-Length": [ "22" @@ -1141,22 +1081,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f737657e-34f7-4ffa-b678-ae90b972d43f" + "0651ae8c-9e42-48bf-90e2-8f290797a694" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1176,47 +1116,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-request-id": [ - "6f5e80e2-b96f-4b0e-a68c-36d05249f452" + "e15160c0-eb8e-4538-a1f4-fd0ae66fcfac" ], "x-ms-correlation-request-id": [ - "6f5e80e2-b96f-4b0e-a68c-36d05249f452" + "e15160c0-eb8e-4538-a1f4-fd0ae66fcfac" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155148Z:6f5e80e2-b96f-4b0e-a68c-36d05249f452" + "JIOINDIACENTRAL:20220512T125535Z:e15160c0-eb8e-4538-a1f4-fd0ae66fcfac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:47 GMT" + "Thu, 12 May 2022 12:55:34 GMT" ], "Content-Length": [ - "5593" + "6305" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: f737657e-34f7-4ffa-b678-ae90b972d43f, Request URI: /apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104891s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T15:51:48.0472880Z, RequestEndTime: 2022-03-08T15:51:48.0472880Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:50:44.8684122Z\\\\\\\",\\\\\\\"cpu\\\\\\\":10.317,\\\\\\\"memory\\\\\\\":630778188.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.013,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:50:54.8782375Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.678,\\\\\\\"memory\\\\\\\":630054280.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0263,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:51:04.8880673Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.832,\\\\\\\"memory\\\\\\\":629537920.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.013,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:51:24.8977153Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.673,\\\\\\\"memory\\\\\\\":628619912.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0194,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:51:34.9075357Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.307,\\\\\\\"memory\\\\\\\":627771680.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0085,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:51:44.9273541Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.581,\\\\\\\"memory\\\\\\\":627540104.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0257,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T15:51:48.0472880Z; ResponseTime: 2022-03-08T15:51:48.0472880Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104891s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.07, ActivityId: f737657e-34f7-4ffa-b678-ae90b972d43f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0472880Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0165},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0473045Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0029},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0473074Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1985},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0475059Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4856},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0489915Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1658},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0491573Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T15:51:48.0472880Z; ResponseTime: 2022-03-08T15:51:48.0472880Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104893s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.937, ActivityId: f737657e-34f7-4ffa-b678-ae90b972d43f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0472880Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.004},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0472920Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0472931Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1428},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0474359Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3016},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0487375Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1863},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:51:48.0489238Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 0651ae8c-9e42-48bf-90e2-8f290797a694, Request URI: /apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949417s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T12:55:35.3345647Z, RequestEndTime: 2022-05-12T12:55:35.3345647Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:36.7036979Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.347,\\\\\\\"memory\\\\\\\":476661164.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0124,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:46.7139075Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.924,\\\\\\\"memory\\\\\\\":476626944.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:54:56.7239799Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.160,\\\\\\\"memory\\\\\\\":476553092.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0087,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:55:06.7341438Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.993,\\\\\\\"memory\\\\\\\":476520752.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:55:16.7442798Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.248,\\\\\\\"memory\\\\\\\":476354764.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0147,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:55:26.7644259Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.573,\\\\\\\"memory\\\\\\\":476165876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.018,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T12:55:35.3345647Z; ResponseTime: 2022-05-12T12:55:35.3345647Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949417s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.037, ActivityId: 0651ae8c-9e42-48bf-90e2-8f290797a694, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3345647Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0098},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3345745Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3345776Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2069},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3347845Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5838},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3363683Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1404},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3365087Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:55:35.2746104Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:55:35.2746104Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:55:35.2746104Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":472,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T12:55:35.3345647Z; ResponseTime: 2022-05-12T12:55:35.3345647Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949416s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.93, ActivityId: 0651ae8c-9e42-48bf-90e2-8f290797a694, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3345647Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0048},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3345695Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0069},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3345764Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1679},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3347443Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5037},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3362480Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1288},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:55:35.3363768Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:55:33.2545815Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:55:33.2545815Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:55:33.2545815Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":472,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f737657e-34f7-4ffa-b678-ae90b972d43f" + "0651ae8c-9e42-48bf-90e2-8f290797a694" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1236,22 +1176,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-request-id": [ - "45dd3923-1098-4b01-bf9d-9b7bc1c284d8" + "51695be1-5c26-4b10-90e2-de939922da41" ], "x-ms-correlation-request-id": [ - "45dd3923-1098-4b01-bf9d-9b7bc1c284d8" + "51695be1-5c26-4b10-90e2-de939922da41" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155219Z:45dd3923-1098-4b01-bf9d-9b7bc1c284d8" + "JIOINDIACENTRAL:20220512T125609Z:51695be1-5c26-4b10-90e2-de939922da41" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:19 GMT" + "Thu, 12 May 2022 12:56:09 GMT" ], "Content-Length": [ "1477" @@ -1260,26 +1200,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UiQBAOwX0+E=\",\r\n \"_ts\": 1646754716,\r\n \"_self\": \"dbs/UiQBAA==/colls/UiQBAOwX0+E=/\",\r\n \"_etag\": \"\\\"0000d004-0000-0100-0000-62277b9c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"ba5FAMRjWac=\",\r\n \"_ts\": 1652360145,\r\n \"_self\": \"dbs/ba5FAA==/colls/ba5FAMRjWac=/\",\r\n \"_etag\": \"\\\"0000412c-0000-0100-0000-627d03d10000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2407751-e43d-4dd5-918e-b96917775c20" + "b59ae166-fdf9-42e7-bf25-79c2e5e70cce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1299,50 +1239,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "4ec6ae5b-ed65-47f7-8ac4-6f1ce2b329fa" + "0037f4cc-19cc-4cb7-82dc-f160be5f9fd8" ], "x-ms-correlation-request-id": [ - "4ec6ae5b-ed65-47f7-8ac4-6f1ce2b329fa" + "0037f4cc-19cc-4cb7-82dc-f160be5f9fd8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155219Z:4ec6ae5b-ed65-47f7-8ac4-6f1ce2b329fa" + "JIOINDIACENTRAL:20220512T125612Z:0037f4cc-19cc-4cb7-82dc-f160be5f9fd8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:19 GMT" + "Thu, 12 May 2022 12:56:12 GMT" ], "Content-Length": [ - "1477" + "1479" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UiQBAOwX0+E=\",\r\n \"_ts\": 1646754716,\r\n \"_self\": \"dbs/UiQBAA==/colls/UiQBAOwX0+E=/\",\r\n \"_etag\": \"\\\"0000d004-0000-0100-0000-62277b9c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"ba5FAMRjWac=\",\r\n \"_ts\": 1652360145,\r\n \"_self\": \"dbs/ba5FAA==/colls/ba5FAMRjWac=/\",\r\n \"_etag\": \"\\\"0000412c-0000-0100-0000-627d03d10000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f98424d8-7eb0-498c-b930-9e9e239c2b68" + "3e6fa43e-c14c-426c-84e2-34168b623e2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1362,50 +1302,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11990" ], "x-ms-request-id": [ - "4797bfb9-14b9-4898-ac45-83bfaa84f5a4" + "5bcdb774-9024-46ca-86ae-1088a18490b0" ], "x-ms-correlation-request-id": [ - "4797bfb9-14b9-4898-ac45-83bfaa84f5a4" + "5bcdb774-9024-46ca-86ae-1088a18490b0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155252Z:4797bfb9-14b9-4898-ac45-83bfaa84f5a4" + "JIOINDIACENTRAL:20220512T125648Z:5bcdb774-9024-46ca-86ae-1088a18490b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:51 GMT" + "Thu, 12 May 2022 12:56:48 GMT" ], "Content-Length": [ - "1477" + "1479" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UiQBAOwX0+E=\",\r\n \"_ts\": 1646754716,\r\n \"_self\": \"dbs/UiQBAA==/colls/UiQBAOwX0+E=/\",\r\n \"_etag\": \"\\\"0000d004-0000-0100-0000-62277b9c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"ba5FAMRjWac=\",\r\n \"_ts\": 1652360145,\r\n \"_self\": \"dbs/ba5FAA==/colls/ba5FAMRjWac=/\",\r\n \"_etag\": \"\\\"0000412c-0000-0100-0000-627d03d10000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6b4334e-746d-4e69-8e45-b2ccfd3522a9" + "d8568171-467d-4466-8965-aa7c3b09669e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1425,47 +1365,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11991" ], "x-ms-request-id": [ - "039d6d36-d52a-49e7-99e6-c9fe2fb91040" + "95eaccf4-4850-45a6-8f3f-6455e25a2692" ], "x-ms-correlation-request-id": [ - "039d6d36-d52a-49e7-99e6-c9fe2fb91040" + "95eaccf4-4850-45a6-8f3f-6455e25a2692" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155323Z:039d6d36-d52a-49e7-99e6-c9fe2fb91040" + "JIOINDIACENTRAL:20220512T125722Z:95eaccf4-4850-45a6-8f3f-6455e25a2692" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:23 GMT" + "Thu, 12 May 2022 12:57:22 GMT" ], "Content-Length": [ - "1477" + "1479" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UiQBAOwX0+E=\",\r\n \"_ts\": 1646754716,\r\n \"_self\": \"dbs/UiQBAA==/colls/UiQBAOwX0+E=/\",\r\n \"_etag\": \"\\\"0000d004-0000-0100-0000-62277b9c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"ba5FAMRjWac=\",\r\n \"_ts\": 1652360145,\r\n \"_self\": \"dbs/ba5FAA==/colls/ba5FAMRjWac=/\",\r\n \"_etag\": \"\\\"0000412c-0000-0100-0000-627d03d10000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6b4334e-746d-4e69-8e45-b2ccfd3522a9" + "d8568171-467d-4466-8965-aa7c3b09669e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1485,22 +1425,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11989" ], "x-ms-request-id": [ - "840d11ac-6539-40fe-a611-0adcfb3cc400" + "a2c08f23-dc2a-4a55-b398-571ca190603b" ], "x-ms-correlation-request-id": [ - "840d11ac-6539-40fe-a611-0adcfb3cc400" + "a2c08f23-dc2a-4a55-b398-571ca190603b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155355Z:840d11ac-6539-40fe-a611-0adcfb3cc400" + "JIOINDIACENTRAL:20220512T125754Z:a2c08f23-dc2a-4a55-b398-571ca190603b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:55 GMT" + "Thu, 12 May 2022 12:57:54 GMT" ], "Content-Length": [ "1479" @@ -1509,26 +1449,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UiQBAOwX0+E=\",\r\n \"_ts\": 1646754716,\r\n \"_self\": \"dbs/UiQBAA==/colls/UiQBAOwX0+E=/\",\r\n \"_etag\": \"\\\"0000d004-0000-0100-0000-62277b9c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"ba5FAMRjWac=\",\r\n \"_ts\": 1652360145,\r\n \"_self\": \"dbs/ba5FAA==/colls/ba5FAMRjWac=/\",\r\n \"_etag\": \"\\\"0000412c-0000-0100-0000-627d03d10000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"Consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\",\r\n \"indexes\": [\r\n {\r\n \"dataType\": \"String\",\r\n \"precision\": -1,\r\n \"kind\": \"Hash\"\r\n },\r\n {\r\n \"dataType\": \"String\",\r\n \"precision\": -1,\r\n \"kind\": \"Hash\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"Ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"Descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"Descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"Ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f737657e-34f7-4ffa-b678-ae90b972d43f" + "0651ae8c-9e42-48bf-90e2-8f290797a694" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1545,13 +1485,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/0546365f-e657-465b-bcca-131a68df8261?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/b023c512-176e-48c5-9af3-7a6d78e619ba?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0546365f-e657-465b-bcca-131a68df8261?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b023c512-176e-48c5-9af3-7a6d78e619ba?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "0546365f-e657-465b-bcca-131a68df8261" + "b023c512-176e-48c5-9af3-7a6d78e619ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1563,19 +1503,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "807ffd3f-dd3d-4612-8f35-6897bb6c81f9" + "1184cfd5-8cf7-476f-9109-e5063d5eeb8e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155148Z:807ffd3f-dd3d-4612-8f35-6897bb6c81f9" + "JIOINDIACENTRAL:20220512T125538Z:1184cfd5-8cf7-476f-9109-e5063d5eeb8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:51:47 GMT" + "Thu, 12 May 2022 12:55:37 GMT" ], "Content-Length": [ "21" @@ -1588,22 +1528,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b6b4334e-746d-4e69-8e45-b2ccfd3522a9" + "d8568171-467d-4466-8965-aa7c3b09669e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1620,13 +1560,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/ce3d4456-ce85-4ef3-84c2-56ce6d91c02d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/c2fddfe2-1507-456d-815c-3a143d2f27a7?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce3d4456-ce85-4ef3-84c2-56ce6d91c02d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c2fddfe2-1507-456d-815c-3a143d2f27a7?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ce3d4456-ce85-4ef3-84c2-56ce6d91c02d" + "c2fddfe2-1507-456d-815c-3a143d2f27a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,19 +1578,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "4144d8e8-3d46-4857-a813-9d98e4342bda" + "a08eb3bd-8da9-47c0-8308-b1108399c416" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155324Z:4144d8e8-3d46-4857-a813-9d98e4342bda" + "JIOINDIACENTRAL:20220512T125723Z:a08eb3bd-8da9-47c0-8308-b1108399c416" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:23 GMT" + "Thu, 12 May 2022 12:57:23 GMT" ], "Content-Length": [ "21" @@ -1663,19 +1603,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0546365f-e657-465b-bcca-131a68df8261?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDU0NjM2NWYtZTY1Ny00NjViLWJjY2EtMTMxYTY4ZGY4MjYxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b023c512-176e-48c5-9af3-7a6d78e619ba?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjAyM2M1MTItMTc2ZS00OGM1LTlhZjMtN2E2ZDc4ZTYxOWJhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f737657e-34f7-4ffa-b678-ae90b972d43f" + "0651ae8c-9e42-48bf-90e2-8f290797a694" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1695,22 +1635,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-request-id": [ - "3204cc00-8218-4444-b576-34b1d002aa7d" + "7e1733c8-411f-434d-a9af-e3e05ab3efff" ], "x-ms-correlation-request-id": [ - "3204cc00-8218-4444-b576-34b1d002aa7d" + "7e1733c8-411f-434d-a9af-e3e05ab3efff" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155219Z:3204cc00-8218-4444-b576-34b1d002aa7d" + "JIOINDIACENTRAL:20220512T125609Z:7e1733c8-411f-434d-a9af-e3e05ab3efff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:19 GMT" + "Thu, 12 May 2022 12:56:08 GMT" ], "Content-Length": [ "22" @@ -1723,22 +1663,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMjk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMjk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName29\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3f32bccd-5f78-4d86-a15c-011e6306567c" + "0e90dfc4-c1ad-4ffe-ab98-32b108f4cfc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1755,13 +1695,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29/operationResults/e371b4a4-a8cc-447e-b511-bbebd68210bc?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29/operationResults/3a885532-43a1-434a-b81b-2db194b71d9d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e371b4a4-a8cc-447e-b511-bbebd68210bc?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3a885532-43a1-434a-b81b-2db194b71d9d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e371b4a4-a8cc-447e-b511-bbebd68210bc" + "3a885532-43a1-434a-b81b-2db194b71d9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1773,19 +1713,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "7e55703f-6c92-437c-b371-7b2b1083a0a3" + "13b0ba06-a2ac-476b-8e82-06768b2c29dd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155220Z:7e55703f-6c92-437c-b371-7b2b1083a0a3" + "JIOINDIACENTRAL:20220512T125614Z:13b0ba06-a2ac-476b-8e82-06768b2c29dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:20 GMT" + "Thu, 12 May 2022 12:56:14 GMT" ], "Content-Length": [ "21" @@ -1798,19 +1738,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e371b4a4-a8cc-447e-b511-bbebd68210bc?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTM3MWI0YTQtYThjYy00NDdlLWI1MTEtYmJlYmQ2ODIxMGJjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3a885532-43a1-434a-b81b-2db194b71d9d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2E4ODU1MzItNDNhMS00MzRhLWI4MWItMmRiMTk0YjcxZDlkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f32bccd-5f78-4d86-a15c-011e6306567c" + "0e90dfc4-c1ad-4ffe-ab98-32b108f4cfc8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1830,22 +1770,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11995" ], "x-ms-request-id": [ - "33b551b3-b05e-434d-8b2e-3c2f9b78e266" + "6030c21f-bd04-45e0-95e5-02bc3a15cda9" ], "x-ms-correlation-request-id": [ - "33b551b3-b05e-434d-8b2e-3c2f9b78e266" + "6030c21f-bd04-45e0-95e5-02bc3a15cda9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155251Z:33b551b3-b05e-434d-8b2e-3c2f9b78e266" + "JIOINDIACENTRAL:20220512T125644Z:6030c21f-bd04-45e0-95e5-02bc3a15cda9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:50 GMT" + "Thu, 12 May 2022 12:56:44 GMT" ], "Content-Length": [ "22" @@ -1858,19 +1798,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMjk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMjk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f32bccd-5f78-4d86-a15c-011e6306567c" + "0e90dfc4-c1ad-4ffe-ab98-32b108f4cfc8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1890,22 +1830,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11994" ], "x-ms-request-id": [ - "da9dfffb-3ae2-47d4-89d3-08de106a4ff6" + "d4ea6f62-c041-4d22-ad90-4d419fe7b2e0" ], "x-ms-correlation-request-id": [ - "da9dfffb-3ae2-47d4-89d3-08de106a4ff6" + "d4ea6f62-c041-4d22-ad90-4d419fe7b2e0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155251Z:da9dfffb-3ae2-47d4-89d3-08de106a4ff6" + "JIOINDIACENTRAL:20220512T125645Z:d4ea6f62-c041-4d22-ad90-4d419fe7b2e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:50 GMT" + "Thu, 12 May 2022 12:56:44 GMT" ], "Content-Length": [ "460" @@ -1914,26 +1854,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName29\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName29\",\r\n \"_rid\": \"x0JLAA==\",\r\n \"_self\": \"dbs/x0JLAA==/\",\r\n \"_etag\": \"\\\"0000d404-0000-0100-0000-62277bb80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646754744\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName29\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName29\",\r\n \"_rid\": \"qWQiAA==\",\r\n \"_self\": \"dbs/qWQiAA==/\",\r\n \"_etag\": \"\\\"0000452c-0000-0100-0000-627d03f20000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652360178\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "852cd800-c12f-49dd-86de-5df503abde17" + "35680a9a-d234-4075-89bf-d26c9e7b21a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1953,47 +1893,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11991" ], "x-ms-request-id": [ - "89ac8901-9adf-4a0b-a849-a2dc32df6808" + "a4a7844f-5acd-4722-9579-5d432c283877" ], "x-ms-correlation-request-id": [ - "89ac8901-9adf-4a0b-a849-a2dc32df6808" + "a4a7844f-5acd-4722-9579-5d432c283877" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155251Z:89ac8901-9adf-4a0b-a849-a2dc32df6808" + "JIOINDIACENTRAL:20220512T125646Z:a4a7844f-5acd-4722-9579-5d432c283877" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:52:50 GMT" + "Thu, 12 May 2022 12:56:45 GMT" ], "Content-Length": [ - "5599" + "6313" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 852cd800-c12f-49dd-86de-5df503abde17, Request URI: /apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104893s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T15:52:51.7494621Z, RequestEndTime: 2022-03-08T15:52:51.7494621Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:51:58.5095662Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.774,\\\\\\\"memory\\\\\\\":629814752.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0124,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:52:08.5195592Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.487,\\\\\\\"memory\\\\\\\":632563452.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.01,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:52:18.5295347Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.673,\\\\\\\"memory\\\\\\\":630320172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0341,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:52:28.5395029Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.646,\\\\\\\"memory\\\\\\\":634344264.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:52:38.5494965Z\\\\\\\",\\\\\\\"cpu\\\\\\\":11.293,\\\\\\\"memory\\\\\\\":630577676.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0122,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:52:48.5594743Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.614,\\\\\\\"memory\\\\\\\":628147564.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0137,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T15:52:51.7494621Z; ResponseTime: 2022-03-08T15:52:51.7494621Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104893s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.607, ActivityId: 852cd800-c12f-49dd-86de-5df503abde17, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7494621Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0148},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7494769Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7494796Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.19},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7496696Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1496},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7508192Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0234},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7508426Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":474,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T15:52:51.7494621Z; ResponseTime: 2022-03-08T15:52:51.7494621Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/f5bfded0-1cdf-4387-8525-d7caee86b4ba/partitions/ff7c9898-5723-4ef5-9fdc-7f49d9c4e6e7/replicas/132909513054104892s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.252, ActivityId: 852cd800-c12f-49dd-86de-5df503abde17, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7494621Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0037},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7494658Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7494671Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1495},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7496166Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5085},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7501251Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1461},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:52:51.7502712Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":474,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 35680a9a-d234-4075-89bf-d26c9e7b21a2, Request URI: /apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949417s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T12:56:46.4317665Z, RequestEndTime: 2022-05-12T12:56:46.4317665Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:55:54.2012078Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.424,\\\\\\\"memory\\\\\\\":484053444.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:56:04.2113090Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.456,\\\\\\\"memory\\\\\\\":484018732.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0237,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:56:14.2214996Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.629,\\\\\\\"memory\\\\\\\":483708708.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0151,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:56:24.2315923Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.650,\\\\\\\"memory\\\\\\\":483616800.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0116,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:56:34.2417066Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.381,\\\\\\\"memory\\\\\\\":483408312.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0247,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:56:44.2617328Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.916,\\\\\\\"memory\\\\\\\":483507680.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0098,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T12:56:46.4317665Z; ResponseTime: 2022-05-12T12:56:46.4317665Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949417s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.213, ActivityId: 35680a9a-d234-4075-89bf-d26c9e7b21a2, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4317665Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0182},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4317847Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4317877Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2547},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4320424Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6209},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4326633Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0348},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4326981Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:56:46.4317665Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:56:46.4317665Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:56:46.4317665Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":472,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T12:56:46.4317665Z; ResponseTime: 2022-05-12T12:56:46.4317665Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/13abba65-c00d-468d-92b9-4ae5b9e657ce/services/2a315d36-65b6-487a-8580-063037364148/partitions/85771cf7-b82f-4226-8fba-b01495b66253/replicas/132968238063949415s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.264, ActivityId: 35680a9a-d234-4075-89bf-d26c9e7b21a2, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4317665Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0053},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4317718Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0014},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4317732Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2091},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4319823Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5859},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4325682Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0584},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:56:46.4326266Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:56:46.4317665Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:56:46.4317665Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:56:46.4317665Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":472,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a29fa146-ae49-4d4c-bc86-d1323ef6c518?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTI5ZmExNDYtYWU0OS00ZDRjLWJjODYtZDEzMjNlZjZjNTE4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0dd34eef-d2d0-422f-8e57-5809937d7c86?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGRkMzRlZWYtZDJkMC00MjJmLThlNTctNTgwOTkzN2Q3Yzg2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "709c881b-2941-4881-9117-dda09422929c" + "10e5a703-02fc-4fc8-89f0-745cb72835db" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2013,22 +1953,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11993" ], "x-ms-request-id": [ - "e415aa97-1e52-4e1d-8601-5ae61f81ac55" + "711bb5bc-0123-47ca-8967-4821e122f688" ], "x-ms-correlation-request-id": [ - "e415aa97-1e52-4e1d-8601-5ae61f81ac55" + "711bb5bc-0123-47ca-8967-4821e122f688" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155323Z:e415aa97-1e52-4e1d-8601-5ae61f81ac55" + "JIOINDIACENTRAL:20220512T125720Z:711bb5bc-0123-47ca-8967-4821e122f688" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:22 GMT" + "Thu, 12 May 2022 12:57:19 GMT" ], "Content-Length": [ "22" @@ -2041,19 +1981,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce3d4456-ce85-4ef3-84c2-56ce6d91c02d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2UzZDQ0NTYtY2U4NS00ZWYzLTg0YzItNTZjZTZkOTFjMDJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c2fddfe2-1507-456d-815c-3a143d2f27a7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzJmZGRmZTItMTUwNy00NTZkLTgxNWMtM2ExNDNkMmYyN2E3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6b4334e-746d-4e69-8e45-b2ccfd3522a9" + "d8568171-467d-4466-8965-aa7c3b09669e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2073,22 +2013,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11990" ], "x-ms-request-id": [ - "01b5ec0c-17de-4d10-a8b2-d138ca1803f0" + "17ae89ab-de72-4684-9262-717a82fa05db" ], "x-ms-correlation-request-id": [ - "01b5ec0c-17de-4d10-a8b2-d138ca1803f0" + "17ae89ab-de72-4684-9262-717a82fa05db" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155355Z:01b5ec0c-17de-4d10-a8b2-d138ca1803f0" + "JIOINDIACENTRAL:20220512T125754Z:17ae89ab-de72-4684-9262-717a82fa05db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:55 GMT" + "Thu, 12 May 2022 12:57:53 GMT" ], "Content-Length": [ "22" @@ -2101,22 +2041,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "253fe461-b926-4802-870b-7daaa359c72c" + "e222ea60-f33b-4b12-a48e-0305bb1e8e7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2136,22 +2076,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11998" ], "x-ms-request-id": [ - "f78a0551-c8b9-4db0-acd6-9235d46f4ad0" + "04565a26-7385-405b-864e-5c7e45b165a1" ], "x-ms-correlation-request-id": [ - "f78a0551-c8b9-4db0-acd6-9235d46f4ad0" + "04565a26-7385-405b-864e-5c7e45b165a1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155356Z:f78a0551-c8b9-4db0-acd6-9235d46f4ad0" + "JIOINDIACENTRAL:20220512T125758Z:04565a26-7385-405b-864e-5c7e45b165a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:55 GMT" + "Thu, 12 May 2022 12:57:58 GMT" ], "Content-Length": [ "1376" @@ -2160,26 +2100,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UiQBAOwX0+E=\",\r\n \"_ts\": 1646754716,\r\n \"_self\": \"dbs/UiQBAA==/colls/UiQBAOwX0+E=/\",\r\n \"_etag\": \"\\\"0000d004-0000-0100-0000-62277b9c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"ba5FAMRjWac=\",\r\n \"_ts\": 1652360145,\r\n \"_self\": \"dbs/ba5FAA==/colls/ba5FAMRjWac=/\",\r\n \"_etag\": \"\\\"0000412c-0000-0100-0000-627d03d10000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90233e18-6fc7-42c3-88df-b392e35f11c5" + "0779c309-18c7-4002-acb0-45930ce7bded" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2199,22 +2139,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11987" ], "x-ms-request-id": [ - "d3455a96-b73e-4e13-81f7-06f04398207b" + "67125a39-3fda-4730-ba9d-f1aad872d6d0" ], "x-ms-correlation-request-id": [ - "d3455a96-b73e-4e13-81f7-06f04398207b" + "67125a39-3fda-4730-ba9d-f1aad872d6d0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155356Z:d3455a96-b73e-4e13-81f7-06f04398207b" + "JIOINDIACENTRAL:20220512T125800Z:67125a39-3fda-4730-ba9d-f1aad872d6d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:56 GMT" + "Thu, 12 May 2022 12:57:59 GMT" ], "Content-Length": [ "927" @@ -2223,26 +2163,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UiQBAA==\",\r\n \"_self\": \"dbs/UiQBAA==/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0100-0000-62277b780000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646754680\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName29\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName29\",\r\n \"_rid\": \"x0JLAA==\",\r\n \"_self\": \"dbs/x0JLAA==/\",\r\n \"_etag\": \"\\\"0000d404-0000-0100-0000-62277bb80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646754744\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName29\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName29\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName29\",\r\n \"_rid\": \"qWQiAA==\",\r\n \"_self\": \"dbs/qWQiAA==/\",\r\n \"_etag\": \"\\\"0000452c-0000-0100-0000-627d03f20000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652360178\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"ba5FAA==\",\r\n \"_self\": \"dbs/ba5FAA==/\",\r\n \"_etag\": \"\\\"00003c2c-0000-0100-0000-627d03a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652360104\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf79d92b-add6-442a-a996-58f9b46787ce" + "b4f7f80e-3381-460a-92d2-ca6934a2075c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2253,13 +2193,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/17caf090-fcbe-49f8-bab7-eef842c7b906?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/37399356-9339-4c8d-b113-98a2b39ce589?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/17caf090-fcbe-49f8-bab7-eef842c7b906?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37399356-9339-4c8d-b113-98a2b39ce589?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "17caf090-fcbe-49f8-bab7-eef842c7b906" + "37399356-9339-4c8d-b113-98a2b39ce589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,19 +2211,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "498fac2d-498f-4842-96c0-6a499d50e631" + "2f9776d9-910d-41b0-92a2-21ada190be3e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155357Z:498fac2d-498f-4842-96c0-6a499d50e631" + "JIOINDIACENTRAL:20220512T125802Z:2f9776d9-910d-41b0-92a2-21ada190be3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:53:56 GMT" + "Thu, 12 May 2022 12:58:02 GMT" ], "Content-Length": [ "21" @@ -2296,22 +2236,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdb17433-9c46-475e-a6d2-f49c308303bc" + "7f3d1ff2-b41e-4226-8af0-ba553ddbd5c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2322,13 +2262,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/64e379e2-f3de-45d3-83bf-28cdedce4d06?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/79ecbd96-ce09-497b-bd9b-1b1c9b249737?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/64e379e2-f3de-45d3-83bf-28cdedce4d06?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/79ecbd96-ce09-497b-bd9b-1b1c9b249737?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "64e379e2-f3de-45d3-83bf-28cdedce4d06" + "79ecbd96-ce09-497b-bd9b-1b1c9b249737" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2340,19 +2280,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "d8bd048c-71f5-47b3-b526-d15c4d148220" + "a67bc1cb-ed70-4521-b555-0298609147b0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T155502Z:d8bd048c-71f5-47b3-b526-d15c4d148220" + "JIOINDIACENTRAL:20220512T125908Z:a67bc1cb-ed70-4521-b555-0298609147b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:55:01 GMT" + "Thu, 12 May 2022 12:59:08 GMT" ], "Content-Length": [ "21" @@ -2365,19 +2305,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/17caf090-fcbe-49f8-bab7-eef842c7b906?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTdjYWYwOTAtZmNiZS00OWY4LWJhYjctZWVmODQyYzdiOTA2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37399356-9339-4c8d-b113-98a2b39ce589?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzczOTkzNTYtOTMzOS00YzhkLWIxMTMtOThhMmIzOWNlNTg5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf79d92b-add6-442a-a996-58f9b46787ce" + "b4f7f80e-3381-460a-92d2-ca6934a2075c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2397,22 +2337,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11996" ], "x-ms-request-id": [ - "d78f7ba9-2599-4334-a4db-4662c28e62b5" + "633c871f-c26b-4cb5-ae6c-a3e542c217f5" ], "x-ms-correlation-request-id": [ - "d78f7ba9-2599-4334-a4db-4662c28e62b5" + "633c871f-c26b-4cb5-ae6c-a3e542c217f5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155427Z:d78f7ba9-2599-4334-a4db-4662c28e62b5" + "JIOINDIACENTRAL:20220512T125833Z:633c871f-c26b-4cb5-ae6c-a3e542c217f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:54:26 GMT" + "Thu, 12 May 2022 12:58:33 GMT" ], "Content-Length": [ "22" @@ -2425,19 +2365,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/17caf090-fcbe-49f8-bab7-eef842c7b906?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy8xN2NhZjA5MC1mY2JlLTQ5ZjgtYmFiNy1lZWY4NDJjN2I5MDY/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/37399356-9339-4c8d-b113-98a2b39ce589?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy8zNzM5OTM1Ni05MzM5LTRjOGQtYjExMy05OGEyYjM5Y2U1ODk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf79d92b-add6-442a-a996-58f9b46787ce" + "b4f7f80e-3381-460a-92d2-ca6934a2075c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2457,22 +2397,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11995" ], "x-ms-request-id": [ - "00d2a1a1-1bbe-40a9-a523-dfbd669630c9" + "ddd9f2a5-aae7-4217-81d4-51f9d0081af9" ], "x-ms-correlation-request-id": [ - "00d2a1a1-1bbe-40a9-a523-dfbd669630c9" + "ddd9f2a5-aae7-4217-81d4-51f9d0081af9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155427Z:00d2a1a1-1bbe-40a9-a523-dfbd669630c9" + "JIOINDIACENTRAL:20220512T125834Z:ddd9f2a5-aae7-4217-81d4-51f9d0081af9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:54:27 GMT" + "Thu, 12 May 2022 12:58:33 GMT" ], "Content-Type": [ "application/json" @@ -2482,22 +2422,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "103d171c-954c-4813-be65-66b3d7e796a0" + "c19d0b51-d648-46a7-b531-3aade16ea5fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2508,13 +2448,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/eaa81810-9ddc-4a2a-9e38-4ee50342df8f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/6daba5d5-59d1-4ec9-923d-04ac627cd43c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eaa81810-9ddc-4a2a-9e38-4ee50342df8f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6daba5d5-59d1-4ec9-923d-04ac627cd43c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "eaa81810-9ddc-4a2a-9e38-4ee50342df8f" + "6daba5d5-59d1-4ec9-923d-04ac627cd43c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2529,16 +2469,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "4b0a74e8-fdae-4714-9a62-0bf012c279bb" + "3914a2b8-440b-445d-8419-4884fccf72ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155429Z:4b0a74e8-fdae-4714-9a62-0bf012c279bb" + "CENTRALINDIA:20220512T125836Z:3914a2b8-440b-445d-8419-4884fccf72ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:54:29 GMT" + "Thu, 12 May 2022 12:58:35 GMT" ], "Content-Length": [ "21" @@ -2551,22 +2491,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6299649c-145c-48e3-9402-5df290eae08e" + "aeee2b48-892b-47d3-a7a9-a797350c2457" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2577,13 +2517,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/3483554a-ab2d-4bed-a7fc-4190b311880e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/f9d701b6-9f34-48c5-bcf2-42b49d4ae54f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3483554a-ab2d-4bed-a7fc-4190b311880e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9d701b6-9f34-48c5-bcf2-42b49d4ae54f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "3483554a-ab2d-4bed-a7fc-4190b311880e" + "f9d701b6-9f34-48c5-bcf2-42b49d4ae54f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2595,19 +2535,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "9a50f627-8090-4989-a075-eb03c55f6169" + "c6885e97-6135-4a3e-b3ca-c257776a93f4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155535Z:9a50f627-8090-4989-a075-eb03c55f6169" + "JIOINDIACENTRAL:20220512T125941Z:c6885e97-6135-4a3e-b3ca-c257776a93f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:55:34 GMT" + "Thu, 12 May 2022 12:59:40 GMT" ], "Content-Length": [ "21" @@ -2620,19 +2560,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eaa81810-9ddc-4a2a-9e38-4ee50342df8f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWFhODE4MTAtOWRkYy00YTJhLTllMzgtNGVlNTAzNDJkZjhmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6daba5d5-59d1-4ec9-923d-04ac627cd43c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmRhYmE1ZDUtNTlkMS00ZWM5LTkyM2QtMDRhYzYyN2NkNDNjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "103d171c-954c-4813-be65-66b3d7e796a0" + "c19d0b51-d648-46a7-b531-3aade16ea5fa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2652,22 +2592,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "3f4938ae-a09f-40ea-8680-3b6ff2ad79cd" + "bc3e48fe-0204-4aa3-8cd3-b5ec4f10cd44" ], "x-ms-correlation-request-id": [ - "3f4938ae-a09f-40ea-8680-3b6ff2ad79cd" + "bc3e48fe-0204-4aa3-8cd3-b5ec4f10cd44" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155459Z:3f4938ae-a09f-40ea-8680-3b6ff2ad79cd" + "CENTRALINDIA:20220512T125906Z:bc3e48fe-0204-4aa3-8cd3-b5ec4f10cd44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:54:59 GMT" + "Thu, 12 May 2022 12:59:06 GMT" ], "Content-Length": [ "22" @@ -2680,19 +2620,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/eaa81810-9ddc-4a2a-9e38-4ee50342df8f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvZWFhODE4MTAtOWRkYy00YTJhLTllMzgtNGVlNTAzNDJkZjhmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/6daba5d5-59d1-4ec9-923d-04ac627cd43c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvNmRhYmE1ZDUtNTlkMS00ZWM5LTkyM2QtMDRhYzYyN2NkNDNjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "103d171c-954c-4813-be65-66b3d7e796a0" + "c19d0b51-d648-46a7-b531-3aade16ea5fa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2712,22 +2652,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "57d5cafb-db1d-436b-bd20-4db78492eb90" + "bb6de6b6-9bf3-456f-9e71-90615ffa35e7" ], "x-ms-correlation-request-id": [ - "57d5cafb-db1d-436b-bd20-4db78492eb90" + "bb6de6b6-9bf3-456f-9e71-90615ffa35e7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155500Z:57d5cafb-db1d-436b-bd20-4db78492eb90" + "CENTRALINDIA:20220512T125906Z:bb6de6b6-9bf3-456f-9e71-90615ffa35e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:54:59 GMT" + "Thu, 12 May 2022 12:59:06 GMT" ], "Content-Type": [ "application/json" @@ -2737,19 +2677,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/64e379e2-f3de-45d3-83bf-28cdedce4d06?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjRlMzc5ZTItZjNkZS00NWQzLTgzYmYtMjhjZGVkY2U0ZDA2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/79ecbd96-ce09-497b-bd9b-1b1c9b249737?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzllY2JkOTYtY2UwOS00OTdiLWJkOWItMWIxYzliMjQ5NzM3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdb17433-9c46-475e-a6d2-f49c308303bc" + "7f3d1ff2-b41e-4226-8af0-ba553ddbd5c6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2769,22 +2709,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11991" ], "x-ms-request-id": [ - "5ab76f03-c6e1-4cf3-bff8-ca592fa8529b" + "c3f4b69f-ef73-4c17-8585-1963463a5ca2" ], "x-ms-correlation-request-id": [ - "5ab76f03-c6e1-4cf3-bff8-ca592fa8529b" + "c3f4b69f-ef73-4c17-8585-1963463a5ca2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T155532Z:5ab76f03-c6e1-4cf3-bff8-ca592fa8529b" + "JIOINDIACENTRAL:20220512T125938Z:c3f4b69f-ef73-4c17-8585-1963463a5ca2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:55:32 GMT" + "Thu, 12 May 2022 12:59:38 GMT" ], "Content-Length": [ "22" @@ -2797,19 +2737,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/64e379e2-f3de-45d3-83bf-28cdedce4d06?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy82NGUzNzllMi1mM2RlLTQ1ZDMtODNiZi0yOGNkZWRjZTRkMDY/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/graphs/graph1/operationResults/79ecbd96-ce09-497b-bd9b-1b1c9b249737?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy83OWVjYmQ5Ni1jZTA5LTQ5N2ItYmQ5Yi0xYjFjOWIyNDk3Mzc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdb17433-9c46-475e-a6d2-f49c308303bc" + "7f3d1ff2-b41e-4226-8af0-ba553ddbd5c6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2829,22 +2769,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11990" ], "x-ms-request-id": [ - "c14cc4a5-ec20-4e0f-80dd-331b28adf5ad" + "941e5805-e606-4fb0-bb68-5699cc7372fa" ], "x-ms-correlation-request-id": [ - "c14cc4a5-ec20-4e0f-80dd-331b28adf5ad" + "941e5805-e606-4fb0-bb68-5699cc7372fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T155532Z:c14cc4a5-ec20-4e0f-80dd-331b28adf5ad" + "JIOINDIACENTRAL:20220512T125939Z:941e5805-e606-4fb0-bb68-5699cc7372fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:55:32 GMT" + "Thu, 12 May 2022 12:59:38 GMT" ], "Content-Type": [ "application/json" @@ -2854,19 +2794,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3483554a-ab2d-4bed-a7fc-4190b311880e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzQ4MzU1NGEtYWIyZC00YmVkLWE3ZmMtNDE5MGIzMTE4ODBlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9d701b6-9f34-48c5-bcf2-42b49d4ae54f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjlkNzAxYjYtOWYzNC00OGM1LWJjZjItNDJiNDlkNGFlNTRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6299649c-145c-48e3-9402-5df290eae08e" + "aeee2b48-892b-47d3-a7a9-a797350c2457" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2886,22 +2826,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-request-id": [ - "fb993912-98ce-4b79-a595-c45b81d7b690" + "6fc47288-9a2e-4d3c-a744-e940244d3dca" ], "x-ms-correlation-request-id": [ - "fb993912-98ce-4b79-a595-c45b81d7b690" + "6fc47288-9a2e-4d3c-a744-e940244d3dca" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155605Z:fb993912-98ce-4b79-a595-c45b81d7b690" + "JIOINDIACENTRAL:20220512T130011Z:6fc47288-9a2e-4d3c-a744-e940244d3dca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:56:05 GMT" + "Thu, 12 May 2022 13:00:11 GMT" ], "Content-Length": [ "22" @@ -2914,19 +2854,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/3483554a-ab2d-4bed-a7fc-4190b311880e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvMzQ4MzU1NGEtYWIyZC00YmVkLWE3ZmMtNDE5MGIzMTE4ODBlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1050/gremlinDatabases/dbName/operationResults/f9d701b6-9f34-48c5-bcf2-42b49d4ae54f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUwL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvZjlkNzAxYjYtOWYzNC00OGM1LWJjZjItNDJiNDlkNGFlNTRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6299649c-145c-48e3-9402-5df290eae08e" + "aeee2b48-892b-47d3-a7a9-a797350c2457" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2946,22 +2886,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11997" ], "x-ms-request-id": [ - "84ecb5e7-56bf-4b95-8184-2fe8fd060400" + "33ef691c-5aea-4bad-94ca-104befd56fae" ], "x-ms-correlation-request-id": [ - "84ecb5e7-56bf-4b95-8184-2fe8fd060400" + "33ef691c-5aea-4bad-94ca-104befd56fae" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155605Z:84ecb5e7-56bf-4b95-8184-2fe8fd060400" + "JIOINDIACENTRAL:20220512T130013Z:33ef691c-5aea-4bad-94ca-104befd56fae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:56:05 GMT" + "Thu, 12 May 2022 13:00:13 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinOperationsCmdletsUsingInputObject.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinOperationsCmdletsUsingInputObject.json index b8c6c447b670..311875ac7df6 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinOperationsCmdletsUsingInputObject.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinOperationsCmdletsUsingInputObject.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a553a145-7c1f-4c65-95b6-08936d3100aa" + "0c351d31-3bd9-4e23-bb83-2551ac032820" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "9c8a3604-69b4-41c6-8928-4c6f98852892" + "093dba1a-88c1-4c5e-8ad8-e937d30e2d32" ], "x-ms-correlation-request-id": [ - "9c8a3604-69b4-41c6-8928-4c6f98852892" + "093dba1a-88c1-4c5e-8ad8-e937d30e2d32" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160723Z:9c8a3604-69b4-41c6-8928-4c6f98852892" + "JIOINDIACENTRAL:20220512T131133Z:093dba1a-88c1-4c5e-8ad8-e937d30e2d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:07:23 GMT" + "Thu, 12 May 2022 13:11:32 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" + "f02156c9-f17f-419d-a7a8-04cff085de6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "6c13b83e-71cc-4a62-9ccf-1274a3315866" + "5168bf89-9b1c-42f3-a630-fdbdb244f855" ], "x-ms-correlation-request-id": [ - "6c13b83e-71cc-4a62-9ccf-1274a3315866" + "5168bf89-9b1c-42f3-a630-fdbdb244f855" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160725Z:6c13b83e-71cc-4a62-9ccf-1274a3315866" + "JIOINDIACENTRAL:20220512T131133Z:5168bf89-9b1c-42f3-a630-fdbdb244f855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:07:25 GMT" + "Thu, 12 May 2022 13:11:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" + "f02156c9-f17f-419d-a7a8-04cff085de6e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11980" ], "x-ms-request-id": [ - "0a89da13-4174-4049-94aa-69352737765a" + "9faffbf6-5656-4620-ae29-e106e7059ee8" ], "x-ms-correlation-request-id": [ - "0a89da13-4174-4049-94aa-69352737765a" + "9faffbf6-5656-4620-ae29-e106e7059ee8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161037Z:0a89da13-4174-4049-94aa-69352737765a" + "JIOINDIACENTRAL:20220512T131414Z:9faffbf6-5656-4620-ae29-e106e7059ee8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:10:37 GMT" + "Thu, 12 May 2022 13:14:13 GMT" ], "Content-Length": [ "2444" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052\",\r\n \"name\": \"gremlin-db1052\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:09:56.5548905Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1052.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1052.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ef12c80e-e033-46d5-a3fd-e6c4b746ea33\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052\",\r\n \"name\": \"gremlin-db1052\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:13:47.2812364Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1052.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1052.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"9653de5c-c501-4ec0-97c5-e386419a1b83\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "970236d0-8c44-4384-b3df-3af785ea423e" + "6c50389a-6e02-45c0-ba0e-0962ae57ea19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-request-id": [ - "1ac3f435-095a-4e86-8090-f7da77d001ec" + "f7bc248c-7167-4ea2-a12e-78d37e9dacbc" ], "x-ms-correlation-request-id": [ - "1ac3f435-095a-4e86-8090-f7da77d001ec" + "f7bc248c-7167-4ea2-a12e-78d37e9dacbc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161037Z:1ac3f435-095a-4e86-8090-f7da77d001ec" + "CENTRALINDIA:20220512T131415Z:f7bc248c-7167-4ea2-a12e-78d37e9dacbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:10:37 GMT" + "Thu, 12 May 2022 13:14:14 GMT" ], "Content-Length": [ "2444" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052\",\r\n \"name\": \"gremlin-db1052\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:09:56.5548905Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1052.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1052.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ef12c80e-e033-46d5-a3fd-e6c4b746ea33\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052\",\r\n \"name\": \"gremlin-db1052\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:13:47.2812364Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1052.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1052.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"9653de5c-c501-4ec0-97c5-e386419a1b83\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1052-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" + "f02156c9-f17f-419d-a7a8-04cff085de6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/operationResults/508d5786-8cd3-4153-94f9-12aa7b742cae?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/operationResults/45d92408-1239-4aba-be11-0d2885e4e3f8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "508d5786-8cd3-4153-94f9-12aa7b742cae" + "45d92408-1239-4aba-be11-0d2885e4e3f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/508d5786-8cd3-4153-94f9-12aa7b742cae?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45d92408-1239-4aba-be11-0d2885e4e3f8?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,16 +303,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "998636ec-960b-4295-8ad5-82c80fb1c677" + "8eac1b99-4bc9-4a23-b4c0-a1cb7dd8d0e5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160734Z:998636ec-960b-4295-8ad5-82c80fb1c677" + "JIOINDIACENTRAL:20220512T131140Z:8eac1b99-4bc9-4a23-b4c0-a1cb7dd8d0e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:07:34 GMT" + "Thu, 12 May 2022 13:11:39 GMT" ], "Content-Length": [ "2056" @@ -321,83 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052\",\r\n \"name\": \"gremlin-db1052\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:07:31.6715244Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ef12c80e-e033-46d5-a3fd-e6c4b746ea33\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/508d5786-8cd3-4153-94f9-12aa7b742cae?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTA4ZDU3ODYtOGNkMy00MTUzLTk0ZjktMTJhYTdiNzQyY2FlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "d187a6e5-82e9-45d1-80e6-75032600650a" - ], - "x-ms-correlation-request-id": [ - "d187a6e5-82e9-45d1-80e6-75032600650a" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160804Z:d187a6e5-82e9-45d1-80e6-75032600650a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 16:08:04 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052\",\r\n \"name\": \"gremlin-db1052\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:11:37.8086746Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"9653de5c-c501-4ec0-97c5-e386419a1b83\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1052-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/508d5786-8cd3-4153-94f9-12aa7b742cae?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTA4ZDU3ODYtOGNkMy00MTUzLTk0ZjktMTJhYTdiNzQyY2FlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45d92408-1239-4aba-be11-0d2885e4e3f8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDVkOTI0MDgtMTIzOS00YWJhLWJlMTEtMGQyODg1ZTRlM2Y4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" + "f02156c9-f17f-419d-a7a8-04cff085de6e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11985" ], "x-ms-request-id": [ - "c3fe9041-864d-49d5-bd75-063ae45a243c" + "10f8bfbc-8518-43a5-89a6-5fd7dbea63cf" ], "x-ms-correlation-request-id": [ - "c3fe9041-864d-49d5-bd75-063ae45a243c" + "10f8bfbc-8518-43a5-89a6-5fd7dbea63cf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160834Z:c3fe9041-864d-49d5-bd75-063ae45a243c" + "JIOINDIACENTRAL:20220512T131211Z:10f8bfbc-8518-43a5-89a6-5fd7dbea63cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:08:34 GMT" + "Thu, 12 May 2022 13:12:11 GMT" ], "Content-Length": [ "21" @@ -445,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/508d5786-8cd3-4153-94f9-12aa7b742cae?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTA4ZDU3ODYtOGNkMy00MTUzLTk0ZjktMTJhYTdiNzQyY2FlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45d92408-1239-4aba-be11-0d2885e4e3f8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDVkOTI0MDgtMTIzOS00YWJhLWJlMTEtMGQyODg1ZTRlM2Y4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" + "f02156c9-f17f-419d-a7a8-04cff085de6e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11984" ], "x-ms-request-id": [ - "60b9d718-7a4d-4f68-9b34-004ac11af0ff" + "1fb39e5c-a0d0-4817-adb4-5a2ae1b43de5" ], "x-ms-correlation-request-id": [ - "60b9d718-7a4d-4f68-9b34-004ac11af0ff" + "1fb39e5c-a0d0-4817-adb4-5a2ae1b43de5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160905Z:60b9d718-7a4d-4f68-9b34-004ac11af0ff" + "JIOINDIACENTRAL:20220512T131242Z:1fb39e5c-a0d0-4817-adb4-5a2ae1b43de5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:09:04 GMT" + "Thu, 12 May 2022 13:12:42 GMT" ], "Content-Length": [ "21" @@ -505,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/508d5786-8cd3-4153-94f9-12aa7b742cae?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTA4ZDU3ODYtOGNkMy00MTUzLTk0ZjktMTJhYTdiNzQyY2FlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45d92408-1239-4aba-be11-0d2885e4e3f8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDVkOTI0MDgtMTIzOS00YWJhLWJlMTEtMGQyODg1ZTRlM2Y4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" + "f02156c9-f17f-419d-a7a8-04cff085de6e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11983" ], "x-ms-request-id": [ - "0713883d-7e1c-424b-b213-e4b120c32d90" + "1d9395c4-4b5c-4638-96dd-4fbaeadc9fd6" ], "x-ms-correlation-request-id": [ - "0713883d-7e1c-424b-b213-e4b120c32d90" + "1d9395c4-4b5c-4638-96dd-4fbaeadc9fd6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160936Z:0713883d-7e1c-424b-b213-e4b120c32d90" + "JIOINDIACENTRAL:20220512T131312Z:1d9395c4-4b5c-4638-96dd-4fbaeadc9fd6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:09:36 GMT" + "Thu, 12 May 2022 13:13:12 GMT" ], "Content-Length": [ "21" @@ -565,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/508d5786-8cd3-4153-94f9-12aa7b742cae?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTA4ZDU3ODYtOGNkMy00MTUzLTk0ZjktMTJhYTdiNzQyY2FlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45d92408-1239-4aba-be11-0d2885e4e3f8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDVkOTI0MDgtMTIzOS00YWJhLWJlMTEtMGQyODg1ZTRlM2Y4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" + "f02156c9-f17f-419d-a7a8-04cff085de6e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11982" ], "x-ms-request-id": [ - "c93029c5-7175-4596-b867-d10aa57c0c8b" + "ec3d194f-0c9f-472e-b744-89968a64b12a" ], "x-ms-correlation-request-id": [ - "c93029c5-7175-4596-b867-d10aa57c0c8b" + "ec3d194f-0c9f-472e-b744-89968a64b12a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161006Z:c93029c5-7175-4596-b867-d10aa57c0c8b" + "JIOINDIACENTRAL:20220512T131343Z:ec3d194f-0c9f-472e-b744-89968a64b12a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:10:05 GMT" + "Thu, 12 May 2022 13:13:43 GMT" ], "Content-Length": [ "21" @@ -625,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/508d5786-8cd3-4153-94f9-12aa7b742cae?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTA4ZDU3ODYtOGNkMy00MTUzLTk0ZjktMTJhYTdiNzQyY2FlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45d92408-1239-4aba-be11-0d2885e4e3f8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDVkOTI0MDgtMTIzOS00YWJhLWJlMTEtMGQyODg1ZTRlM2Y4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7013a33b-c72c-4fde-a9f1-2e0acdbdc2a0" + "f02156c9-f17f-419d-a7a8-04cff085de6e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11981" ], "x-ms-request-id": [ - "e2590243-6802-4003-b1b9-f12d2347f989" + "ecccc0d1-21a4-43e5-a8f6-85552ec164ee" ], "x-ms-correlation-request-id": [ - "e2590243-6802-4003-b1b9-f12d2347f989" + "ecccc0d1-21a4-43e5-a8f6-85552ec164ee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161037Z:e2590243-6802-4003-b1b9-f12d2347f989" + "JIOINDIACENTRAL:20220512T131413Z:ecccc0d1-21a4-43e5-a8f6-85552ec164ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:10:37 GMT" + "Thu, 12 May 2022 13:14:13 GMT" ], "Content-Length": [ "22" @@ -685,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "120b7dd9-69c1-4bf5-b008-9126353a5b74" + "071e3c17-cbcf-4aee-97f0-040a10f9dff7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,47 +660,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "6fc6e5d4-cfe8-468a-82cc-27b34157a0f1" + "be1a5df4-04e6-4ffc-9909-847676ab72a1" ], "x-ms-correlation-request-id": [ - "6fc6e5d4-cfe8-468a-82cc-27b34157a0f1" + "be1a5df4-04e6-4ffc-9909-847676ab72a1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161038Z:6fc6e5d4-cfe8-468a-82cc-27b34157a0f1" + "CENTRALINDIA:20220512T131420Z:be1a5df4-04e6-4ffc-9909-847676ab72a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:10:38 GMT" + "Thu, 12 May 2022 13:14:19 GMT" ], "Content-Length": [ - "5580" + "6292" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 120b7dd9-69c1-4bf5-b008-9126353a5b74, Request URI: /apps/cdea7129-c8bc-4a75-ab5c-98cdeb77ce30/services/6b121c56-4d66-490d-8803-abcb64d27f94/partitions/79c9cbe0-e2f2-4cdc-babd-ef93f16a6b3b/replicas/132910950058547755s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T16:10:38.3607117Z, RequestEndTime: 2022-03-08T16:10:38.3607117Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:09:32.8298584Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.724,\\\\\\\"memory\\\\\\\":468433600.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0221,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:09:42.8399783Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.837,\\\\\\\"memory\\\\\\\":468011860.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0233,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:09:52.8500469Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.675,\\\\\\\"memory\\\\\\\":467680596.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0152,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:10:02.8601741Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.744,\\\\\\\"memory\\\\\\\":467039200.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0223,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:10:12.8703885Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.744,\\\\\\\"memory\\\\\\\":466247540.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0198,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:10:32.8806293Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.533,\\\\\\\"memory\\\\\\\":465511384.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0175,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T16:10:38.3607117Z; ResponseTime: 2022-03-08T16:10:38.3607117Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/cdea7129-c8bc-4a75-ab5c-98cdeb77ce30/services/6b121c56-4d66-490d-8803-abcb64d27f94/partitions/79c9cbe0-e2f2-4cdc-babd-ef93f16a6b3b/replicas/132910950058547755s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.104, ActivityId: 120b7dd9-69c1-4bf5-b008-9126353a5b74, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3607117Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0102},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3607219Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0113},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3607332Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1942},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3609274Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4159},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3623433Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0531},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3623964Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T16:10:38.3607117Z; ResponseTime: 2022-03-08T16:10:38.3607117Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/cdea7129-c8bc-4a75-ab5c-98cdeb77ce30/services/6b121c56-4d66-490d-8803-abcb64d27f94/partitions/79c9cbe0-e2f2-4cdc-babd-ef93f16a6b3b/replicas/132910950058547757s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.913, ActivityId: 120b7dd9-69c1-4bf5-b008-9126353a5b74, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3607117Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0048},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3607165Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3607178Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1397},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3608575Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2883},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3621458Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0684},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:10:38.3622142Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 071e3c17-cbcf-4aee-97f0-040a10f9dff7, Request URI: /apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6f949b41-3d0c-4ab6-a3c5-fb0982c04816/partitions/6cf5772a-dec3-411d-9048-57ed4b337d43/replicas/132968013054015141s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T13:14:20.3732401Z, RequestEndTime: 2022-05-12T13:14:20.3732401Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:13:27.2844292Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.927,\\\\\\\"memory\\\\\\\":652388844.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0194,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:13:37.2941592Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.943,\\\\\\\"memory\\\\\\\":652181356.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0227,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:13:47.3039438Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.072,\\\\\\\"memory\\\\\\\":652245132.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0171,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:13:57.3137508Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.234,\\\\\\\"memory\\\\\\\":652292620.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0169,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:14:07.3235171Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.674,\\\\\\\"memory\\\\\\\":652692948.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0301,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:14:17.3332977Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.307,\\\\\\\"memory\\\\\\\":652586428.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0225,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T13:14:20.3732401Z; ResponseTime: 2022-05-12T13:14:20.3732401Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6f949b41-3d0c-4ab6-a3c5-fb0982c04816/partitions/6cf5772a-dec3-411d-9048-57ed4b337d43/replicas/132968013054015141s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.827, ActivityId: 071e3c17-cbcf-4aee-97f0-040a10f9dff7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3732401Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0064},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3732465Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3732484Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0888},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3733372Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1616},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3744988Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0705},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3745693Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:14:20.3332340Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:14:20.3332340Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:14:20.3332340Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":452,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T13:14:20.3732401Z; ResponseTime: 2022-05-12T13:14:20.3732401Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6f949b41-3d0c-4ab6-a3c5-fb0982c04816/partitions/6cf5772a-dec3-411d-9048-57ed4b337d43/replicas/132968013054015140s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.164, ActivityId: 071e3c17-cbcf-4aee-97f0-040a10f9dff7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3732401Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3732428Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3732436Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0541},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3732977Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6309},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3749286Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0237},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:20.3749523Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:14:20.3332340Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:14:20.3332340Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:14:20.3332340Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":452,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "120b7dd9-69c1-4bf5-b008-9126353a5b74" + "071e3c17-cbcf-4aee-97f0-040a10f9dff7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-request-id": [ - "76dfd4f4-1608-4485-a9f0-81deefaba431" + "fe8bc327-6bd3-4cf6-b0fc-ace626de96f7" ], "x-ms-correlation-request-id": [ - "76dfd4f4-1608-4485-a9f0-81deefaba431" + "fe8bc327-6bd3-4cf6-b0fc-ace626de96f7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161109Z:76dfd4f4-1608-4485-a9f0-81deefaba431" + "CENTRALINDIA:20220512T131452Z:fe8bc327-6bd3-4cf6-b0fc-ace626de96f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:08 GMT" + "Thu, 12 May 2022 13:14:52 GMT" ], "Content-Length": [ "457" @@ -804,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"klpQAA==\",\r\n \"_self\": \"dbs/klpQAA==/\",\r\n \"_etag\": \"\\\"00006802-0000-0100-0000-622780030000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646755843\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"0SR-AA==\",\r\n \"_self\": \"dbs/0SR-AA==/\",\r\n \"_etag\": \"\\\"00005f17-0000-0100-0000-627d08310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652361265\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2f5ab3a-5e93-457a-95a0-3e77092b1096" + "ecd30bfe-7ae1-4ec4-b878-3d8e9b7c89e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -843,22 +783,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "569938ae-7242-4643-8f85-69caed8b5ea1" + "9ad95ffa-d7e2-498f-bc0c-a72299132406" ], "x-ms-correlation-request-id": [ - "569938ae-7242-4643-8f85-69caed8b5ea1" + "9ad95ffa-d7e2-498f-bc0c-a72299132406" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161141Z:569938ae-7242-4643-8f85-69caed8b5ea1" + "JIOINDIACENTRAL:20220512T131527Z:9ad95ffa-d7e2-498f-bc0c-a72299132406" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:41 GMT" + "Thu, 12 May 2022 13:15:27 GMT" ], "Content-Length": [ "457" @@ -867,23 +807,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"klpQAA==\",\r\n \"_self\": \"dbs/klpQAA==/\",\r\n \"_etag\": \"\\\"00006802-0000-0100-0000-622780030000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646755843\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"0SR-AA==\",\r\n \"_self\": \"dbs/0SR-AA==/\",\r\n \"_etag\": \"\\\"00005f17-0000-0100-0000-627d08310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652361265\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57d992ec-4b07-4fcd-a944-a584e15f8392" + "0c30c91f-58c2-4c26-bc13-b27e4be2dcc3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -903,22 +843,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11985" ], "x-ms-request-id": [ - "2b0d30d4-61d1-472b-8e13-8b03e0c4f334" + "16718fbf-617e-4e77-8a41-c63eb21d5a7b" ], "x-ms-correlation-request-id": [ - "2b0d30d4-61d1-472b-8e13-8b03e0c4f334" + "16718fbf-617e-4e77-8a41-c63eb21d5a7b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161213Z:2b0d30d4-61d1-472b-8e13-8b03e0c4f334" + "JIOINDIACENTRAL:20220512T131601Z:16718fbf-617e-4e77-8a41-c63eb21d5a7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:12:12 GMT" + "Thu, 12 May 2022 13:16:01 GMT" ], "Content-Length": [ "457" @@ -927,23 +867,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"klpQAA==\",\r\n \"_self\": \"dbs/klpQAA==/\",\r\n \"_etag\": \"\\\"00006802-0000-0100-0000-622780030000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646755843\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"0SR-AA==\",\r\n \"_self\": \"dbs/0SR-AA==/\",\r\n \"_etag\": \"\\\"00005f17-0000-0100-0000-627d08310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652361265\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28b63e82-07f6-4a8c-aef8-ca49d54e5a7a" + "3bce0762-8c73-4695-86a1-2975e0acae17" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -963,22 +903,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11980" ], "x-ms-request-id": [ - "10274f37-8ffd-4567-ab7e-3ec15efe221d" + "80f1faf4-1136-4f9a-a362-d9c3fa02c0cf" ], "x-ms-correlation-request-id": [ - "10274f37-8ffd-4567-ab7e-3ec15efe221d" + "80f1faf4-1136-4f9a-a362-d9c3fa02c0cf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161315Z:10274f37-8ffd-4567-ab7e-3ec15efe221d" + "JIOINDIACENTRAL:20220512T131708Z:80f1faf4-1136-4f9a-a362-d9c3fa02c0cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:14 GMT" + "Thu, 12 May 2022 13:17:07 GMT" ], "Content-Length": [ "457" @@ -987,26 +927,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"klpQAA==\",\r\n \"_self\": \"dbs/klpQAA==/\",\r\n \"_etag\": \"\\\"00006802-0000-0100-0000-622780030000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646755843\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"0SR-AA==\",\r\n \"_self\": \"dbs/0SR-AA==/\",\r\n \"_etag\": \"\\\"00005f17-0000-0100-0000-627d08310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652361265\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "120b7dd9-69c1-4bf5-b008-9126353a5b74" + "071e3c17-cbcf-4aee-97f0-040a10f9dff7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1023,13 +963,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/e2c2583b-1990-4f85-aa38-1eaa7503c118?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/d4a90df8-2aa7-4f17-af70-1aae0a702e50?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e2c2583b-1990-4f85-aa38-1eaa7503c118?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4a90df8-2aa7-4f17-af70-1aae0a702e50?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e2c2583b-1990-4f85-aa38-1eaa7503c118" + "d4a90df8-2aa7-4f17-af70-1aae0a702e50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,19 +981,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "bfe80aa7-2d8d-40c3-ac5c-c995f23e332a" + "049eb95a-08f7-43a4-92dd-d757ad40da90" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161039Z:bfe80aa7-2d8d-40c3-ac5c-c995f23e332a" + "CENTRALINDIA:20220512T131421Z:049eb95a-08f7-43a4-92dd-d757ad40da90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:10:38 GMT" + "Thu, 12 May 2022 13:14:21 GMT" ], "Content-Length": [ "21" @@ -1066,22 +1006,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "57d992ec-4b07-4fcd-a944-a584e15f8392" + "0c30c91f-58c2-4c26-bc13-b27e4be2dcc3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1098,13 +1038,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/f6cd0659-8e53-4957-977a-9cca67f1a97c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/bf54bf2a-1215-4d71-b851-bbdbe8e69d6f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f6cd0659-8e53-4957-977a-9cca67f1a97c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bf54bf2a-1215-4d71-b851-bbdbe8e69d6f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f6cd0659-8e53-4957-977a-9cca67f1a97c" + "bf54bf2a-1215-4d71-b851-bbdbe8e69d6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,19 +1056,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "e02b632e-149c-446c-ab74-eafcfc69c030" + "131c678b-692e-4841-b579-479f87e7aa15" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161142Z:e02b632e-149c-446c-ab74-eafcfc69c030" + "JIOINDIACENTRAL:20220512T131530Z:131c678b-692e-4841-b579-479f87e7aa15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:42 GMT" + "Thu, 12 May 2022 13:15:30 GMT" ], "Content-Length": [ "21" @@ -1141,22 +1081,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "28b63e82-07f6-4a8c-aef8-ca49d54e5a7a" + "3bce0762-8c73-4695-86a1-2975e0acae17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,13 +1113,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/b45837d2-81d5-4cbe-b90c-41075499b080?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/3099752e-2d55-423b-a2c1-2c1e199d8565?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b45837d2-81d5-4cbe-b90c-41075499b080?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3099752e-2d55-423b-a2c1-2c1e199d8565?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b45837d2-81d5-4cbe-b90c-41075499b080" + "3099752e-2d55-423b-a2c1-2c1e199d8565" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,19 +1131,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "a80ae1c4-b81b-4105-982e-e1aa9dda94e3" + "3986700c-000f-4a10-a6fc-23b68fcc0016" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161245Z:a80ae1c4-b81b-4105-982e-e1aa9dda94e3" + "JIOINDIACENTRAL:20220512T131637Z:3986700c-000f-4a10-a6fc-23b68fcc0016" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:12:45 GMT" + "Thu, 12 May 2022 13:16:36 GMT" ], "Content-Length": [ "21" @@ -1216,19 +1156,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e2c2583b-1990-4f85-aa38-1eaa7503c118?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTJjMjU4M2ItMTk5MC00Zjg1LWFhMzgtMWVhYTc1MDNjMTE4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4a90df8-2aa7-4f17-af70-1aae0a702e50?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRhOTBkZjgtMmFhNy00ZjE3LWFmNzAtMWFhZTBhNzAyZTUwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "120b7dd9-69c1-4bf5-b008-9126353a5b74" + "071e3c17-cbcf-4aee-97f0-040a10f9dff7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1248,22 +1188,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "576ab8ca-d2c4-4c1a-a172-102422b83d60" + "04bd6443-20d7-472c-978b-92a2401e3237" ], "x-ms-correlation-request-id": [ - "576ab8ca-d2c4-4c1a-a172-102422b83d60" + "04bd6443-20d7-472c-978b-92a2401e3237" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161109Z:576ab8ca-d2c4-4c1a-a172-102422b83d60" + "CENTRALINDIA:20220512T131452Z:04bd6443-20d7-472c-978b-92a2401e3237" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:08 GMT" + "Thu, 12 May 2022 13:14:51 GMT" ], "Content-Length": [ "22" @@ -1276,22 +1216,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "209a539e-7cb1-461b-9107-ee02d610b57b" + "b49e8aff-aef3-406b-a388-3e331dec5cd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1311,47 +1251,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "6ed09eb4-8875-4bd0-8212-bd5c7651bd87" + "c488d98c-ee02-40fb-a95c-9b631758a4c0" ], "x-ms-correlation-request-id": [ - "6ed09eb4-8875-4bd0-8212-bd5c7651bd87" + "c488d98c-ee02-40fb-a95c-9b631758a4c0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161109Z:6ed09eb4-8875-4bd0-8212-bd5c7651bd87" + "JIOINDIACENTRAL:20220512T131454Z:c488d98c-ee02-40fb-a95c-9b631758a4c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:09 GMT" + "Thu, 12 May 2022 13:14:53 GMT" ], "Content-Length": [ - "5595" + "6305" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 209a539e-7cb1-461b-9107-ee02d610b57b, Request URI: /apps/cdea7129-c8bc-4a75-ab5c-98cdeb77ce30/services/6b121c56-4d66-490d-8803-abcb64d27f94/partitions/79c9cbe0-e2f2-4cdc-babd-ef93f16a6b3b/replicas/132910950058547756s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T16:11:09.8411512Z, RequestEndTime: 2022-03-08T16:11:09.8411512Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:10:02.8601741Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.744,\\\\\\\"memory\\\\\\\":467039200.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0223,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:10:12.8703885Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.744,\\\\\\\"memory\\\\\\\":466247540.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0198,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:10:32.8806293Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.533,\\\\\\\"memory\\\\\\\":465511384.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0175,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:10:42.8907987Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.882,\\\\\\\"memory\\\\\\\":465058000.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.009,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:10:52.9008735Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.078,\\\\\\\"memory\\\\\\\":464576852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0188,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:11:02.9110303Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.687,\\\\\\\"memory\\\\\\\":464362984.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0137,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T16:11:09.8411512Z; ResponseTime: 2022-03-08T16:11:09.8411512Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/cdea7129-c8bc-4a75-ab5c-98cdeb77ce30/services/6b121c56-4d66-490d-8803-abcb64d27f94/partitions/79c9cbe0-e2f2-4cdc-babd-ef93f16a6b3b/replicas/132910950058547756s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.069, ActivityId: 209a539e-7cb1-461b-9107-ee02d610b57b, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8411512Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0186},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8411698Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8411729Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.249},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8414219Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.7535},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8431754Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0367},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8432121Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":477,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T16:11:09.8411512Z; ResponseTime: 2022-03-08T16:11:09.8411512Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/cdea7129-c8bc-4a75-ab5c-98cdeb77ce30/services/6b121c56-4d66-490d-8803-abcb64d27f94/partitions/79c9cbe0-e2f2-4cdc-babd-ef93f16a6b3b/replicas/132910950058547755s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.105, ActivityId: 209a539e-7cb1-461b-9107-ee02d610b57b, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8411512Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0058},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8411570Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8411589Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2148},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8413737Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5969},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8429706Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0674},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:11:09.8430380Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":477,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: b49e8aff-aef3-406b-a388-3e331dec5cd9, Request URI: /apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6f949b41-3d0c-4ab6-a3c5-fb0982c04816/partitions/6cf5772a-dec3-411d-9048-57ed4b337d43/replicas/132968013054015141s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T13:14:54.0086878Z, RequestEndTime: 2022-05-12T13:14:54.0086878Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:13:55.3294356Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.043,\\\\\\\"memory\\\\\\\":658364444.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0116,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:14:05.3393062Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.386,\\\\\\\"memory\\\\\\\":658345896.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0232,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:14:15.3491827Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.666,\\\\\\\"memory\\\\\\\":657903836.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0194,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:14:25.3690684Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.014,\\\\\\\"memory\\\\\\\":658135588.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0149,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:14:35.3789383Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.813,\\\\\\\"memory\\\\\\\":658022096.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0159,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:14:45.3888153Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.716,\\\\\\\"memory\\\\\\\":658107620.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0164,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T13:14:54.0086878Z; ResponseTime: 2022-05-12T13:14:54.0086878Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6f949b41-3d0c-4ab6-a3c5-fb0982c04816/partitions/6cf5772a-dec3-411d-9048-57ed4b337d43/replicas/132968013054015141s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.719, ActivityId: b49e8aff-aef3-406b-a388-3e331dec5cd9, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0086878Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0079},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0086957Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0086977Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.265},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0089627Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8028},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0097655Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1446},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0099101Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:14:53.9686947Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:14:53.9686947Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:14:53.9686947Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":477,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T13:14:54.0086878Z; ResponseTime: 2022-05-12T13:14:54.0086878Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/8553aae1-fce3-4524-9cf5-eebea2ecdb3d/services/6f949b41-3d0c-4ab6-a3c5-fb0982c04816/partitions/6cf5772a-dec3-411d-9048-57ed4b337d43/replicas/132968013054015140s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.77, ActivityId: b49e8aff-aef3-406b-a388-3e331dec5cd9, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0086878Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0034},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0086912Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.001},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0086922Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1332},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0088254Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3875},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0102129Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2091},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:14:54.0104220Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:14:53.9086947Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:14:53.9086947Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:14:53.9086947Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":477,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "209a539e-7cb1-461b-9107-ee02d610b57b" + "b49e8aff-aef3-406b-a388-3e331dec5cd9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1371,22 +1311,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "5d1238f0-5fd2-4813-8b98-a95c43be2bcb" + "786e3738-2a13-47a3-847f-a3fc78f64cf5" ], "x-ms-correlation-request-id": [ - "5d1238f0-5fd2-4813-8b98-a95c43be2bcb" + "786e3738-2a13-47a3-847f-a3fc78f64cf5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161141Z:5d1238f0-5fd2-4813-8b98-a95c43be2bcb" + "JIOINDIACENTRAL:20220512T131526Z:786e3738-2a13-47a3-847f-a3fc78f64cf5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:40 GMT" + "Thu, 12 May 2022 13:15:26 GMT" ], "Content-Length": [ "1478" @@ -1395,26 +1335,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"klpQAJuOUm8=\",\r\n \"_ts\": 1646755877,\r\n \"_self\": \"dbs/klpQAA==/colls/klpQAJuOUm8=/\",\r\n \"_etag\": \"\\\"00006a02-0000-0100-0000-622780250000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"0SR-AMfbyj4=\",\r\n \"_ts\": 1652361304,\r\n \"_self\": \"dbs/0SR-AA==/colls/0SR-AMfbyj4=/\",\r\n \"_etag\": \"\\\"00006717-0000-0100-0000-627d08580000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f1d2ebd-f24c-4503-834f-c608de1f6d27" + "340e4468-bb72-447c-8e9a-b5a90c6276e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1434,50 +1374,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11996" ], "x-ms-request-id": [ - "d5b8fee6-6d8e-4132-8d9d-3d6208ede029" + "f64736e6-e608-4a18-a0e7-8e33eabd706b" ], "x-ms-correlation-request-id": [ - "d5b8fee6-6d8e-4132-8d9d-3d6208ede029" + "f64736e6-e608-4a18-a0e7-8e33eabd706b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161141Z:d5b8fee6-6d8e-4132-8d9d-3d6208ede029" + "JIOINDIACENTRAL:20220512T131529Z:f64736e6-e608-4a18-a0e7-8e33eabd706b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:41 GMT" + "Thu, 12 May 2022 13:15:28 GMT" ], "Content-Length": [ - "1480" + "1478" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"klpQAJuOUm8=\",\r\n \"_ts\": 1646755877,\r\n \"_self\": \"dbs/klpQAA==/colls/klpQAJuOUm8=/\",\r\n \"_etag\": \"\\\"00006a02-0000-0100-0000-622780250000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"0SR-AMfbyj4=\",\r\n \"_ts\": 1652361304,\r\n \"_self\": \"dbs/0SR-AA==/colls/0SR-AMfbyj4=/\",\r\n \"_etag\": \"\\\"00006717-0000-0100-0000-627d08580000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30d1973f-0a7e-4bff-886e-80a7970abc47" + "6347dd52-df07-4848-b02c-dd29d34ff8de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1497,22 +1437,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11988" ], "x-ms-request-id": [ - "8fe7a3d1-f693-4d96-9af4-13adabfe09ce" + "40d35431-79b3-43f4-8563-3d5ca4e7ced8" ], "x-ms-correlation-request-id": [ - "8fe7a3d1-f693-4d96-9af4-13adabfe09ce" + "40d35431-79b3-43f4-8563-3d5ca4e7ced8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161213Z:8fe7a3d1-f693-4d96-9af4-13adabfe09ce" + "JIOINDIACENTRAL:20220512T131603Z:40d35431-79b3-43f4-8563-3d5ca4e7ced8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:12:12 GMT" + "Thu, 12 May 2022 13:16:03 GMT" ], "Content-Length": [ "1478" @@ -1521,23 +1461,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"klpQAJuOUm8=\",\r\n \"_ts\": 1646755877,\r\n \"_self\": \"dbs/klpQAA==/colls/klpQAJuOUm8=/\",\r\n \"_etag\": \"\\\"00006a02-0000-0100-0000-622780250000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"0SR-AMfbyj4=\",\r\n \"_ts\": 1652361304,\r\n \"_self\": \"dbs/0SR-AA==/colls/0SR-AMfbyj4=/\",\r\n \"_etag\": \"\\\"00006717-0000-0100-0000-627d08580000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30d1973f-0a7e-4bff-886e-80a7970abc47" + "6347dd52-df07-4848-b02c-dd29d34ff8de" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1557,50 +1497,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11986" ], "x-ms-request-id": [ - "f656f88f-e8e4-4ff1-af42-a1cb6c5445df" + "f6674b27-27db-406e-8dc5-b654c341fdb0" ], "x-ms-correlation-request-id": [ - "f656f88f-e8e4-4ff1-af42-a1cb6c5445df" + "f6674b27-27db-406e-8dc5-b654c341fdb0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161244Z:f656f88f-e8e4-4ff1-af42-a1cb6c5445df" + "JIOINDIACENTRAL:20220512T131635Z:f6674b27-27db-406e-8dc5-b654c341fdb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:12:44 GMT" + "Thu, 12 May 2022 13:16:34 GMT" ], "Content-Length": [ - "1478" + "1480" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"klpQAJuOUm8=\",\r\n \"_ts\": 1646755877,\r\n \"_self\": \"dbs/klpQAA==/colls/klpQAJuOUm8=/\",\r\n \"_etag\": \"\\\"00006a02-0000-0100-0000-622780250000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"0SR-AMfbyj4=\",\r\n \"_ts\": 1652361304,\r\n \"_self\": \"dbs/0SR-AA==/colls/0SR-AMfbyj4=/\",\r\n \"_etag\": \"\\\"00006717-0000-0100-0000-627d08580000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cb585da-e01b-4b4b-8c5a-476be0d08857" + "6cca3d2b-686b-4841-b80b-d9eb143fb0a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1620,47 +1560,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11993" ], "x-ms-request-id": [ - "cb661af4-790b-4113-b5bb-83601e0a41cd" + "2228b827-2604-41c1-9216-8430f28e3476" ], "x-ms-correlation-request-id": [ - "cb661af4-790b-4113-b5bb-83601e0a41cd" + "2228b827-2604-41c1-9216-8430f28e3476" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161316Z:cb661af4-790b-4113-b5bb-83601e0a41cd" + "JIOINDIACENTRAL:20220512T131709Z:2228b827-2604-41c1-9216-8430f28e3476" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:15 GMT" + "Thu, 12 May 2022 13:17:09 GMT" ], "Content-Length": [ - "1478" + "1480" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"klpQAJuOUm8=\",\r\n \"_ts\": 1646755877,\r\n \"_self\": \"dbs/klpQAA==/colls/klpQAJuOUm8=/\",\r\n \"_etag\": \"\\\"00006a02-0000-0100-0000-622780250000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"0SR-AMfbyj4=\",\r\n \"_ts\": 1652361304,\r\n \"_self\": \"dbs/0SR-AA==/colls/0SR-AMfbyj4=/\",\r\n \"_etag\": \"\\\"00006717-0000-0100-0000-627d08580000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cb585da-e01b-4b4b-8c5a-476be0d08857" + "6cca3d2b-686b-4841-b80b-d9eb143fb0a4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1680,22 +1620,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11991" ], "x-ms-request-id": [ - "c0eb5697-f817-4902-b61f-d45844699d27" + "9465104e-5da2-4a31-993b-2b0732ea95e7" ], "x-ms-correlation-request-id": [ - "c0eb5697-f817-4902-b61f-d45844699d27" + "9465104e-5da2-4a31-993b-2b0732ea95e7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161347Z:c0eb5697-f817-4902-b61f-d45844699d27" + "JIOINDIACENTRAL:20220512T131742Z:9465104e-5da2-4a31-993b-2b0732ea95e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:47 GMT" + "Thu, 12 May 2022 13:17:41 GMT" ], "Content-Length": [ "1480" @@ -1704,26 +1644,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"klpQAJuOUm8=\",\r\n \"_ts\": 1646755877,\r\n \"_self\": \"dbs/klpQAA==/colls/klpQAJuOUm8=/\",\r\n \"_etag\": \"\\\"00006a02-0000-0100-0000-622780250000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"0SR-AMfbyj4=\",\r\n \"_ts\": 1652361304,\r\n \"_self\": \"dbs/0SR-AA==/colls/0SR-AMfbyj4=/\",\r\n \"_etag\": \"\\\"00006717-0000-0100-0000-627d08580000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"Consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\",\r\n \"indexes\": [\r\n {\r\n \"dataType\": \"String\",\r\n \"precision\": -1,\r\n \"kind\": \"Hash\"\r\n },\r\n {\r\n \"dataType\": \"String\",\r\n \"precision\": -1,\r\n \"kind\": \"Hash\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"Ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"Descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"Descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"Ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "209a539e-7cb1-461b-9107-ee02d610b57b" + "b49e8aff-aef3-406b-a388-3e331dec5cd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,13 +1680,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/acadc69c-02fe-497b-8660-c39b45aa4238?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/0ac0411d-57e3-4b99-912b-da405cd3eb48?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/acadc69c-02fe-497b-8660-c39b45aa4238?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0ac0411d-57e3-4b99-912b-da405cd3eb48?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "acadc69c-02fe-497b-8660-c39b45aa4238" + "0ac0411d-57e3-4b99-912b-da405cd3eb48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1758,19 +1698,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "e194c127-8939-4993-99db-70138d73e68c" + "5f9fa92a-72a5-4a65-b6f4-a2e8b9706f21" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161110Z:e194c127-8939-4993-99db-70138d73e68c" + "JIOINDIACENTRAL:20220512T131454Z:5f9fa92a-72a5-4a65-b6f4-a2e8b9706f21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:09 GMT" + "Thu, 12 May 2022 13:14:54 GMT" ], "Content-Length": [ "21" @@ -1783,22 +1723,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "30d1973f-0a7e-4bff-886e-80a7970abc47" + "6347dd52-df07-4848-b02c-dd29d34ff8de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1815,13 +1755,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/e09a30b9-a2b0-4e36-8646-dd21af2226d4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/a24ee4b6-53da-4a98-854d-aad4bdd6f77e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e09a30b9-a2b0-4e36-8646-dd21af2226d4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a24ee4b6-53da-4a98-854d-aad4bdd6f77e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e09a30b9-a2b0-4e36-8646-dd21af2226d4" + "a24ee4b6-53da-4a98-854d-aad4bdd6f77e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1833,19 +1773,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "137a2f74-2fc8-454b-986b-938a223f66fb" + "36f735ce-ebc2-40fc-884b-18e3cf9f477b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161214Z:137a2f74-2fc8-454b-986b-938a223f66fb" + "JIOINDIACENTRAL:20220512T131604Z:36f735ce-ebc2-40fc-884b-18e3cf9f477b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:12:13 GMT" + "Thu, 12 May 2022 13:16:04 GMT" ], "Content-Length": [ "21" @@ -1858,22 +1798,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6cb585da-e01b-4b4b-8c5a-476be0d08857" + "6cca3d2b-686b-4841-b80b-d9eb143fb0a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1890,13 +1830,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/7afdfddb-1570-44c3-99cd-56cb3822fbea?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/9dd3867e-6381-448a-87b1-b4b26d9aebad?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7afdfddb-1570-44c3-99cd-56cb3822fbea?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9dd3867e-6381-448a-87b1-b4b26d9aebad?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "7afdfddb-1570-44c3-99cd-56cb3822fbea" + "9dd3867e-6381-448a-87b1-b4b26d9aebad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1908,19 +1848,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "a760baf9-29f2-4090-922d-047bccd78ade" + "8ab8f235-7ee5-4698-bae6-f7a4d8daaca0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161316Z:a760baf9-29f2-4090-922d-047bccd78ade" + "JIOINDIACENTRAL:20220512T131710Z:8ab8f235-7ee5-4698-bae6-f7a4d8daaca0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:15 GMT" + "Thu, 12 May 2022 13:17:10 GMT" ], "Content-Length": [ "21" @@ -1933,19 +1873,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/acadc69c-02fe-497b-8660-c39b45aa4238?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWNhZGM2OWMtMDJmZS00OTdiLTg2NjAtYzM5YjQ1YWE0MjM4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0ac0411d-57e3-4b99-912b-da405cd3eb48?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGFjMDQxMWQtNTdlMy00Yjk5LTkxMmItZGE0MDVjZDNlYjQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "209a539e-7cb1-461b-9107-ee02d610b57b" + "b49e8aff-aef3-406b-a388-3e331dec5cd9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1965,22 +1905,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "391ec7cd-8089-4fca-9b2c-45c74843882c" + "050f11fd-3e58-429c-bba2-40330e3c00ef" ], "x-ms-correlation-request-id": [ - "391ec7cd-8089-4fca-9b2c-45c74843882c" + "050f11fd-3e58-429c-bba2-40330e3c00ef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161140Z:391ec7cd-8089-4fca-9b2c-45c74843882c" + "JIOINDIACENTRAL:20220512T131525Z:050f11fd-3e58-429c-bba2-40330e3c00ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:11:40 GMT" + "Thu, 12 May 2022 13:15:25 GMT" ], "Content-Length": [ "22" @@ -1993,19 +1933,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f6cd0659-8e53-4957-977a-9cca67f1a97c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjZjZDA2NTktOGU1My00OTU3LTk3N2EtOWNjYTY3ZjFhOTdjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bf54bf2a-1215-4d71-b851-bbdbe8e69d6f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmY1NGJmMmEtMTIxNS00ZDcxLWI4NTEtYmJkYmU4ZTY5ZDZmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57d992ec-4b07-4fcd-a944-a584e15f8392" + "0c30c91f-58c2-4c26-bc13-b27e4be2dcc3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2025,22 +1965,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11986" ], "x-ms-request-id": [ - "9d316fcc-a43a-42d6-aae7-194ede8c69ce" + "67946a87-b801-42f6-b60c-716ecf08f5f9" ], "x-ms-correlation-request-id": [ - "9d316fcc-a43a-42d6-aae7-194ede8c69ce" + "67946a87-b801-42f6-b60c-716ecf08f5f9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161212Z:9d316fcc-a43a-42d6-aae7-194ede8c69ce" + "JIOINDIACENTRAL:20220512T131601Z:67946a87-b801-42f6-b60c-716ecf08f5f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:12:11 GMT" + "Thu, 12 May 2022 13:16:01 GMT" ], "Content-Length": [ "22" @@ -2053,19 +1993,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e09a30b9-a2b0-4e36-8646-dd21af2226d4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTA5YTMwYjktYTJiMC00ZTM2LTg2NDYtZGQyMWFmMjIyNmQ0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a24ee4b6-53da-4a98-854d-aad4bdd6f77e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTI0ZWU0YjYtNTNkYS00YTk4LTg1NGQtYWFkNGJkZDZmNzdlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30d1973f-0a7e-4bff-886e-80a7970abc47" + "6347dd52-df07-4848-b02c-dd29d34ff8de" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2085,22 +2025,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11987" ], "x-ms-request-id": [ - "895e96ae-1cb6-4304-80b6-da4be21461e2" + "14db87e4-cff3-4036-a15f-d62c5c59e10b" ], "x-ms-correlation-request-id": [ - "895e96ae-1cb6-4304-80b6-da4be21461e2" + "14db87e4-cff3-4036-a15f-d62c5c59e10b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161244Z:895e96ae-1cb6-4304-80b6-da4be21461e2" + "JIOINDIACENTRAL:20220512T131634Z:14db87e4-cff3-4036-a15f-d62c5c59e10b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:12:44 GMT" + "Thu, 12 May 2022 13:16:34 GMT" ], "Content-Length": [ "22" @@ -2113,19 +2053,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b45837d2-81d5-4cbe-b90c-41075499b080?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjQ1ODM3ZDItODFkNS00Y2JlLWI5MGMtNDEwNzU0OTliMDgwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3099752e-2d55-423b-a2c1-2c1e199d8565?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzA5OTc1MmUtMmQ1NS00MjNiLWEyYzEtMmMxZTE5OWQ4NTY1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28b63e82-07f6-4a8c-aef8-ca49d54e5a7a" + "3bce0762-8c73-4695-86a1-2975e0acae17" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2145,22 +2085,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11981" ], "x-ms-request-id": [ - "f56a18a7-8d8f-4d0a-905b-c921bb0306ba" + "99703501-0387-4526-938b-10e4aba78768" ], "x-ms-correlation-request-id": [ - "f56a18a7-8d8f-4d0a-905b-c921bb0306ba" + "99703501-0387-4526-938b-10e4aba78768" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161315Z:f56a18a7-8d8f-4d0a-905b-c921bb0306ba" + "JIOINDIACENTRAL:20220512T131707Z:99703501-0387-4526-938b-10e4aba78768" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:14 GMT" + "Thu, 12 May 2022 13:17:07 GMT" ], "Content-Length": [ "22" @@ -2173,19 +2113,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7afdfddb-1570-44c3-99cd-56cb3822fbea?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2FmZGZkZGItMTU3MC00NGMzLTk5Y2QtNTZjYjM4MjJmYmVhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9dd3867e-6381-448a-87b1-b4b26d9aebad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWRkMzg2N2UtNjM4MS00NDhhLTg3YjEtYjRiMjZkOWFlYmFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cb585da-e01b-4b4b-8c5a-476be0d08857" + "6cca3d2b-686b-4841-b80b-d9eb143fb0a4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2205,22 +2145,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11992" ], "x-ms-request-id": [ - "76f2ce11-112a-4e25-aed5-c508da0e7328" + "eeae461d-5bbe-42db-b875-97cae129cc62" ], "x-ms-correlation-request-id": [ - "76f2ce11-112a-4e25-aed5-c508da0e7328" + "eeae461d-5bbe-42db-b875-97cae129cc62" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161346Z:76f2ce11-112a-4e25-aed5-c508da0e7328" + "JIOINDIACENTRAL:20220512T131741Z:eeae461d-5bbe-42db-b875-97cae129cc62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:46 GMT" + "Thu, 12 May 2022 13:17:40 GMT" ], "Content-Length": [ "22" @@ -2233,22 +2173,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64319db0-22c7-49ea-8e1a-869f87dbe8e8" + "af923b2e-2e95-49c1-974c-feac12cc7db5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2268,22 +2208,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11998" ], "x-ms-request-id": [ - "610dd030-8c64-42f7-a77a-37dd1db49bb4" + "255ef327-bfc8-4593-b765-725cc669b0e3" ], "x-ms-correlation-request-id": [ - "610dd030-8c64-42f7-a77a-37dd1db49bb4" + "255ef327-bfc8-4593-b765-725cc669b0e3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161347Z:610dd030-8c64-42f7-a77a-37dd1db49bb4" + "CENTRALINDIA:20220512T131744Z:255ef327-bfc8-4593-b765-725cc669b0e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:47 GMT" + "Thu, 12 May 2022 13:17:44 GMT" ], "Content-Length": [ "1377" @@ -2292,26 +2232,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"klpQAJuOUm8=\",\r\n \"_ts\": 1646755877,\r\n \"_self\": \"dbs/klpQAA==/colls/klpQAJuOUm8=/\",\r\n \"_etag\": \"\\\"00006a02-0000-0100-0000-622780250000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"0SR-AMfbyj4=\",\r\n \"_ts\": 1652361304,\r\n \"_self\": \"dbs/0SR-AA==/colls/0SR-AMfbyj4=/\",\r\n \"_etag\": \"\\\"00006717-0000-0100-0000-627d08580000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "470a087b-3120-4467-83d9-0b950096c26d" + "3b3c7875-b9c6-4fc4-9ff0-9bb19e559986" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2331,22 +2271,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11995" ], "x-ms-request-id": [ - "e04cd244-1f13-4936-a3de-3d501b24c148" + "93bb3d6e-8e0c-4221-84bb-d1826363b52a" ], "x-ms-correlation-request-id": [ - "e04cd244-1f13-4936-a3de-3d501b24c148" + "93bb3d6e-8e0c-4221-84bb-d1826363b52a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161347Z:e04cd244-1f13-4936-a3de-3d501b24c148" + "CENTRALINDIA:20220512T131745Z:93bb3d6e-8e0c-4221-84bb-d1826363b52a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:47 GMT" + "Thu, 12 May 2022 13:17:45 GMT" ], "Content-Length": [ "469" @@ -2355,26 +2295,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"klpQAA==\",\r\n \"_self\": \"dbs/klpQAA==/\",\r\n \"_etag\": \"\\\"00006802-0000-0100-0000-622780030000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646755843\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"0SR-AA==\",\r\n \"_self\": \"dbs/0SR-AA==/\",\r\n \"_etag\": \"\\\"00005f17-0000-0100-0000-627d08310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652361265\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2dadefd-f6da-4495-b265-bdfae4d4dbe1" + "df10e034-5fbd-4469-a688-757dd29a6877" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2385,13 +2325,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/64cba9b5-1b51-46ba-8c83-46680e2640de?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/5f045b8e-ac1d-4878-a022-7aeb6f923314?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/64cba9b5-1b51-46ba-8c83-46680e2640de?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5f045b8e-ac1d-4878-a022-7aeb6f923314?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "64cba9b5-1b51-46ba-8c83-46680e2640de" + "5f045b8e-ac1d-4878-a022-7aeb6f923314" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2406,16 +2346,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "23757a00-acb3-4633-b4fe-61b3f632797f" + "abc09f61-dbe8-4b30-9bfa-c547accdd94f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161348Z:23757a00-acb3-4633-b4fe-61b3f632797f" + "CENTRALINDIA:20220512T131749Z:abc09f61-dbe8-4b30-9bfa-c547accdd94f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:13:48 GMT" + "Thu, 12 May 2022 13:17:49 GMT" ], "Content-Length": [ "21" @@ -2428,22 +2368,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "050e9776-7482-43bb-b5c7-0234744dc9d7" + "b1b18003-1245-465b-8421-ab7c5bd144ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2454,13 +2394,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/1a34c80e-6337-4247-9dd2-3e43f503fb9f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/d02e54aa-a2e2-4f97-b497-3fed3239c129?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1a34c80e-6337-4247-9dd2-3e43f503fb9f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d02e54aa-a2e2-4f97-b497-3fed3239c129?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1a34c80e-6337-4247-9dd2-3e43f503fb9f" + "d02e54aa-a2e2-4f97-b497-3fed3239c129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2475,16 +2415,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "5c7b7594-9500-4301-817b-1a33cb2cb932" + "d5139fd7-dd16-4ab1-966c-13cc1f4a2623" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161453Z:5c7b7594-9500-4301-817b-1a33cb2cb932" + "JIOINDIACENTRAL:20220512T131856Z:d5139fd7-dd16-4ab1-966c-13cc1f4a2623" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:14:52 GMT" + "Thu, 12 May 2022 13:18:56 GMT" ], "Content-Length": [ "21" @@ -2497,19 +2437,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/64cba9b5-1b51-46ba-8c83-46680e2640de?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjRjYmE5YjUtMWI1MS00NmJhLThjODMtNDY2ODBlMjY0MGRlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5f045b8e-ac1d-4878-a022-7aeb6f923314?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWYwNDViOGUtYWMxZC00ODc4LWEwMjItN2FlYjZmOTIzMzE0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2dadefd-f6da-4495-b265-bdfae4d4dbe1" + "df10e034-5fbd-4469-a688-757dd29a6877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2529,22 +2469,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11997" ], "x-ms-request-id": [ - "633acae5-ec1e-4466-b137-0e62047956b9" + "cfa54012-1c9d-4a29-929a-fb24c7d93595" ], "x-ms-correlation-request-id": [ - "633acae5-ec1e-4466-b137-0e62047956b9" + "cfa54012-1c9d-4a29-929a-fb24c7d93595" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161418Z:633acae5-ec1e-4466-b137-0e62047956b9" + "CENTRALINDIA:20220512T131819Z:cfa54012-1c9d-4a29-929a-fb24c7d93595" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:14:17 GMT" + "Thu, 12 May 2022 13:18:19 GMT" ], "Content-Length": [ "22" @@ -2557,19 +2497,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/64cba9b5-1b51-46ba-8c83-46680e2640de?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvNjRjYmE5YjUtMWI1MS00NmJhLThjODMtNDY2ODBlMjY0MGRlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/5f045b8e-ac1d-4878-a022-7aeb6f923314?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvNWYwNDViOGUtYWMxZC00ODc4LWEwMjItN2FlYjZmOTIzMzE0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2dadefd-f6da-4495-b265-bdfae4d4dbe1" + "df10e034-5fbd-4469-a688-757dd29a6877" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2589,22 +2529,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11996" ], "x-ms-request-id": [ - "b54e6d87-9879-47f9-b531-7032c4e92073" + "4a3f17f9-fd27-47f2-af0c-e9803e88c0f3" ], "x-ms-correlation-request-id": [ - "b54e6d87-9879-47f9-b531-7032c4e92073" + "4a3f17f9-fd27-47f2-af0c-e9803e88c0f3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161418Z:b54e6d87-9879-47f9-b531-7032c4e92073" + "CENTRALINDIA:20220512T131820Z:4a3f17f9-fd27-47f2-af0c-e9803e88c0f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:14:18 GMT" + "Thu, 12 May 2022 13:18:19 GMT" ], "Content-Type": [ "application/json" @@ -2614,22 +2554,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aee4cb4c-de21-45d5-9309-3bebdb4d95b6" + "5aab574e-59cd-49c5-8205-92ebaf623295" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2640,13 +2580,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/fd7996cc-90d5-4d8e-8bfa-e068acdf61e4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/316c6812-df62-4f04-b725-39569af72853?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fd7996cc-90d5-4d8e-8bfa-e068acdf61e4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/316c6812-df62-4f04-b725-39569af72853?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "fd7996cc-90d5-4d8e-8bfa-e068acdf61e4" + "316c6812-df62-4f04-b725-39569af72853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2661,16 +2601,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "2c9aa906-b73d-4ed6-b635-f0ce73415243" + "2ade77a2-184c-4092-a71a-3362d791d4ce" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161421Z:2c9aa906-b73d-4ed6-b635-f0ce73415243" + "CENTRALINDIA:20220512T131823Z:2ade77a2-184c-4092-a71a-3362d791d4ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:14:20 GMT" + "Thu, 12 May 2022 13:18:23 GMT" ], "Content-Length": [ "21" @@ -2683,22 +2623,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cc370e1-202a-4ce5-a84a-bc06d976c879" + "84bfc5d4-306c-43e0-b815-42a3b4f827fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2709,13 +2649,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/56d70195-6e81-4e99-9210-b9d89bc4a605?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/5d3711bf-6d4f-46b8-ae26-678e363522a4?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/56d70195-6e81-4e99-9210-b9d89bc4a605?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5d3711bf-6d4f-46b8-ae26-678e363522a4?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "56d70195-6e81-4e99-9210-b9d89bc4a605" + "5d3711bf-6d4f-46b8-ae26-678e363522a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2727,19 +2667,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "e6399c32-fca3-4dad-b264-234768e2f7c5" + "38a53435-277a-4df5-954b-f3534fb74cff" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161524Z:e6399c32-fca3-4dad-b264-234768e2f7c5" + "JIOINDIACENTRAL:20220512T131930Z:38a53435-277a-4df5-954b-f3534fb74cff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:15:24 GMT" + "Thu, 12 May 2022 13:19:29 GMT" ], "Content-Length": [ "21" @@ -2752,19 +2692,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fd7996cc-90d5-4d8e-8bfa-e068acdf61e4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmQ3OTk2Y2MtOTBkNS00ZDhlLThiZmEtZTA2OGFjZGY2MWU0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/316c6812-df62-4f04-b725-39569af72853?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzE2YzY4MTItZGY2Mi00ZjA0LWI3MjUtMzk1NjlhZjcyODUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aee4cb4c-de21-45d5-9309-3bebdb4d95b6" + "5aab574e-59cd-49c5-8205-92ebaf623295" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2787,19 +2727,19 @@ "11999" ], "x-ms-request-id": [ - "8f801aa7-2da8-4b6e-908b-39b01543446a" + "b17f278c-4058-438f-b6bb-f5b05f16ebd8" ], "x-ms-correlation-request-id": [ - "8f801aa7-2da8-4b6e-908b-39b01543446a" + "b17f278c-4058-438f-b6bb-f5b05f16ebd8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161451Z:8f801aa7-2da8-4b6e-908b-39b01543446a" + "CENTRALINDIA:20220512T131854Z:b17f278c-4058-438f-b6bb-f5b05f16ebd8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:14:51 GMT" + "Thu, 12 May 2022 13:18:54 GMT" ], "Content-Length": [ "22" @@ -2812,19 +2752,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/fd7996cc-90d5-4d8e-8bfa-e068acdf61e4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzL2ZkNzk5NmNjLTkwZDUtNGQ4ZS04YmZhLWUwNjhhY2RmNjFlND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/316c6812-df62-4f04-b725-39569af72853?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzMxNmM2ODEyLWRmNjItNGYwNC1iNzI1LTM5NTY5YWY3Mjg1Mz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aee4cb4c-de21-45d5-9309-3bebdb4d95b6" + "5aab574e-59cd-49c5-8205-92ebaf623295" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2847,19 +2787,19 @@ "11998" ], "x-ms-request-id": [ - "96d7d805-a9f1-44c7-bd4d-ec1a61d38675" + "7b17b83d-26d3-4e95-b4c1-d21a9ce53553" ], "x-ms-correlation-request-id": [ - "96d7d805-a9f1-44c7-bd4d-ec1a61d38675" + "7b17b83d-26d3-4e95-b4c1-d21a9ce53553" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161451Z:96d7d805-a9f1-44c7-bd4d-ec1a61d38675" + "CENTRALINDIA:20220512T131854Z:7b17b83d-26d3-4e95-b4c1-d21a9ce53553" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:14:51 GMT" + "Thu, 12 May 2022 13:18:54 GMT" ], "Content-Type": [ "application/json" @@ -2869,19 +2809,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1a34c80e-6337-4247-9dd2-3e43f503fb9f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWEzNGM4MGUtNjMzNy00MjQ3LTlkZDItM2U0M2Y1MDNmYjlmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d02e54aa-a2e2-4f97-b497-3fed3239c129?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDAyZTU0YWEtYTJlMi00Zjk3LWI0OTctM2ZlZDMyMzljMTI5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "050e9776-7482-43bb-b5c7-0234744dc9d7" + "b1b18003-1245-465b-8421-ab7c5bd144ca" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2901,22 +2841,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11984" ], "x-ms-request-id": [ - "63022da0-62f2-4cf3-bd81-2aac96475c72" + "8fd0cf58-17d0-49f8-a4fe-18a73fa4ab0c" ], "x-ms-correlation-request-id": [ - "63022da0-62f2-4cf3-bd81-2aac96475c72" + "8fd0cf58-17d0-49f8-a4fe-18a73fa4ab0c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161523Z:63022da0-62f2-4cf3-bd81-2aac96475c72" + "JIOINDIACENTRAL:20220512T131926Z:8fd0cf58-17d0-49f8-a4fe-18a73fa4ab0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:15:22 GMT" + "Thu, 12 May 2022 13:19:26 GMT" ], "Content-Length": [ "22" @@ -2929,19 +2869,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/1a34c80e-6337-4247-9dd2-3e43f503fb9f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvMWEzNGM4MGUtNjMzNy00MjQ3LTlkZDItM2U0M2Y1MDNmYjlmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/graphs/graph1/operationResults/d02e54aa-a2e2-4f97-b497-3fed3239c129?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvZDAyZTU0YWEtYTJlMi00Zjk3LWI0OTctM2ZlZDMyMzljMTI5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "050e9776-7482-43bb-b5c7-0234744dc9d7" + "b1b18003-1245-465b-8421-ab7c5bd144ca" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2961,22 +2901,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11983" ], "x-ms-request-id": [ - "fc34bc82-22d8-41d0-a1b5-054043dbc1f9" + "93397218-8b73-4a07-ad26-d7d35507a2ad" ], "x-ms-correlation-request-id": [ - "fc34bc82-22d8-41d0-a1b5-054043dbc1f9" + "93397218-8b73-4a07-ad26-d7d35507a2ad" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161523Z:fc34bc82-22d8-41d0-a1b5-054043dbc1f9" + "JIOINDIACENTRAL:20220512T131927Z:93397218-8b73-4a07-ad26-d7d35507a2ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:15:22 GMT" + "Thu, 12 May 2022 13:19:26 GMT" ], "Content-Type": [ "application/json" @@ -2986,19 +2926,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/56d70195-6e81-4e99-9210-b9d89bc4a605?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTZkNzAxOTUtNmU4MS00ZTk5LTkyMTAtYjlkODliYzRhNjA1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5d3711bf-6d4f-46b8-ae26-678e363522a4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWQzNzExYmYtNmQ0Zi00NmI4LWFlMjYtNjc4ZTM2MzUyMmE0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cc370e1-202a-4ce5-a84a-bc06d976c879" + "84bfc5d4-306c-43e0-b815-42a3b4f827fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3018,22 +2958,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "6d9beb9b-c934-40a6-94e7-637aa64fff98" + "ff3d7041-7ae4-4127-a837-20eff05696e3" ], "x-ms-correlation-request-id": [ - "6d9beb9b-c934-40a6-94e7-637aa64fff98" + "ff3d7041-7ae4-4127-a837-20eff05696e3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161555Z:6d9beb9b-c934-40a6-94e7-637aa64fff98" + "JIOINDIACENTRAL:20220512T132000Z:ff3d7041-7ae4-4127-a837-20eff05696e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:15:54 GMT" + "Thu, 12 May 2022 13:20:00 GMT" ], "Content-Length": [ "22" @@ -3046,19 +2986,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/56d70195-6e81-4e99-9210-b9d89bc4a605?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzU2ZDcwMTk1LTZlODEtNGU5OS05MjEwLWI5ZDg5YmM0YTYwNT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup52/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1052/gremlinDatabases/dbName4/operationResults/5d3711bf-6d4f-46b8-ae26-678e363522a4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzVkMzcxMWJmLTZkNGYtNDZiOC1hZTI2LTY3OGUzNjM1MjJhND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cc370e1-202a-4ce5-a84a-bc06d976c879" + "84bfc5d4-306c-43e0-b815-42a3b4f827fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3078,22 +3018,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "06c47e79-880c-4c6e-a545-cd09e56ce735" + "318f6cab-7e3d-4fff-9f34-df0d71511ae3" ], "x-ms-correlation-request-id": [ - "06c47e79-880c-4c6e-a545-cd09e56ce735" + "318f6cab-7e3d-4fff-9f34-df0d71511ae3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161555Z:06c47e79-880c-4c6e-a545-cd09e56ce735" + "JIOINDIACENTRAL:20220512T132002Z:318f6cab-7e3d-4fff-9f34-df0d71511ae3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:15:54 GMT" + "Thu, 12 May 2022 13:20:02 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinThroughputCmdlets.json index 09c1fd2db706..cf78a8fa4200 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6a62f44c-99d1-4c4e-8a6a-271c3cb9b71c" + "516c32be-9022-4e5c-9279-cc7a5c0b0bd2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "92260e1b-86aa-47ee-a631-5267ac9059e6" + "46416439-354e-46d0-900f-4ce4d5ae2c97" ], "x-ms-correlation-request-id": [ - "92260e1b-86aa-47ee-a631-5267ac9059e6" + "46416439-354e-46d0-900f-4ce4d5ae2c97" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155618Z:92260e1b-86aa-47ee-a631-5267ac9059e6" + "JIOINDIACENTRAL:20220512T130024Z:46416439-354e-46d0-900f-4ce4d5ae2c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:56:17 GMT" + "Thu, 12 May 2022 13:00:23 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" + "55fc1d6a-a0e3-4108-9a22-705213e21075" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "4b6f479a-7822-487f-a925-96e1ea284c9b" + "4220b8a0-3d9d-426c-9970-fd9ee7dd4513" ], "x-ms-correlation-request-id": [ - "4b6f479a-7822-487f-a925-96e1ea284c9b" + "4220b8a0-3d9d-426c-9970-fd9ee7dd4513" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155619Z:4b6f479a-7822-487f-a925-96e1ea284c9b" + "JIOINDIACENTRAL:20220512T130026Z:4220b8a0-3d9d-426c-9970-fd9ee7dd4513" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:56:19 GMT" + "Thu, 12 May 2022 13:00:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" + "55fc1d6a-a0e3-4108-9a22-705213e21075" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11989" ], "x-ms-request-id": [ - "6285475f-73c4-4629-ac53-4f40370a00f5" + "a070ada4-3971-4900-9d3b-105921879ff9" ], "x-ms-correlation-request-id": [ - "6285475f-73c4-4629-ac53-4f40370a00f5" + "a070ada4-3971-4900-9d3b-105921879ff9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155930Z:6285475f-73c4-4629-ac53-4f40370a00f5" + "JIOINDIACENTRAL:20220512T130311Z:a070ada4-3971-4900-9d3b-105921879ff9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:59:29 GMT" + "Thu, 12 May 2022 13:03:11 GMT" ], "Content-Length": [ - "2443" + "2444" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:58:54.396679Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1053.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1053.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ab5f7d21-697a-4287-97a1-fd53ecab39fe\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:02:50.2932065Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1053.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1053.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f9eeea1b-f974-4440-8701-30e6aea5d5a4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7ccfc15-b950-44da-9b8d-9f01ceaa7ee2" + "74314e48-751d-454d-9fb3-c3898a6d62cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,50 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11989" ], "x-ms-request-id": [ - "e314f159-b540-4b12-b22e-efda69c0e18a" + "057546ad-993f-43d9-ad28-8e9dfd9ff967" ], "x-ms-correlation-request-id": [ - "e314f159-b540-4b12-b22e-efda69c0e18a" + "057546ad-993f-43d9-ad28-8e9dfd9ff967" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160105Z:e314f159-b540-4b12-b22e-efda69c0e18a" + "JIOINDIACENTRAL:20220512T130454Z:057546ad-993f-43d9-ad28-8e9dfd9ff967" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:01:04 GMT" + "Thu, 12 May 2022 13:04:54 GMT" ], "Content-Length": [ - "2443" + "2444" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:58:54.396679Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1053.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1053.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ab5f7d21-697a-4287-97a1-fd53ecab39fe\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:02:50.2932065Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1053.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1053.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f9eeea1b-f974-4440-8701-30e6aea5d5a4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1053-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" + "55fc1d6a-a0e3-4108-9a22-705213e21075" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/operationResults/ae267774-bd56-4c50-885d-d27e7f031ed9?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/operationResults/9ce5b429-72b3-4dc6-9755-9252ddbdc3d8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ae267774-bd56-4c50-885d-d27e7f031ed9" + "9ce5b429-72b3-4dc6-9755-9252ddbdc3d8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae267774-bd56-4c50-885d-d27e7f031ed9?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ce5b429-72b3-4dc6-9755-9252ddbdc3d8?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,101 +303,41 @@ "1198" ], "x-ms-correlation-request-id": [ - "f2f97bd1-f1e5-4801-8bf8-bd25c67f0447" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155628Z:f2f97bd1-f1e5-4801-8bf8-bd25c67f0447" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 15:56:28 GMT" - ], - "Content-Length": [ - "2056" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:56:25.7991133Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"ab5f7d21-697a-4287-97a1-fd53ecab39fe\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae267774-bd56-4c50-885d-d27e7f031ed9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWUyNjc3NzQtYmQ1Ni00YzUwLTg4NWQtZDI3ZTdmMDMxZWQ5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "b14abc28-36f2-4c3e-ac60-c262812080a9" - ], - "x-ms-correlation-request-id": [ - "b14abc28-36f2-4c3e-ac60-c262812080a9" + "12b7aea5-06d5-431c-9a17-90944988166b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155658Z:b14abc28-36f2-4c3e-ac60-c262812080a9" + "JIOINDIACENTRAL:20220512T130038Z:12b7aea5-06d5-431c-9a17-90944988166b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:56:58 GMT" + "Thu, 12 May 2022 13:00:38 GMT" ], "Content-Length": [ - "21" + "2055" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053\",\r\n \"name\": \"gremlin-db1053\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:00:35.307146Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f9eeea1b-f974-4440-8701-30e6aea5d5a4\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1053-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae267774-bd56-4c50-885d-d27e7f031ed9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWUyNjc3NzQtYmQ1Ni00YzUwLTg4NWQtZDI3ZTdmMDMxZWQ5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ce5b429-72b3-4dc6-9755-9252ddbdc3d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWNlNWI0MjktNzJiMy00ZGM2LTk3NTUtOTI1MmRkYmRjM2Q4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" + "55fc1d6a-a0e3-4108-9a22-705213e21075" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "7714e79c-d119-4120-863f-f4a52e8a7aec" + "24688935-6a01-4d9e-914b-8b0b987447ac" ], "x-ms-correlation-request-id": [ - "7714e79c-d119-4120-863f-f4a52e8a7aec" + "24688935-6a01-4d9e-914b-8b0b987447ac" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155728Z:7714e79c-d119-4120-863f-f4a52e8a7aec" + "JIOINDIACENTRAL:20220512T130109Z:24688935-6a01-4d9e-914b-8b0b987447ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:57:28 GMT" + "Thu, 12 May 2022 13:01:09 GMT" ], "Content-Length": [ "21" @@ -445,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae267774-bd56-4c50-885d-d27e7f031ed9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWUyNjc3NzQtYmQ1Ni00YzUwLTg4NWQtZDI3ZTdmMDMxZWQ5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ce5b429-72b3-4dc6-9755-9252ddbdc3d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWNlNWI0MjktNzJiMy00ZGM2LTk3NTUtOTI1MmRkYmRjM2Q4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" + "55fc1d6a-a0e3-4108-9a22-705213e21075" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "92dcc9dc-2671-42dd-a73f-82a93d8b8789" + "5222b45f-3a4d-44ac-a705-7fa10cd65a2c" ], "x-ms-correlation-request-id": [ - "92dcc9dc-2671-42dd-a73f-82a93d8b8789" + "5222b45f-3a4d-44ac-a705-7fa10cd65a2c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155759Z:92dcc9dc-2671-42dd-a73f-82a93d8b8789" + "JIOINDIACENTRAL:20220512T130140Z:5222b45f-3a4d-44ac-a705-7fa10cd65a2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:57:58 GMT" + "Thu, 12 May 2022 13:01:39 GMT" ], "Content-Length": [ "21" @@ -505,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae267774-bd56-4c50-885d-d27e7f031ed9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWUyNjc3NzQtYmQ1Ni00YzUwLTg4NWQtZDI3ZTdmMDMxZWQ5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ce5b429-72b3-4dc6-9755-9252ddbdc3d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWNlNWI0MjktNzJiMy00ZGM2LTk3NTUtOTI1MmRkYmRjM2Q4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" + "55fc1d6a-a0e3-4108-9a22-705213e21075" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-request-id": [ - "2599ec99-c037-42a0-9171-4d346be65d06" + "110953ec-a842-4700-9c6c-4d9cd58c0b25" ], "x-ms-correlation-request-id": [ - "2599ec99-c037-42a0-9171-4d346be65d06" + "110953ec-a842-4700-9c6c-4d9cd58c0b25" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155829Z:2599ec99-c037-42a0-9171-4d346be65d06" + "JIOINDIACENTRAL:20220512T130210Z:110953ec-a842-4700-9c6c-4d9cd58c0b25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:58:29 GMT" + "Thu, 12 May 2022 13:02:09 GMT" ], "Content-Length": [ "21" @@ -565,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae267774-bd56-4c50-885d-d27e7f031ed9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWUyNjc3NzQtYmQ1Ni00YzUwLTg4NWQtZDI3ZTdmMDMxZWQ5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ce5b429-72b3-4dc6-9755-9252ddbdc3d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWNlNWI0MjktNzJiMy00ZGM2LTk3NTUtOTI1MmRkYmRjM2Q4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" + "55fc1d6a-a0e3-4108-9a22-705213e21075" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-request-id": [ - "afcd842f-adab-4e42-8b29-5504b3623c20" + "868fb14a-23d0-4971-8c4b-45f5dffe783e" ], "x-ms-correlation-request-id": [ - "afcd842f-adab-4e42-8b29-5504b3623c20" + "868fb14a-23d0-4971-8c4b-45f5dffe783e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155859Z:afcd842f-adab-4e42-8b29-5504b3623c20" + "JIOINDIACENTRAL:20220512T130240Z:868fb14a-23d0-4971-8c4b-45f5dffe783e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:58:59 GMT" + "Thu, 12 May 2022 13:02:39 GMT" ], "Content-Length": [ "21" @@ -625,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae267774-bd56-4c50-885d-d27e7f031ed9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWUyNjc3NzQtYmQ1Ni00YzUwLTg4NWQtZDI3ZTdmMDMxZWQ5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ce5b429-72b3-4dc6-9755-9252ddbdc3d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWNlNWI0MjktNzJiMy00ZGM2LTk3NTUtOTI1MmRkYmRjM2Q4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6dd62ed-64ec-4d3f-9859-b88d9c45b8a3" + "55fc1d6a-a0e3-4108-9a22-705213e21075" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11990" ], "x-ms-request-id": [ - "25fcb1f1-f428-4175-b9f1-2243f69546b7" + "66df28b3-7355-4791-b977-05d404bccca9" ], "x-ms-correlation-request-id": [ - "25fcb1f1-f428-4175-b9f1-2243f69546b7" + "66df28b3-7355-4791-b977-05d404bccca9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155929Z:25fcb1f1-f428-4175-b9f1-2243f69546b7" + "JIOINDIACENTRAL:20220512T130310Z:66df28b3-7355-4791-b977-05d404bccca9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:59:29 GMT" + "Thu, 12 May 2022 13:03:10 GMT" ], "Content-Length": [ "22" @@ -685,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a94b704b-895e-4559-b61b-2c381d6d73c5" + "4f343ee9-bd2e-42eb-95ab-517a22386688" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,47 +660,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11995" ], "x-ms-request-id": [ - "f8f1176c-6980-4111-b2f1-ea6aa0977a04" + "800d696d-5bac-4daa-b006-adf5eced682f" ], "x-ms-correlation-request-id": [ - "f8f1176c-6980-4111-b2f1-ea6aa0977a04" + "800d696d-5bac-4daa-b006-adf5eced682f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155930Z:f8f1176c-6980-4111-b2f1-ea6aa0977a04" + "CENTRALINDIA:20220512T130312Z:800d696d-5bac-4daa-b006-adf5eced682f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:59:30 GMT" + "Thu, 12 May 2022 13:03:12 GMT" ], "Content-Length": [ - "5573" + "6291" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: a94b704b-895e-4559-b61b-2c381d6d73c5, Request URI: /apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/ff90b8f5-46ed-4a5a-9a41-bd76f16e177d/partitions/95821430-20f7-4ff7-805b-43407a0dd199/replicas/132857601054937868s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T15:59:30.5236184Z, RequestEndTime: 2022-03-08T15:59:30.5236184Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:58:24.5635510Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.902,\\\\\\\"memory\\\\\\\":626613004.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0065,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:58:34.5735694Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.562,\\\\\\\"memory\\\\\\\":626077312.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:58:44.5835894Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.788,\\\\\\\"memory\\\\\\\":625791164.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0133,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:58:54.5935711Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.956,\\\\\\\"memory\\\\\\\":625268816.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.02,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:59:14.6036048Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.838,\\\\\\\"memory\\\\\\\":624377352.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.01,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:59:24.6136132Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.700,\\\\\\\"memory\\\\\\\":624043412.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0135,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T15:59:30.5236184Z; ResponseTime: 2022-03-08T15:59:30.5236184Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/ff90b8f5-46ed-4a5a-9a41-bd76f16e177d/partitions/95821430-20f7-4ff7-805b-43407a0dd199/replicas/132857601054937868s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.997, ActivityId: a94b704b-895e-4559-b61b-2c381d6d73c5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5236184Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0067},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5236251Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.009},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5236341Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.086},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5237201Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2836},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5250037Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1553},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5251590Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T15:59:30.5236184Z; ResponseTime: 2022-03-08T15:59:30.5236184Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/ff90b8f5-46ed-4a5a-9a41-bd76f16e177d/partitions/95821430-20f7-4ff7-805b-43407a0dd199/replicas/132892539436929946s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.027, ActivityId: a94b704b-895e-4559-b61b-2c381d6d73c5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5236184Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5236211Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5236222Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0516},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5236738Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3138},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5249876Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0964},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:59:30.5250840Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 4f343ee9-bd2e-42eb-95ab-517a22386688, Request URI: /apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/994cae6b-e523-4a4f-ad87-3d0eca32ccc1/partitions/1becab88-b072-423b-b472-cdf61e48f3cb/replicas/132968319047047278s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T13:03:12.8394705Z, RequestEndTime: 2022-05-12T13:03:12.8394705Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:02:15.8297029Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.422,\\\\\\\"memory\\\\\\\":655488772.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0141,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:02:25.8396667Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.144,\\\\\\\"memory\\\\\\\":655241392.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0209,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:02:35.8596069Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.954,\\\\\\\"memory\\\\\\\":655395292.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0159,\\\\\\\"availableThreads\\\\\\\":32752,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:02:45.8695750Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.011,\\\\\\\"memory\\\\\\\":655476388.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0131,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:02:55.8795521Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.481,\\\\\\\"memory\\\\\\\":655467488.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0147,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:03:05.8895019Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.531,\\\\\\\"memory\\\\\\\":655243408.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0119,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T13:03:12.8394705Z; ResponseTime: 2022-05-12T13:03:12.8394705Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/994cae6b-e523-4a4f-ad87-3d0eca32ccc1/partitions/1becab88-b072-423b-b472-cdf61e48f3cb/replicas/132968319047047278s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.623, ActivityId: 4f343ee9-bd2e-42eb-95ab-517a22386688, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8394705Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0067},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8394772Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0018},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8394790Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1754},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8396544Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7711},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8404255Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0629},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8404884Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:03:12.7994708Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:03:12.7994708Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:03:12.7994708Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":462,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T13:03:12.8394705Z; ResponseTime: 2022-05-12T13:03:12.8394705Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11300/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/994cae6b-e523-4a4f-ad87-3d0eca32ccc1/partitions/1becab88-b072-423b-b472-cdf61e48f3cb/replicas/132968319047047277s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.704, ActivityId: 4f343ee9-bd2e-42eb-95ab-517a22386688, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8394705Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8394733Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.001},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8394743Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0607},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8395350Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9846},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8405196Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0517},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:03:12.8405713Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:03:12.7994708Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:03:12.7994708Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:03:12.7994708Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":462,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a94b704b-895e-4559-b61b-2c381d6d73c5" + "4f343ee9-bd2e-42eb-95ab-517a22386688" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11993" ], "x-ms-request-id": [ - "71fa33fd-473f-4b5f-9c12-f5cadf615e7d" + "3cc328a6-2628-412f-8c5e-e9f636488378" ], "x-ms-correlation-request-id": [ - "71fa33fd-473f-4b5f-9c12-f5cadf615e7d" + "3cc328a6-2628-412f-8c5e-e9f636488378" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160001Z:71fa33fd-473f-4b5f-9c12-f5cadf615e7d" + "CENTRALINDIA:20220512T130344Z:3cc328a6-2628-412f-8c5e-e9f636488378" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:00:00 GMT" + "Thu, 12 May 2022 13:03:43 GMT" ], "Content-Length": [ "457" @@ -804,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\",\r\n \"_rid\": \"Ml9jAA==\",\r\n \"_self\": \"dbs/Ml9jAA==/\",\r\n \"_etag\": \"\\\"00007402-0000-0100-0000-62277d6c0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646755180\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\",\r\n \"_rid\": \"e81EAA==\",\r\n \"_self\": \"dbs/e81EAA==/\",\r\n \"_etag\": \"\\\"00006218-0000-0100-0000-627d059a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652360602\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a94b704b-895e-4559-b61b-2c381d6d73c5" + "4f343ee9-bd2e-42eb-95ab-517a22386688" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,13 +780,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/0f3cb8cc-703f-433b-a675-a8d8c6aac990?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/bb53dc0a-abfd-4336-a015-0f91430fb030?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0f3cb8cc-703f-433b-a675-a8d8c6aac990?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bb53dc0a-abfd-4336-a015-0f91430fb030?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "0f3cb8cc-703f-433b-a675-a8d8c6aac990" + "bb53dc0a-abfd-4336-a015-0f91430fb030" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,19 +798,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "5867d47f-2e50-439e-8b5e-a695a19c2f3c" + "9e370cf1-7440-4696-9bf4-0566ad6f0ff7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T155931Z:5867d47f-2e50-439e-8b5e-a695a19c2f3c" + "CENTRALINDIA:20220512T130313Z:9e370cf1-7440-4696-9bf4-0566ad6f0ff7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:59:30 GMT" + "Thu, 12 May 2022 13:03:13 GMT" ], "Content-Length": [ "21" @@ -883,19 +823,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0f3cb8cc-703f-433b-a675-a8d8c6aac990?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGYzY2I4Y2MtNzAzZi00MzNiLWE2NzUtYThkOGM2YWFjOTkwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bb53dc0a-abfd-4336-a015-0f91430fb030?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmI1M2RjMGEtYWJmZC00MzM2LWEwMTUtMGY5MTQzMGZiMDMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a94b704b-895e-4559-b61b-2c381d6d73c5" + "4f343ee9-bd2e-42eb-95ab-517a22386688" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -915,22 +855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11994" ], "x-ms-request-id": [ - "a1ff045c-1b7b-4500-97fc-622e53fe1dd8" + "b3840246-c98d-4370-8725-d9e0af66dc3f" ], "x-ms-correlation-request-id": [ - "a1ff045c-1b7b-4500-97fc-622e53fe1dd8" + "b3840246-c98d-4370-8725-d9e0af66dc3f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160001Z:a1ff045c-1b7b-4500-97fc-622e53fe1dd8" + "CENTRALINDIA:20220512T130344Z:b3840246-c98d-4370-8725-d9e0af66dc3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:00:00 GMT" + "Thu, 12 May 2022 13:03:43 GMT" ], "Content-Length": [ "22" @@ -943,22 +883,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad749dc0-f118-4763-b30e-f669ee91af74" + "c09b7f70-6279-4b80-a75f-b0d4893be13c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11992" ], "x-ms-request-id": [ - "5c88f60b-2bd1-4f73-a9c3-53dde1a7458e" + "2d1880b8-2e15-4b8f-915d-44adf695827e" ], "x-ms-correlation-request-id": [ - "5c88f60b-2bd1-4f73-a9c3-53dde1a7458e" + "2d1880b8-2e15-4b8f-915d-44adf695827e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160002Z:5c88f60b-2bd1-4f73-a9c3-53dde1a7458e" + "CENTRALINDIA:20220512T130345Z:2d1880b8-2e15-4b8f-915d-44adf695827e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:00:01 GMT" + "Thu, 12 May 2022 13:03:44 GMT" ], "Content-Length": [ "383" @@ -1002,23 +942,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"6wo7\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"SUTA\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "157b56fb-1aa3-42eb-8226-873669e6df24" + "fddbb2d0-7ea4-4ed1-a7aa-f60ef46624a6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11996" ], "x-ms-request-id": [ - "db1fdf96-0101-455a-8f1b-4feb95c2d0ff" + "d9c91148-9f11-494d-9337-1fd244f7f06c" ], "x-ms-correlation-request-id": [ - "db1fdf96-0101-455a-8f1b-4feb95c2d0ff" + "d9c91148-9f11-494d-9337-1fd244f7f06c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160033Z:db1fdf96-0101-455a-8f1b-4feb95c2d0ff" + "CENTRALINDIA:20220512T130418Z:d9c91148-9f11-494d-9337-1fd244f7f06c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:00:32 GMT" + "Thu, 12 May 2022 13:04:18 GMT" ], "Content-Length": [ "383" @@ -1062,23 +1002,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"6wo7\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"SUTA\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c50422f-229c-4a94-bd61-bd0361a2228d" + "5d4061e6-d63d-40d7-a878-fa791a0a94d6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1098,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11990" ], "x-ms-request-id": [ - "8d906d90-a276-4e54-a7ec-9549f76551e8" + "fcb062d3-48b3-4374-bbf6-cd418d60f5df" ], "x-ms-correlation-request-id": [ - "8d906d90-a276-4e54-a7ec-9549f76551e8" + "fcb062d3-48b3-4374-bbf6-cd418d60f5df" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160104Z:8d906d90-a276-4e54-a7ec-9549f76551e8" + "JIOINDIACENTRAL:20220512T130453Z:fcb062d3-48b3-4374-bbf6-cd418d60f5df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:01:04 GMT" + "Thu, 12 May 2022 13:04:52 GMT" ], "Content-Length": [ "383" @@ -1122,23 +1062,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"6wo7\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"SUTA\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d321b89-a87c-4804-a6e4-8f81d3c8df79" + "e86d4174-2d21-4035-adb4-93aa5c4ddbd1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1158,22 +1098,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11988" ], "x-ms-request-id": [ - "fbb1d68c-eba8-43ff-8e35-6df78709ac1b" + "59a87fe4-d500-4c78-bb48-cb155108b49a" ], "x-ms-correlation-request-id": [ - "fbb1d68c-eba8-43ff-8e35-6df78709ac1b" + "59a87fe4-d500-4c78-bb48-cb155108b49a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160137Z:fbb1d68c-eba8-43ff-8e35-6df78709ac1b" + "JIOINDIACENTRAL:20220512T130530Z:59a87fe4-d500-4c78-bb48-cb155108b49a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:01:36 GMT" + "Thu, 12 May 2022 13:05:29 GMT" ], "Content-Length": [ "382" @@ -1182,26 +1122,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"6wo7\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"SUTA\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "157b56fb-1aa3-42eb-8226-873669e6df24" + "fddbb2d0-7ea4-4ed1-a7aa-f60ef46624a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1218,13 +1158,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default/operationResults/f7f9bb88-5a24-47f7-ba39-9753d326de61?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default/operationResults/400727c1-b2c7-4691-b6ec-88e0265d5a03?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f7f9bb88-5a24-47f7-ba39-9753d326de61?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/400727c1-b2c7-4691-b6ec-88e0265d5a03?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f7f9bb88-5a24-47f7-ba39-9753d326de61" + "400727c1-b2c7-4691-b6ec-88e0265d5a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1236,19 +1176,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "977dccfa-f5d0-48e1-8fc0-dd8f89e0b01f" + "4f1835ee-8886-42b4-a508-195e10d98541" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160002Z:977dccfa-f5d0-48e1-8fc0-dd8f89e0b01f" + "CENTRALINDIA:20220512T130347Z:4f1835ee-8886-42b4-a508-195e10d98541" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:00:01 GMT" + "Thu, 12 May 2022 13:03:47 GMT" ], "Content-Length": [ "21" @@ -1261,22 +1201,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c50422f-229c-4a94-bd61-bd0361a2228d" + "5d4061e6-d63d-40d7-a878-fa791a0a94d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1293,13 +1233,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default/operationResults/f6e54400-e0ce-4b1c-9263-4c4eb382647e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default/operationResults/36153db2-45c7-4036-ae2b-e8d097ebfd3e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f6e54400-e0ce-4b1c-9263-4c4eb382647e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/36153db2-45c7-4036-ae2b-e8d097ebfd3e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f6e54400-e0ce-4b1c-9263-4c4eb382647e" + "36153db2-45c7-4036-ae2b-e8d097ebfd3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1311,19 +1251,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "d293d7d9-dab4-4966-8cf0-cedcfea65598" + "20de0ee1-e9eb-4252-853a-dd67c40971cf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160034Z:d293d7d9-dab4-4966-8cf0-cedcfea65598" + "JIOINDIACENTRAL:20220512T130422Z:20de0ee1-e9eb-4252-853a-dd67c40971cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:00:33 GMT" + "Thu, 12 May 2022 13:04:22 GMT" ], "Content-Length": [ "21" @@ -1336,22 +1276,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0d321b89-a87c-4804-a6e4-8f81d3c8df79" + "e86d4174-2d21-4035-adb4-93aa5c4ddbd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1368,13 +1308,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default/operationResults/392d2948-6f11-4e49-ba71-76dee1c209a2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/throughputSettings/default/operationResults/a88b82cb-321c-4404-a5d4-5ea374c01051?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/392d2948-6f11-4e49-ba71-76dee1c209a2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a88b82cb-321c-4404-a5d4-5ea374c01051?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "392d2948-6f11-4e49-ba71-76dee1c209a2" + "a88b82cb-321c-4404-a5d4-5ea374c01051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,19 +1326,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "94246313-7aaf-4547-b25d-207db81b6514" + "9ec7b517-268c-4ff8-ad8a-a01505b23618" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160105Z:94246313-7aaf-4547-b25d-207db81b6514" + "JIOINDIACENTRAL:20220512T130458Z:9ec7b517-268c-4ff8-ad8a-a01505b23618" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:01:05 GMT" + "Thu, 12 May 2022 13:04:57 GMT" ], "Content-Length": [ "21" @@ -1411,19 +1351,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f7f9bb88-5a24-47f7-ba39-9753d326de61?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjdmOWJiODgtNWEyNC00N2Y3LWJhMzktOTc1M2QzMjZkZTYxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/400727c1-b2c7-4691-b6ec-88e0265d5a03?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDAwNzI3YzEtYjJjNy00NjkxLWI2ZWMtODhlMDI2NWQ1YTAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "157b56fb-1aa3-42eb-8226-873669e6df24" + "fddbb2d0-7ea4-4ed1-a7aa-f60ef46624a6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1443,22 +1383,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11997" ], "x-ms-request-id": [ - "d600ab74-d929-4ab1-ab85-49e5305251a5" + "fd3a1526-d7ce-40aa-a420-e8cc8bde7bed" ], "x-ms-correlation-request-id": [ - "d600ab74-d929-4ab1-ab85-49e5305251a5" + "fd3a1526-d7ce-40aa-a420-e8cc8bde7bed" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160033Z:d600ab74-d929-4ab1-ab85-49e5305251a5" + "CENTRALINDIA:20220512T130418Z:fd3a1526-d7ce-40aa-a420-e8cc8bde7bed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:00:32 GMT" + "Thu, 12 May 2022 13:04:17 GMT" ], "Content-Length": [ "22" @@ -1471,19 +1411,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f6e54400-e0ce-4b1c-9263-4c4eb382647e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjZlNTQ0MDAtZTBjZS00YjFjLTkyNjMtNGM0ZWIzODI2NDdlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/36153db2-45c7-4036-ae2b-e8d097ebfd3e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzYxNTNkYjItNDVjNy00MDM2LWFlMmItZThkMDk3ZWJmZDNlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c50422f-229c-4a94-bd61-bd0361a2228d" + "5d4061e6-d63d-40d7-a878-fa791a0a94d6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1503,22 +1443,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11991" ], "x-ms-request-id": [ - "188df078-dfbf-4d1f-9c95-793a6d96afd7" + "b24f128d-ac36-4930-af14-270015b25a6d" ], "x-ms-correlation-request-id": [ - "188df078-dfbf-4d1f-9c95-793a6d96afd7" + "b24f128d-ac36-4930-af14-270015b25a6d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160104Z:188df078-dfbf-4d1f-9c95-793a6d96afd7" + "JIOINDIACENTRAL:20220512T130452Z:b24f128d-ac36-4930-af14-270015b25a6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:01:03 GMT" + "Thu, 12 May 2022 13:04:51 GMT" ], "Content-Length": [ "22" @@ -1531,19 +1471,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/392d2948-6f11-4e49-ba71-76dee1c209a2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzkyZDI5NDgtNmYxMS00ZTQ5LWJhNzEtNzZkZWUxYzIwOWEyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a88b82cb-321c-4404-a5d4-5ea374c01051?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTg4YjgyY2ItMzIxYy00NDA0LWE1ZDQtNWVhMzc0YzAxMDUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d321b89-a87c-4804-a6e4-8f81d3c8df79" + "e86d4174-2d21-4035-adb4-93aa5c4ddbd1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1563,22 +1503,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11989" ], "x-ms-request-id": [ - "082c8302-7305-41d0-bd8e-a372a2f60e9e" + "13329c52-3d66-4890-9d55-9cad60d27a18" ], "x-ms-correlation-request-id": [ - "082c8302-7305-41d0-bd8e-a372a2f60e9e" + "13329c52-3d66-4890-9d55-9cad60d27a18" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160135Z:082c8302-7305-41d0-bd8e-a372a2f60e9e" + "JIOINDIACENTRAL:20220512T130528Z:13329c52-3d66-4890-9d55-9cad60d27a18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:01:35 GMT" + "Thu, 12 May 2022 13:05:28 GMT" ], "Content-Length": [ "22" @@ -1591,22 +1531,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acf3ffb8-1ad3-42f6-a03d-87b7a190f95c" + "1e727ac7-5049-4312-b0c5-82d98d806b79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1626,47 +1566,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11989" ], "x-ms-request-id": [ - "a6ede712-7583-4719-90c1-625f8501b64b" + "93d70497-4933-42f8-abf8-c8a42029b868" ], "x-ms-correlation-request-id": [ - "a6ede712-7583-4719-90c1-625f8501b64b" + "93d70497-4933-42f8-abf8-c8a42029b868" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160137Z:a6ede712-7583-4719-90c1-625f8501b64b" + "JIOINDIACENTRAL:20220512T130532Z:93d70497-4933-42f8-abf8-c8a42029b868" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:01:37 GMT" + "Thu, 12 May 2022 13:05:31 GMT" ], "Content-Length": [ - "5605" + "6315" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: acf3ffb8-1ad3-42f6-a03d-87b7a190f95c, Request URI: /apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/ff90b8f5-46ed-4a5a-9a41-bd76f16e177d/partitions/95821430-20f7-4ff7-805b-43407a0dd199/replicas/132857601054937868s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T16:01:37.8336650Z, RequestEndTime: 2022-03-08T16:01:37.8436646Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:00:44.6836952Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.515,\\\\\\\"memory\\\\\\\":624502340.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0163,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:00:54.6936935Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.785,\\\\\\\"memory\\\\\\\":624148252.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0209,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:01:04.7037183Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.705,\\\\\\\"memory\\\\\\\":623625828.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0127,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:01:14.7237053Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.243,\\\\\\\"memory\\\\\\\":622902424.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0156,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:01:24.7337211Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.695,\\\\\\\"memory\\\\\\\":622694932.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0143,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:01:34.7536744Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.070,\\\\\\\"memory\\\\\\\":621874432.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0078,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T16:01:37.8336650Z; ResponseTime: 2022-03-08T16:01:37.8436646Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/ff90b8f5-46ed-4a5a-9a41-bd76f16e177d/partitions/95821430-20f7-4ff7-805b-43407a0dd199/replicas/132857601054937868s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.894, ActivityId: acf3ffb8-1ad3-42f6-a03d-87b7a190f95c, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8336650Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0149},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8336799Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0029},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8336828Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1862},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8338690Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2568},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8351258Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2672},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8353930Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T16:01:37.8336650Z; ResponseTime: 2022-03-08T16:01:37.8436646Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/1df0a3cd-47c0-4a9a-85ae-7e9afc7fa106/services/ff90b8f5-46ed-4a5a-9a41-bd76f16e177d/partitions/95821430-20f7-4ff7-805b-43407a0dd199/replicas/132892539436929946s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.897, ActivityId: acf3ffb8-1ad3-42f6-a03d-87b7a190f95c, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8336650Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0035},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8336685Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8336696Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1433},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8338129Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.268},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8350809Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1561},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:01:37.8352370Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName3/colls/graphName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 1e727ac7-5049-4312-b0c5-82d98d806b79, Request URI: /apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/994cae6b-e523-4a4f-ad87-3d0eca32ccc1/partitions/1becab88-b072-423b-b472-cdf61e48f3cb/replicas/132968319047047276s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T13:05:32.2886448Z, RequestEndTime: 2022-05-12T13:05:32.2886448Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:04:34.8103851Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.271,\\\\\\\"memory\\\\\\\":658376308.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0159,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:04:44.8200683Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.307,\\\\\\\"memory\\\\\\\":658351172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0195,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:04:54.8197678Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.522,\\\\\\\"memory\\\\\\\":658448476.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0183,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:05:04.8294578Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.325,\\\\\\\"memory\\\\\\\":658363184.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0239,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:05:14.8391827Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.536,\\\\\\\"memory\\\\\\\":658419748.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0179,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T13:05:24.8488522Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.208,\\\\\\\"memory\\\\\\\":658428328.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T13:05:32.2886448Z; ResponseTime: 2022-05-12T13:05:32.2886448Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/994cae6b-e523-4a4f-ad87-3d0eca32ccc1/partitions/1becab88-b072-423b-b472-cdf61e48f3cb/replicas/132968319047047276s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.072, ActivityId: 1e727ac7-5049-4312-b0c5-82d98d806b79, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2886448Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.015},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2886598Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0104},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2886702Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1939},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2888641Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4172},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2902813Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1075},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2903888Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:05:31.2586798Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:05:31.2586798Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:05:31.2586798Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T13:05:32.2886448Z; ResponseTime: 2022-05-12T13:05:32.2886448Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/994cae6b-e523-4a4f-ad87-3d0eca32ccc1/partitions/1becab88-b072-423b-b472-cdf61e48f3cb/replicas/132968319047047278s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.944, ActivityId: 1e727ac7-5049-4312-b0c5-82d98d806b79, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2886448Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.004},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2886488Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.005},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2886538Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1466},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2888004Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3062},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2901066Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0908},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T13:05:32.2901974Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T13:05:30.6587010Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T13:05:30.6587010Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T13:05:30.6587010Z\\\\\\\"},\\\\\\\"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/dbName3/colls/graphName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acf3ffb8-1ad3-42f6-a03d-87b7a190f95c" + "1e727ac7-5049-4312-b0c5-82d98d806b79" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1686,22 +1626,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11987" ], "x-ms-request-id": [ - "f6f2eb73-2137-4a43-a702-ff2b0b3032dd" + "c76e0cf0-db2e-4ef1-b27d-b64d324bf007" ], "x-ms-correlation-request-id": [ - "f6f2eb73-2137-4a43-a702-ff2b0b3032dd" + "c76e0cf0-db2e-4ef1-b27d-b64d324bf007" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160209Z:f6f2eb73-2137-4a43-a702-ff2b0b3032dd" + "JIOINDIACENTRAL:20220512T130604Z:c76e0cf0-db2e-4ef1-b27d-b64d324bf007" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:02:08 GMT" + "Thu, 12 May 2022 13:06:04 GMT" ], "Content-Length": [ "1067" @@ -1710,26 +1650,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graphName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graphName\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"Ml9jAPnaSqE=\",\r\n \"_ts\": 1646755307,\r\n \"_self\": \"dbs/Ml9jAA==/colls/Ml9jAPnaSqE=/\",\r\n \"_etag\": \"\\\"00007e02-0000-0100-0000-62277deb0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graphName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graphName\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"e81EAPQz-gg=\",\r\n \"_ts\": 1652360741,\r\n \"_self\": \"dbs/e81EAA==/colls/e81EAPQz-gg=/\",\r\n \"_etag\": \"\\\"00006c18-0000-0100-0000-627d06250000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graphName\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "acf3ffb8-1ad3-42f6-a03d-87b7a190f95c" + "1e727ac7-5049-4312-b0c5-82d98d806b79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1746,13 +1686,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/c922f5e1-3feb-4884-a482-a49552385f26?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/8f8500d4-5645-45c5-b411-06eb98d71fc7?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c922f5e1-3feb-4884-a482-a49552385f26?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8f8500d4-5645-45c5-b411-06eb98d71fc7?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c922f5e1-3feb-4884-a482-a49552385f26" + "8f8500d4-5645-45c5-b411-06eb98d71fc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1764,19 +1704,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "fac5e287-5519-4db7-ae03-b6b3934826f9" + "5b431074-4261-4176-9b85-348d7f192f15" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160138Z:fac5e287-5519-4db7-ae03-b6b3934826f9" + "JIOINDIACENTRAL:20220512T130533Z:5b431074-4261-4176-9b85-348d7f192f15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:01:37 GMT" + "Thu, 12 May 2022 13:05:32 GMT" ], "Content-Length": [ "21" @@ -1789,19 +1729,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c922f5e1-3feb-4884-a482-a49552385f26?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzkyMmY1ZTEtM2ZlYi00ODg0LWE0ODItYTQ5NTUyMzg1ZjI2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8f8500d4-5645-45c5-b411-06eb98d71fc7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGY4NTAwZDQtNTY0NS00NWM1LWI0MTEtMDZlYjk4ZDcxZmM3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acf3ffb8-1ad3-42f6-a03d-87b7a190f95c" + "1e727ac7-5049-4312-b0c5-82d98d806b79" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1821,22 +1761,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11988" ], "x-ms-request-id": [ - "d7503a4a-5c82-4288-8fa2-e32f1949aef0" + "9fe536ce-d4eb-40cd-b4e3-1f6477c97abb" ], "x-ms-correlation-request-id": [ - "d7503a4a-5c82-4288-8fa2-e32f1949aef0" + "9fe536ce-d4eb-40cd-b4e3-1f6477c97abb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160208Z:d7503a4a-5c82-4288-8fa2-e32f1949aef0" + "JIOINDIACENTRAL:20220512T130604Z:9fe536ce-d4eb-40cd-b4e3-1f6477c97abb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:02:07 GMT" + "Thu, 12 May 2022 13:06:03 GMT" ], "Content-Length": [ "22" @@ -1849,22 +1789,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32058310-88a8-4c3d-a254-cc0e52634d94" + "3ec3ed31-6d88-43cf-b07b-5c225b92a9ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1884,22 +1824,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11989" ], "x-ms-request-id": [ - "cd1c6c7a-4aa2-41f3-abc6-f62ce18420ae" + "5e15d982-517f-4c40-b884-78f11432c8a2" ], "x-ms-correlation-request-id": [ - "cd1c6c7a-4aa2-41f3-abc6-f62ce18420ae" + "5e15d982-517f-4c40-b884-78f11432c8a2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160209Z:cd1c6c7a-4aa2-41f3-abc6-f62ce18420ae" + "JIOINDIACENTRAL:20220512T130606Z:5e15d982-517f-4c40-b884-78f11432c8a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:02:08 GMT" + "Thu, 12 May 2022 13:06:06 GMT" ], "Content-Length": [ "406" @@ -1908,23 +1848,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"UTtP\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"Hg5-\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2ae10c8-c70a-4950-914e-d1239435813b" + "0628fbc1-79cc-4dd3-a1af-962389484d9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1944,22 +1884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11987" ], "x-ms-request-id": [ - "85292c2b-e135-4e3f-89b5-4f7750c0dc38" + "e9cb1554-1b00-4ac5-9cc1-be21593b3437" ], "x-ms-correlation-request-id": [ - "85292c2b-e135-4e3f-89b5-4f7750c0dc38" + "e9cb1554-1b00-4ac5-9cc1-be21593b3437" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160240Z:85292c2b-e135-4e3f-89b5-4f7750c0dc38" + "JIOINDIACENTRAL:20220512T130638Z:e9cb1554-1b00-4ac5-9cc1-be21593b3437" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:02:40 GMT" + "Thu, 12 May 2022 13:06:38 GMT" ], "Content-Length": [ "406" @@ -1968,23 +1908,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"UTtP\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"Hg5-\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a00f924f-b01e-4795-b0c8-274e849df4b3" + "93285a99-caed-4a8c-a44e-ba62d07cf9fa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2004,22 +1944,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11996" ], "x-ms-request-id": [ - "d05a1f23-a8f8-4d5c-b33f-2a42dfac7c2b" + "32c1cb7e-a26d-4551-b51a-e10c3ba4ef75" ], "x-ms-correlation-request-id": [ - "d05a1f23-a8f8-4d5c-b33f-2a42dfac7c2b" + "32c1cb7e-a26d-4551-b51a-e10c3ba4ef75" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160312Z:d05a1f23-a8f8-4d5c-b33f-2a42dfac7c2b" + "JIOINDIACENTRAL:20220512T130713Z:32c1cb7e-a26d-4551-b51a-e10c3ba4ef75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:03:11 GMT" + "Thu, 12 May 2022 13:07:12 GMT" ], "Content-Length": [ "406" @@ -2028,23 +1968,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"UTtP\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"Hg5-\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0fc62f1-8ce1-4692-88a8-95f16e781e5e" + "83a71cd3-ac97-4020-a854-9a4f17357cf3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2064,22 +2004,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11981" ], "x-ms-request-id": [ - "af273e94-9962-46ec-a12e-f137d61315ec" + "76620683-81ff-4376-83ff-660e0bd51bc5" ], "x-ms-correlation-request-id": [ - "af273e94-9962-46ec-a12e-f137d61315ec" + "76620683-81ff-4376-83ff-660e0bd51bc5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160343Z:af273e94-9962-46ec-a12e-f137d61315ec" + "CENTRALINDIA:20220512T130747Z:76620683-81ff-4376-83ff-660e0bd51bc5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:03:42 GMT" + "Thu, 12 May 2022 13:07:46 GMT" ], "Content-Length": [ "406" @@ -2088,26 +2028,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"UTtP\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"Hg5-\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d2ae10c8-c70a-4950-914e-d1239435813b" + "0628fbc1-79cc-4dd3-a1af-962389484d9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2124,13 +2064,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/1ada1841-2350-436e-9636-db5e141fa038?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/8b5f7780-93e9-45c0-8ca0-73499c20e13f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1ada1841-2350-436e-9636-db5e141fa038?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8b5f7780-93e9-45c0-8ca0-73499c20e13f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1ada1841-2350-436e-9636-db5e141fa038" + "8b5f7780-93e9-45c0-8ca0-73499c20e13f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2142,19 +2082,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "d4c1e0e5-cb2b-4f3c-b930-22e6bc6ee035" + "d4dfa4da-a2af-495c-be0a-247aec80f185" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160210Z:d4c1e0e5-cb2b-4f3c-b930-22e6bc6ee035" + "JIOINDIACENTRAL:20220512T130607Z:d4dfa4da-a2af-495c-be0a-247aec80f185" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:02:09 GMT" + "Thu, 12 May 2022 13:06:07 GMT" ], "Content-Length": [ "21" @@ -2167,22 +2107,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a00f924f-b01e-4795-b0c8-274e849df4b3" + "93285a99-caed-4a8c-a44e-ba62d07cf9fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2199,13 +2139,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/9ddfd430-9a33-40b0-91d3-68008c2aa688?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/223d86c3-5b65-4bda-95e1-1f8b0a58f399?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ddfd430-9a33-40b0-91d3-68008c2aa688?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/223d86c3-5b65-4bda-95e1-1f8b0a58f399?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "9ddfd430-9a33-40b0-91d3-68008c2aa688" + "223d86c3-5b65-4bda-95e1-1f8b0a58f399" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2217,19 +2157,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "d85fb873-7d26-4fcf-aca1-cbdcdb56afe2" + "90205765-84c0-4e0d-9aa9-80c5be1b3948" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160241Z:d85fb873-7d26-4fcf-aca1-cbdcdb56afe2" + "JIOINDIACENTRAL:20220512T130642Z:90205765-84c0-4e0d-9aa9-80c5be1b3948" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:02:41 GMT" + "Thu, 12 May 2022 13:06:41 GMT" ], "Content-Length": [ "21" @@ -2242,22 +2182,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e0fc62f1-8ce1-4692-88a8-95f16e781e5e" + "83a71cd3-ac97-4020-a854-9a4f17357cf3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2274,13 +2214,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/c0f6c6ba-93a1-44b8-b085-594c870de018?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/efa34178-b0b5-43df-ac4c-a8b34dd54e2c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c0f6c6ba-93a1-44b8-b085-594c870de018?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/efa34178-b0b5-43df-ac4c-a8b34dd54e2c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c0f6c6ba-93a1-44b8-b085-594c870de018" + "efa34178-b0b5-43df-ac4c-a8b34dd54e2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,19 +2232,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-correlation-request-id": [ - "1a014506-fad4-4fd7-b144-8039d835ac95" + "c5f9f6c3-0945-40ed-b2e9-935b203b1ad6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160312Z:1a014506-fad4-4fd7-b144-8039d835ac95" + "CENTRALINDIA:20220512T130715Z:c5f9f6c3-0945-40ed-b2e9-935b203b1ad6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:03:12 GMT" + "Thu, 12 May 2022 13:07:14 GMT" ], "Content-Length": [ "21" @@ -2317,19 +2257,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1ada1841-2350-436e-9636-db5e141fa038?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWFkYTE4NDEtMjM1MC00MzZlLTk2MzYtZGI1ZTE0MWZhMDM4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8b5f7780-93e9-45c0-8ca0-73499c20e13f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGI1Zjc3ODAtOTNlOS00NWMwLThjYTAtNzM0OTljMjBlMTNmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2ae10c8-c70a-4950-914e-d1239435813b" + "0628fbc1-79cc-4dd3-a1af-962389484d9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2349,22 +2289,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11988" ], "x-ms-request-id": [ - "1470c994-e162-46ac-af36-97d33be00261" + "745b2e2c-c238-4eb1-95da-ced420df25c2" ], "x-ms-correlation-request-id": [ - "1470c994-e162-46ac-af36-97d33be00261" + "745b2e2c-c238-4eb1-95da-ced420df25c2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160240Z:1470c994-e162-46ac-af36-97d33be00261" + "JIOINDIACENTRAL:20220512T130637Z:745b2e2c-c238-4eb1-95da-ced420df25c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:02:40 GMT" + "Thu, 12 May 2022 13:06:37 GMT" ], "Content-Length": [ "22" @@ -2377,19 +2317,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ddfd430-9a33-40b0-91d3-68008c2aa688?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWRkZmQ0MzAtOWEzMy00MGIwLTkxZDMtNjgwMDhjMmFhNjg4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/223d86c3-5b65-4bda-95e1-1f8b0a58f399?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjIzZDg2YzMtNWI2NS00YmRhLTk1ZTEtMWY4YjBhNThmMzk5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a00f924f-b01e-4795-b0c8-274e849df4b3" + "93285a99-caed-4a8c-a44e-ba62d07cf9fa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2409,22 +2349,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11997" ], "x-ms-request-id": [ - "9ab9563a-3274-4f18-be9a-4cff3665bc65" + "f947aaa3-7c39-4899-9656-d47188181a83" ], "x-ms-correlation-request-id": [ - "9ab9563a-3274-4f18-be9a-4cff3665bc65" + "f947aaa3-7c39-4899-9656-d47188181a83" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160311Z:9ab9563a-3274-4f18-be9a-4cff3665bc65" + "JIOINDIACENTRAL:20220512T130712Z:f947aaa3-7c39-4899-9656-d47188181a83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:03:11 GMT" + "Thu, 12 May 2022 13:07:12 GMT" ], "Content-Length": [ "22" @@ -2437,19 +2377,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c0f6c6ba-93a1-44b8-b085-594c870de018?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzBmNmM2YmEtOTNhMS00NGI4LWIwODUtNTk0Yzg3MGRlMDE4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/efa34178-b0b5-43df-ac4c-a8b34dd54e2c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWZhMzQxNzgtYjBiNS00M2RmLWFjNGMtYThiMzRkZDU0ZTJjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0fc62f1-8ce1-4692-88a8-95f16e781e5e" + "83a71cd3-ac97-4020-a854-9a4f17357cf3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2469,22 +2409,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11982" ], "x-ms-request-id": [ - "4d1684fa-9e5c-47a6-95ce-3acda7071ecc" + "b34f4599-bb67-4ad2-8fa2-92e1586bc63a" ], "x-ms-correlation-request-id": [ - "4d1684fa-9e5c-47a6-95ce-3acda7071ecc" + "b34f4599-bb67-4ad2-8fa2-92e1586bc63a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160343Z:4d1684fa-9e5c-47a6-95ce-3acda7071ecc" + "CENTRALINDIA:20220512T130745Z:b34f4599-bb67-4ad2-8fa2-92e1586bc63a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:03:42 GMT" + "Thu, 12 May 2022 13:07:45 GMT" ], "Content-Length": [ "22" @@ -2497,22 +2437,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "955944e7-e589-4eb7-b42e-f3b20d860ff7" + "151c1960-6137-4843-ac6d-014c37f9dabf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2523,13 +2463,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/26c007ba-f7df-486c-8aa8-662dde7b0440?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/5b0b07fd-dfa9-4145-87a9-256ad7ae55c9?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/26c007ba-f7df-486c-8aa8-662dde7b0440?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5b0b07fd-dfa9-4145-87a9-256ad7ae55c9?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "26c007ba-f7df-486c-8aa8-662dde7b0440" + "5b0b07fd-dfa9-4145-87a9-256ad7ae55c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2541,19 +2481,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "ac10fdc4-4e5c-4549-ba19-94d8c2b15592" + "c63bd290-5679-463b-9961-5968f4040d9c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160344Z:ac10fdc4-4e5c-4549-ba19-94d8c2b15592" + "CENTRALINDIA:20220512T130750Z:c63bd290-5679-463b-9961-5968f4040d9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:03:43 GMT" + "Thu, 12 May 2022 13:07:50 GMT" ], "Content-Length": [ "21" @@ -2566,22 +2506,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a9fcfa-3ee3-4335-968f-8093b11f17c8" + "288f2171-e25c-4a12-b369-0dbd19018d50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2592,13 +2532,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/2b3b122d-d286-4293-83f7-a7e4086d40c4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/4ea6427d-1d01-4e2a-be1f-355cf48bf7d1?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2b3b122d-d286-4293-83f7-a7e4086d40c4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4ea6427d-1d01-4e2a-be1f-355cf48bf7d1?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "2b3b122d-d286-4293-83f7-a7e4086d40c4" + "4ea6427d-1d01-4e2a-be1f-355cf48bf7d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2613,16 +2553,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "12dbf533-cd6a-4be7-bb8b-e3fbd6153171" + "86f6b555-1292-4890-87fc-57101a3614d1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160449Z:12dbf533-cd6a-4be7-bb8b-e3fbd6153171" + "CENTRALINDIA:20220512T130857Z:86f6b555-1292-4890-87fc-57101a3614d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:04:49 GMT" + "Thu, 12 May 2022 13:08:57 GMT" ], "Content-Length": [ "21" @@ -2635,19 +2575,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/26c007ba-f7df-486c-8aa8-662dde7b0440?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjZjMDA3YmEtZjdkZi00ODZjLThhYTgtNjYyZGRlN2IwNDQwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5b0b07fd-dfa9-4145-87a9-256ad7ae55c9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWIwYjA3ZmQtZGZhOS00MTQ1LTg3YTktMjU2YWQ3YWU1NWM5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "955944e7-e589-4eb7-b42e-f3b20d860ff7" + "151c1960-6137-4843-ac6d-014c37f9dabf" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2667,22 +2607,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11999" ], "x-ms-request-id": [ - "710e35d1-0b0f-4df3-9e85-ce810f2c5530" + "1059d6df-1afa-4e98-9bad-834ea1256be6" ], "x-ms-correlation-request-id": [ - "710e35d1-0b0f-4df3-9e85-ce810f2c5530" + "1059d6df-1afa-4e98-9bad-834ea1256be6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160414Z:710e35d1-0b0f-4df3-9e85-ce810f2c5530" + "CENTRALINDIA:20220512T130821Z:1059d6df-1afa-4e98-9bad-834ea1256be6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:04:13 GMT" + "Thu, 12 May 2022 13:08:20 GMT" ], "Content-Length": [ "22" @@ -2695,19 +2635,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/26c007ba-f7df-486c-8aa8-662dde7b0440?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvMjZjMDA3YmEtZjdkZi00ODZjLThhYTgtNjYyZGRlN2IwNDQwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/5b0b07fd-dfa9-4145-87a9-256ad7ae55c9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvNWIwYjA3ZmQtZGZhOS00MTQ1LTg3YTktMjU2YWQ3YWU1NWM5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "955944e7-e589-4eb7-b42e-f3b20d860ff7" + "151c1960-6137-4843-ac6d-014c37f9dabf" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2727,22 +2667,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11998" ], "x-ms-request-id": [ - "599f44b5-3cec-4363-8f6e-5c54ac36ac9e" + "5635127f-5f2d-4006-a2ea-a675f765a6f5" ], "x-ms-correlation-request-id": [ - "599f44b5-3cec-4363-8f6e-5c54ac36ac9e" + "5635127f-5f2d-4006-a2ea-a675f765a6f5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160414Z:599f44b5-3cec-4363-8f6e-5c54ac36ac9e" + "CENTRALINDIA:20220512T130822Z:5635127f-5f2d-4006-a2ea-a675f765a6f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:04:13 GMT" + "Thu, 12 May 2022 13:08:21 GMT" ], "Content-Type": [ "application/json" @@ -2752,22 +2692,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "419f747c-417d-4b7d-a192-1bf4a02471ea" + "22b2231b-163d-4d5b-a0ca-b5ffb16c8836" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2778,13 +2718,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/11da36b6-6029-4b62-8767-27f85b250c88?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/05ca8d42-70f9-450a-90fb-052dbac52cab?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/11da36b6-6029-4b62-8767-27f85b250c88?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/05ca8d42-70f9-450a-90fb-052dbac52cab?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "11da36b6-6029-4b62-8767-27f85b250c88" + "05ca8d42-70f9-450a-90fb-052dbac52cab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2799,16 +2739,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "b8c42789-c836-4bc0-8db0-e4a941cd92cb" + "bafff1a8-e98d-44df-b641-efc3e2fcc9fa" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160417Z:b8c42789-c836-4bc0-8db0-e4a941cd92cb" + "CENTRALINDIA:20220512T130824Z:bafff1a8-e98d-44df-b641-efc3e2fcc9fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:04:16 GMT" + "Thu, 12 May 2022 13:08:23 GMT" ], "Content-Length": [ "21" @@ -2821,22 +2761,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0c10c69-71c5-4112-a4a9-c0e76b539f11" + "c4ee24a4-cab8-47e9-bc5f-e93aa402c651" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2847,13 +2787,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/aaa11c03-2998-4b6e-a3df-dfc48dbb34df?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/a9765b90-6f66-4fbd-8b57-a69d4292aac7?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/aaa11c03-2998-4b6e-a3df-dfc48dbb34df?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a9765b90-6f66-4fbd-8b57-a69d4292aac7?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "aaa11c03-2998-4b6e-a3df-dfc48dbb34df" + "a9765b90-6f66-4fbd-8b57-a69d4292aac7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2865,19 +2805,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "116d4e4e-da26-48c1-a742-c400e15fddd5" + "b0e7ed5c-00d9-4fd2-922a-b926fafd3eb2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160523Z:116d4e4e-da26-48c1-a742-c400e15fddd5" + "JIOINDIACENTRAL:20220512T130931Z:b0e7ed5c-00d9-4fd2-922a-b926fafd3eb2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:05:22 GMT" + "Thu, 12 May 2022 13:09:31 GMT" ], "Content-Length": [ "21" @@ -2890,19 +2830,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/11da36b6-6029-4b62-8767-27f85b250c88?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTFkYTM2YjYtNjAyOS00YjYyLTg3NjctMjdmODViMjUwYzg4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/05ca8d42-70f9-450a-90fb-052dbac52cab?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDVjYThkNDItNzBmOS00NTBhLTkwZmItMDUyZGJhYzUyY2FiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "419f747c-417d-4b7d-a192-1bf4a02471ea" + "22b2231b-163d-4d5b-a0ca-b5ffb16c8836" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2925,19 +2865,19 @@ "11999" ], "x-ms-request-id": [ - "496aa776-0283-432a-83c0-4be0a422041d" + "aadfc99c-a08e-42e1-a782-6272a31a5c5d" ], "x-ms-correlation-request-id": [ - "496aa776-0283-432a-83c0-4be0a422041d" + "aadfc99c-a08e-42e1-a782-6272a31a5c5d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160447Z:496aa776-0283-432a-83c0-4be0a422041d" + "CENTRALINDIA:20220512T130854Z:aadfc99c-a08e-42e1-a782-6272a31a5c5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:04:46 GMT" + "Thu, 12 May 2022 13:08:53 GMT" ], "Content-Length": [ "22" @@ -2950,19 +2890,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/11da36b6-6029-4b62-8767-27f85b250c88?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzExZGEzNmI2LTYwMjktNGI2Mi04NzY3LTI3Zjg1YjI1MGM4OD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/05ca8d42-70f9-450a-90fb-052dbac52cab?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzA1Y2E4ZDQyLTcwZjktNDUwYS05MGZiLTA1MmRiYWM1MmNhYj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "419f747c-417d-4b7d-a192-1bf4a02471ea" + "22b2231b-163d-4d5b-a0ca-b5ffb16c8836" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2985,19 +2925,19 @@ "11998" ], "x-ms-request-id": [ - "4c4cae83-ae3a-4393-9aaf-24a986043a78" + "9e04908b-cd2a-4e7a-9182-cc70b66873db" ], "x-ms-correlation-request-id": [ - "4c4cae83-ae3a-4393-9aaf-24a986043a78" + "9e04908b-cd2a-4e7a-9182-cc70b66873db" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T160447Z:4c4cae83-ae3a-4393-9aaf-24a986043a78" + "CENTRALINDIA:20220512T130854Z:9e04908b-cd2a-4e7a-9182-cc70b66873db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:04:46 GMT" + "Thu, 12 May 2022 13:08:54 GMT" ], "Content-Type": [ "application/json" @@ -3007,19 +2947,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2b3b122d-d286-4293-83f7-a7e4086d40c4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmIzYjEyMmQtZDI4Ni00MjkzLTgzZjctYTdlNDA4NmQ0MGM0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4ea6427d-1d01-4e2a-be1f-355cf48bf7d1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGVhNjQyN2QtMWQwMS00ZTJhLWJlMWYtMzU1Y2Y0OGJmN2QxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a9fcfa-3ee3-4335-968f-8093b11f17c8" + "288f2171-e25c-4a12-b369-0dbd19018d50" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3042,19 +2982,19 @@ "11999" ], "x-ms-request-id": [ - "0566df42-fb10-415f-9776-4f2dc5f3774e" + "6cb65ebb-d7ab-4f50-8c5a-7856b2a4729b" ], "x-ms-correlation-request-id": [ - "0566df42-fb10-415f-9776-4f2dc5f3774e" + "6cb65ebb-d7ab-4f50-8c5a-7856b2a4729b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160520Z:0566df42-fb10-415f-9776-4f2dc5f3774e" + "CENTRALINDIA:20220512T130928Z:6cb65ebb-d7ab-4f50-8c5a-7856b2a4729b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:05:20 GMT" + "Thu, 12 May 2022 13:09:27 GMT" ], "Content-Length": [ "22" @@ -3067,19 +3007,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/2b3b122d-d286-4293-83f7-a7e4086d40c4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvMmIzYjEyMmQtZDI4Ni00MjkzLTgzZjctYTdlNDA4NmQ0MGM0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/graphs/graphName/operationResults/4ea6427d-1d01-4e2a-be1f-355cf48bf7d1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvNGVhNjQyN2QtMWQwMS00ZTJhLWJlMWYtMzU1Y2Y0OGJmN2QxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a9fcfa-3ee3-4335-968f-8093b11f17c8" + "288f2171-e25c-4a12-b369-0dbd19018d50" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3102,19 +3042,19 @@ "11998" ], "x-ms-request-id": [ - "26087391-760e-46ec-b5ed-29696b18f532" + "bf0b249b-b2c3-45f6-9378-e2cce07e5501" ], "x-ms-correlation-request-id": [ - "26087391-760e-46ec-b5ed-29696b18f532" + "bf0b249b-b2c3-45f6-9378-e2cce07e5501" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160521Z:26087391-760e-46ec-b5ed-29696b18f532" + "CENTRALINDIA:20220512T130929Z:bf0b249b-b2c3-45f6-9378-e2cce07e5501" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:05:21 GMT" + "Thu, 12 May 2022 13:09:29 GMT" ], "Content-Type": [ "application/json" @@ -3124,19 +3064,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/aaa11c03-2998-4b6e-a3df-dfc48dbb34df?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWFhMTFjMDMtMjk5OC00YjZlLWEzZGYtZGZjNDhkYmIzNGRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a9765b90-6f66-4fbd-8b57-a69d4292aac7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTk3NjViOTAtNmY2Ni00ZmJkLThiNTctYTY5ZDQyOTJhYWM3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0c10c69-71c5-4112-a4a9-c0e76b539f11" + "c4ee24a4-cab8-47e9-bc5f-e93aa402c651" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3156,22 +3096,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11988" ], "x-ms-request-id": [ - "9d033dd7-f756-4597-846a-fc6ae5ab97f7" + "2929b175-92db-4dc9-ac7d-43897bc1725b" ], "x-ms-correlation-request-id": [ - "9d033dd7-f756-4597-846a-fc6ae5ab97f7" + "2929b175-92db-4dc9-ac7d-43897bc1725b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160554Z:9d033dd7-f756-4597-846a-fc6ae5ab97f7" + "JIOINDIACENTRAL:20220512T131002Z:2929b175-92db-4dc9-ac7d-43897bc1725b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:05:53 GMT" + "Thu, 12 May 2022 13:10:01 GMT" ], "Content-Length": [ "22" @@ -3184,19 +3124,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/aaa11c03-2998-4b6e-a3df-dfc48dbb34df?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9vcGVyYXRpb25SZXN1bHRzL2FhYTExYzAzLTI5OTgtNGI2ZS1hM2RmLWRmYzQ4ZGJiMzRkZj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup53/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1053/gremlinDatabases/dbName3/operationResults/a9765b90-6f66-4fbd-8b57-a69d4292aac7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2dyZW1saW4tZGIxMDUzL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9vcGVyYXRpb25SZXN1bHRzL2E5NzY1YjkwLTZmNjYtNGZiZC04YjU3LWE2OWQ0MjkyYWFjNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0c10c69-71c5-4112-a4a9-c0e76b539f11" + "c4ee24a4-cab8-47e9-bc5f-e93aa402c651" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3216,22 +3156,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11987" ], "x-ms-request-id": [ - "4b4f7cfa-7fa6-48f2-b212-16854673de8a" + "3c7c11cf-40b9-4ff4-894d-32102f44298a" ], "x-ms-correlation-request-id": [ - "4b4f7cfa-7fa6-48f2-b212-16854673de8a" + "3c7c11cf-40b9-4ff4-894d-32102f44298a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T160554Z:4b4f7cfa-7fa6-48f2-b212-16854673de8a" + "JIOINDIACENTRAL:20220512T131002Z:3c7c11cf-40b9-4ff4-894d-32102f44298a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:05:53 GMT" + "Thu, 12 May 2022 13:10:02 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoMigrateThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoMigrateThroughputCmdlets.json index b6668aba723f..2ae39acb2780 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoMigrateThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoMigrateThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8c2453ce-4214-4bef-9c8b-d48731c5e8cd" + "a007f9a3-28bf-44b3-847e-5c0fec58838d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "594d6e33-83e8-4786-b5f6-cea837bbf679" + "c39549a6-425d-497d-a0d4-c563739cf750" ], "x-ms-correlation-request-id": [ - "594d6e33-83e8-4786-b5f6-cea837bbf679" + "c39549a6-425d-497d-a0d4-c563739cf750" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113417Z:594d6e33-83e8-4786-b5f6-cea837bbf679" + "SOUTHEASTASIA:20220512T133736Z:c39549a6-425d-497d-a0d4-c563739cf750" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:34:17 GMT" + "Thu, 12 May 2022 13:37:35 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" + "82f7d647-7d13-44f1-b66b-d59185bd2d4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "0df2241f-44e3-411c-8a05-220493ec63b4" + "d772da34-92fd-4d28-9b90-c92c8c709c38" ], "x-ms-correlation-request-id": [ - "0df2241f-44e3-411c-8a05-220493ec63b4" + "d772da34-92fd-4d28-9b90-c92c8c709c38" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113418Z:0df2241f-44e3-411c-8a05-220493ec63b4" + "SOUTHEASTASIA:20220512T133737Z:d772da34-92fd-4d28-9b90-c92c8c709c38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:34:18 GMT" + "Thu, 12 May 2022 13:37:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" + "82f7d647-7d13-44f1-b66b-d59185bd2d4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-request-id": [ - "c4ec27a8-eb8f-4a71-889d-33760f6c6f10" + "c6f8dc47-360e-421a-a8d7-05f782ad92c8" ], "x-ms-correlation-request-id": [ - "c4ec27a8-eb8f-4a71-889d-33760f6c6f10" + "c6f8dc47-360e-421a-a8d7-05f782ad92c8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113729Z:c4ec27a8-eb8f-4a71-889d-33760f6c6f10" + "SOUTHEASTASIA:20220512T134023Z:c6f8dc47-360e-421a-a8d7-05f782ad92c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:37:29 GMT" + "Thu, 12 May 2022 13:40:23 GMT" ], "Content-Length": [ "2468" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029\",\r\n \"name\": \"mongo-db0029\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T11:36:50.8639342Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db0029.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db0029.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"e8682f8b-bea2-46de-85b0-e15b5d4d82bd\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029\",\r\n \"name\": \"mongo-db0029\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:39:59.4143482Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db0029.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db0029.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"35d62981-e191-4888-b0cd-8166182b359d\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7036ab0-397e-443c-976e-d6100cd8d549" + "6cdd34b8-e661-4f6f-a8bd-a618060b0fb1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-request-id": [ - "1683fa94-f03c-42e5-9fb1-e8989267ff69" + "8a983fe9-4ff0-4396-9da1-f358b4e48925" ], "x-ms-correlation-request-id": [ - "1683fa94-f03c-42e5-9fb1-e8989267ff69" + "8a983fe9-4ff0-4396-9da1-f358b4e48925" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113833Z:1683fa94-f03c-42e5-9fb1-e8989267ff69" + "JIOINDIACENTRAL:20220512T134134Z:8a983fe9-4ff0-4396-9da1-f358b4e48925" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:38:32 GMT" + "Thu, 12 May 2022 13:41:34 GMT" ], "Content-Length": [ "2468" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029\",\r\n \"name\": \"mongo-db0029\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T11:36:50.8639342Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db0029.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db0029.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"e8682f8b-bea2-46de-85b0-e15b5d4d82bd\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029\",\r\n \"name\": \"mongo-db0029\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:39:59.4143482Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db0029.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db0029.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"35d62981-e191-4888-b0cd-8166182b359d\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0029-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" + "82f7d647-7d13-44f1-b66b-d59185bd2d4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/operationResults/74af2414-5de0-4450-b1a1-e20281f5a44f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/operationResults/2eabf6c3-cc05-4fbd-8b73-81288b1815b7?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "74af2414-5de0-4450-b1a1-e20281f5a44f" + "2eabf6c3-cc05-4fbd-8b73-81288b1815b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/74af2414-5de0-4450-b1a1-e20281f5a44f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eabf6c3-cc05-4fbd-8b73-81288b1815b7?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "cd065e0a-96e9-4d9a-a833-c012931258f7" + "a205be6b-f1ee-4d2c-9bb8-90954d096b3a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113427Z:cd065e0a-96e9-4d9a-a833-c012931258f7" + "SOUTHEASTASIA:20220512T133750Z:a205be6b-f1ee-4d2c-9bb8-90954d096b3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:34:26 GMT" + "Thu, 12 May 2022 13:37:50 GMT" ], "Content-Length": [ "2069" @@ -321,23 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029\",\r\n \"name\": \"mongo-db0029\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T11:34:25.0573689Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"e8682f8b-bea2-46de-85b0-e15b5d4d82bd\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029\",\r\n \"name\": \"mongo-db0029\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:37:44.0100916Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"35d62981-e191-4888-b0cd-8166182b359d\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0029-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/74af2414-5de0-4450-b1a1-e20281f5a44f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzRhZjI0MTQtNWRlMC00NDUwLWIxYTEtZTIwMjgxZjVhNDRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eabf6c3-cc05-4fbd-8b73-81288b1815b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmVhYmY2YzMtY2MwNS00ZmJkLThiNzMtODEyODhiMTgxNWI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" + "82f7d647-7d13-44f1-b66b-d59185bd2d4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -360,19 +360,19 @@ "11998" ], "x-ms-request-id": [ - "982771ff-da97-4638-9c0e-a30fb103e2c6" + "4cc0b3df-56d1-4e5b-8ca8-0294b8ef35fd" ], "x-ms-correlation-request-id": [ - "982771ff-da97-4638-9c0e-a30fb103e2c6" + "4cc0b3df-56d1-4e5b-8ca8-0294b8ef35fd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113458Z:982771ff-da97-4638-9c0e-a30fb103e2c6" + "SOUTHEASTASIA:20220512T133820Z:4cc0b3df-56d1-4e5b-8ca8-0294b8ef35fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:34:57 GMT" + "Thu, 12 May 2022 13:38:20 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/74af2414-5de0-4450-b1a1-e20281f5a44f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzRhZjI0MTQtNWRlMC00NDUwLWIxYTEtZTIwMjgxZjVhNDRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eabf6c3-cc05-4fbd-8b73-81288b1815b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmVhYmY2YzMtY2MwNS00ZmJkLThiNzMtODEyODhiMTgxNWI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" + "82f7d647-7d13-44f1-b66b-d59185bd2d4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -420,19 +420,19 @@ "11997" ], "x-ms-request-id": [ - "2567c2af-af98-42f2-bd59-9f51e996a197" + "719ac464-3c92-45b1-815c-eb6b7d949670" ], "x-ms-correlation-request-id": [ - "2567c2af-af98-42f2-bd59-9f51e996a197" + "719ac464-3c92-45b1-815c-eb6b7d949670" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113528Z:2567c2af-af98-42f2-bd59-9f51e996a197" + "SOUTHEASTASIA:20220512T133851Z:719ac464-3c92-45b1-815c-eb6b7d949670" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:35:27 GMT" + "Thu, 12 May 2022 13:38:50 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/74af2414-5de0-4450-b1a1-e20281f5a44f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzRhZjI0MTQtNWRlMC00NDUwLWIxYTEtZTIwMjgxZjVhNDRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eabf6c3-cc05-4fbd-8b73-81288b1815b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmVhYmY2YzMtY2MwNS00ZmJkLThiNzMtODEyODhiMTgxNWI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" + "82f7d647-7d13-44f1-b66b-d59185bd2d4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -480,19 +480,19 @@ "11996" ], "x-ms-request-id": [ - "3a4188c5-cc0f-47dc-8c8e-e1224dca1f23" + "7223a6cb-bb76-49fe-afa8-87a746054482" ], "x-ms-correlation-request-id": [ - "3a4188c5-cc0f-47dc-8c8e-e1224dca1f23" + "7223a6cb-bb76-49fe-afa8-87a746054482" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113558Z:3a4188c5-cc0f-47dc-8c8e-e1224dca1f23" + "SOUTHEASTASIA:20220512T133921Z:7223a6cb-bb76-49fe-afa8-87a746054482" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:35:57 GMT" + "Thu, 12 May 2022 13:39:21 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/74af2414-5de0-4450-b1a1-e20281f5a44f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzRhZjI0MTQtNWRlMC00NDUwLWIxYTEtZTIwMjgxZjVhNDRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eabf6c3-cc05-4fbd-8b73-81288b1815b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmVhYmY2YzMtY2MwNS00ZmJkLThiNzMtODEyODhiMTgxNWI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" + "82f7d647-7d13-44f1-b66b-d59185bd2d4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -540,19 +540,19 @@ "11995" ], "x-ms-request-id": [ - "90c5fc26-44bd-4767-9e86-3771af98b594" + "f7e31d74-27c4-4966-800c-0f237038e19b" ], "x-ms-correlation-request-id": [ - "90c5fc26-44bd-4767-9e86-3771af98b594" + "f7e31d74-27c4-4966-800c-0f237038e19b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113628Z:90c5fc26-44bd-4767-9e86-3771af98b594" + "SOUTHEASTASIA:20220512T133952Z:f7e31d74-27c4-4966-800c-0f237038e19b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:36:28 GMT" + "Thu, 12 May 2022 13:39:52 GMT" ], "Content-Length": [ "21" @@ -565,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/74af2414-5de0-4450-b1a1-e20281f5a44f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzRhZjI0MTQtNWRlMC00NDUwLWIxYTEtZTIwMjgxZjVhNDRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2eabf6c3-cc05-4fbd-8b73-81288b1815b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmVhYmY2YzMtY2MwNS00ZmJkLThiNzMtODEyODhiMTgxNWI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" + "82f7d647-7d13-44f1-b66b-d59185bd2d4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -600,79 +600,19 @@ "11994" ], "x-ms-request-id": [ - "cde1c216-e923-4e95-82f2-887c6aaa832c" - ], - "x-ms-correlation-request-id": [ - "cde1c216-e923-4e95-82f2-887c6aaa832c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113659Z:cde1c216-e923-4e95-82f2-887c6aaa832c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 11:36:58 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/74af2414-5de0-4450-b1a1-e20281f5a44f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzRhZjI0MTQtNWRlMC00NDUwLWIxYTEtZTIwMjgxZjVhNDRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "550c8305-768c-4df7-b625-2179d35bb1ef" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "0bfa3805-b4ff-45d3-8ae6-5668bbce6f19" + "bc27b0c5-2859-489f-8832-d4199ba19fb4" ], "x-ms-correlation-request-id": [ - "0bfa3805-b4ff-45d3-8ae6-5668bbce6f19" + "bc27b0c5-2859-489f-8832-d4199ba19fb4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113729Z:0bfa3805-b4ff-45d3-8ae6-5668bbce6f19" + "SOUTHEASTASIA:20220512T134023Z:bc27b0c5-2859-489f-8832-d4199ba19fb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:37:29 GMT" + "Thu, 12 May 2022 13:40:22 GMT" ], "Content-Length": [ "22" @@ -685,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9b90877-af43-4820-a8bf-01e59c67d298" + "d779ec1e-64df-444f-a948-6ccaa3d76395" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,22 +660,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "1afcba12-3ca8-4aca-b851-d091e52a994e" + "a46a3a52-3cc0-494d-a7f2-cde8527f3aa6" ], "x-ms-correlation-request-id": [ - "1afcba12-3ca8-4aca-b851-d091e52a994e" + "a46a3a52-3cc0-494d-a7f2-cde8527f3aa6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113730Z:1afcba12-3ca8-4aca-b851-d091e52a994e" + "CENTRALINDIA:20220512T134025Z:a46a3a52-3cc0-494d-a7f2-cde8527f3aa6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:37:29 GMT" + "Thu, 12 May 2022 13:40:25 GMT" ], "Content-Length": [ "160" @@ -744,23 +684,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName4 doesn't exist.\\r\\nActivityId: d9b90877-af43-4820-a8bf-01e59c67d298, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName4 doesn't exist.\\r\\nActivityId: d779ec1e-64df-444f-a948-6ccaa3d76395, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9b90877-af43-4820-a8bf-01e59c67d298" + "d779ec1e-64df-444f-a948-6ccaa3d76395" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-request-id": [ - "1a248379-1bb8-44bd-a201-ba7af730e94c" + "65432071-9ce2-4872-89d3-1f5794ef29ee" ], "x-ms-correlation-request-id": [ - "1a248379-1bb8-44bd-a201-ba7af730e94c" + "65432071-9ce2-4872-89d3-1f5794ef29ee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113801Z:1a248379-1bb8-44bd-a201-ba7af730e94c" + "CENTRALINDIA:20220512T134057Z:65432071-9ce2-4872-89d3-1f5794ef29ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:38:01 GMT" + "Thu, 12 May 2022 13:40:57 GMT" ], "Content-Length": [ "309" @@ -808,22 +748,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d9b90877-af43-4820-a8bf-01e59c67d298" + "d779ec1e-64df-444f-a948-6ccaa3d76395" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,13 +780,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/806854f1-df6f-4ead-ab5b-1a6cac7c34d2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/59952e3d-4dd4-4fb7-91e0-bbb6c286e2f4?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/806854f1-df6f-4ead-ab5b-1a6cac7c34d2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/59952e3d-4dd4-4fb7-91e0-bbb6c286e2f4?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "806854f1-df6f-4ead-ab5b-1a6cac7c34d2" + "59952e3d-4dd4-4fb7-91e0-bbb6c286e2f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,16 +801,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "e19fa0e5-61eb-4000-829a-7b6ce44f9ce1" + "6164cf3e-b3b4-44fd-912f-2ced610c452f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113730Z:e19fa0e5-61eb-4000-829a-7b6ce44f9ce1" + "CENTRALINDIA:20220512T134026Z:6164cf3e-b3b4-44fd-912f-2ced610c452f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:37:30 GMT" + "Thu, 12 May 2022 13:40:26 GMT" ], "Content-Length": [ "21" @@ -883,19 +823,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/806854f1-df6f-4ead-ab5b-1a6cac7c34d2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODA2ODU0ZjEtZGY2Zi00ZWFkLWFiNWItMWE2Y2FjN2MzNGQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/59952e3d-4dd4-4fb7-91e0-bbb6c286e2f4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTk5NTJlM2QtNGRkNC00ZmI3LTkxZTAtYmJiNmMyODZlMmY0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9b90877-af43-4820-a8bf-01e59c67d298" + "d779ec1e-64df-444f-a948-6ccaa3d76395" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -915,22 +855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "d2e8d18b-180e-45d0-96f2-3086eb0b979b" + "0174cfc4-b129-4660-bd36-d2e9de89fdac" ], "x-ms-correlation-request-id": [ - "d2e8d18b-180e-45d0-96f2-3086eb0b979b" + "0174cfc4-b129-4660-bd36-d2e9de89fdac" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113801Z:d2e8d18b-180e-45d0-96f2-3086eb0b979b" + "CENTRALINDIA:20220512T134056Z:0174cfc4-b129-4660-bd36-d2e9de89fdac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:38:01 GMT" + "Thu, 12 May 2022 13:40:56 GMT" ], "Content-Length": [ "22" @@ -943,22 +883,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e7a33d4-8926-4bee-952f-e42ced832167" + "f8e1d998-78d7-4471-bfbf-11a13e8fbe7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-request-id": [ - "68b4228f-5b7f-487c-9258-f234c07b424d" + "81a21f67-e401-409b-9835-becc9acfff40" ], "x-ms-correlation-request-id": [ - "68b4228f-5b7f-487c-9258-f234c07b424d" + "81a21f67-e401-409b-9835-becc9acfff40" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113802Z:68b4228f-5b7f-487c-9258-f234c07b424d" + "JIOINDIACENTRAL:20220512T134059Z:81a21f67-e401-409b-9835-becc9acfff40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:38:02 GMT" + "Thu, 12 May 2022 13:40:58 GMT" ], "Content-Length": [ "381" @@ -1002,26 +942,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"95yK\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"YBea\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69aab8f3-808b-4574-80c6-b01fbc4ead0a" + "a2d35954-d52d-4f08-8418-5f7dcae7d4a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1032,13 +972,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/2ab68731-fdc7-4423-8b2d-8c3d2141ccb4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/27b4cf57-b5be-48f1-a890-203b26c9567d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ab68731-fdc7-4423-8b2d-8c3d2141ccb4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/27b4cf57-b5be-48f1-a890-203b26c9567d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "2ab68731-fdc7-4423-8b2d-8c3d2141ccb4" + "27b4cf57-b5be-48f1-a890-203b26c9567d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,16 +993,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "d5abb0d5-f9ad-4e7e-a73e-a5495adb5a96" + "3439ecf7-8e80-4c42-ac02-06860a976c4e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113802Z:d5abb0d5-f9ad-4e7e-a73e-a5495adb5a96" + "JIOINDIACENTRAL:20220512T134101Z:3439ecf7-8e80-4c42-ac02-06860a976c4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:38:02 GMT" + "Thu, 12 May 2022 13:41:00 GMT" ], "Content-Length": [ "21" @@ -1075,19 +1015,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ab68731-fdc7-4423-8b2d-8c3d2141ccb4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmFiNjg3MzEtZmRjNy00NDIzLThiMmQtOGMzZDIxNDFjY2I0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/27b4cf57-b5be-48f1-a890-203b26c9567d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjdiNGNmNTctYjViZS00OGYxLWE4OTAtMjAzYjI2Yzk1NjdkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69aab8f3-808b-4574-80c6-b01fbc4ead0a" + "a2d35954-d52d-4f08-8418-5f7dcae7d4a7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1107,22 +1047,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "cc736273-d008-4ef4-96ee-77678b184585" + "b4beda52-c104-4f12-b54d-bfd94c2b916a" ], "x-ms-correlation-request-id": [ - "cc736273-d008-4ef4-96ee-77678b184585" + "b4beda52-c104-4f12-b54d-bfd94c2b916a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113833Z:cc736273-d008-4ef4-96ee-77678b184585" + "JIOINDIACENTRAL:20220512T134131Z:b4beda52-c104-4f12-b54d-bfd94c2b916a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:38:32 GMT" + "Thu, 12 May 2022 13:41:30 GMT" ], "Content-Length": [ "22" @@ -1135,19 +1075,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/2ab68731-fdc7-4423-8b2d-8c3d2141ccb4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvMmFiNjg3MzEtZmRjNy00NDIzLThiMmQtOGMzZDIxNDFjY2I0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/27b4cf57-b5be-48f1-a890-203b26c9567d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvMjdiNGNmNTctYjViZS00OGYxLWE4OTAtMjAzYjI2Yzk1NjdkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69aab8f3-808b-4574-80c6-b01fbc4ead0a" + "a2d35954-d52d-4f08-8418-5f7dcae7d4a7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1167,22 +1107,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "aa7056f3-14b2-4e7b-9588-a66a50be1274" + "85c52d42-3d2c-4e77-aff6-08e7d851eb5e" ], "x-ms-correlation-request-id": [ - "aa7056f3-14b2-4e7b-9588-a66a50be1274" + "85c52d42-3d2c-4e77-aff6-08e7d851eb5e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113833Z:aa7056f3-14b2-4e7b-9588-a66a50be1274" + "JIOINDIACENTRAL:20220512T134131Z:85c52d42-3d2c-4e77-aff6-08e7d851eb5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:38:32 GMT" + "Thu, 12 May 2022 13:41:31 GMT" ], "Content-Length": [ "462" @@ -1191,26 +1131,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"95yK\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"YBea\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 200,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 2000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4bddadb-35be-4e1b-90e5-9f75205f562c" + "e7a9ac75-47cc-4804-828a-471f0ed03a3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1221,13 +1161,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/f45643c4-38b5-4f08-92f6-7ba22e667d3d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/6d9e635d-a187-4197-bba8-53cf53a4e1bd?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f45643c4-38b5-4f08-92f6-7ba22e667d3d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6d9e635d-a187-4197-bba8-53cf53a4e1bd?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f45643c4-38b5-4f08-92f6-7ba22e667d3d" + "6d9e635d-a187-4197-bba8-53cf53a4e1bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,19 +1179,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "9fe79ec4-2cd6-4f0c-97b6-2662cbe58ecb" + "0b5c313f-2684-4f09-bde6-46e19ed32396" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T113834Z:9fe79ec4-2cd6-4f0c-97b6-2662cbe58ecb" + "JIOINDIACENTRAL:20220512T134136Z:0b5c313f-2684-4f09-bde6-46e19ed32396" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:38:34 GMT" + "Thu, 12 May 2022 13:41:35 GMT" ], "Content-Length": [ "21" @@ -1264,19 +1204,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f45643c4-38b5-4f08-92f6-7ba22e667d3d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjQ1NjQzYzQtMzhiNS00ZjA4LTkyZjYtN2JhMjJlNjY3ZDNkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6d9e635d-a187-4197-bba8-53cf53a4e1bd?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmQ5ZTYzNWQtYTE4Ny00MTk3LWJiYTgtNTNjZjUzYTRlMWJkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4bddadb-35be-4e1b-90e5-9f75205f562c" + "e7a9ac75-47cc-4804-828a-471f0ed03a3e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1296,22 +1236,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-request-id": [ - "7b460009-cee9-4540-bfd5-58080b9a169a" + "c4a538fe-a6de-4b8b-9ce4-542bc7604f7d" ], "x-ms-correlation-request-id": [ - "7b460009-cee9-4540-bfd5-58080b9a169a" + "c4a538fe-a6de-4b8b-9ce4-542bc7604f7d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T113924Z:7b460009-cee9-4540-bfd5-58080b9a169a" + "JIOINDIACENTRAL:20220512T134207Z:c4a538fe-a6de-4b8b-9ce4-542bc7604f7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:39:24 GMT" + "Thu, 12 May 2022 13:42:06 GMT" ], "Content-Length": [ "22" @@ -1324,19 +1264,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/f45643c4-38b5-4f08-92f6-7ba22e667d3d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzL2Y0NTY0M2M0LTM4YjUtNGYwOC05MmY2LTdiYTIyZTY2N2QzZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/6d9e635d-a187-4197-bba8-53cf53a4e1bd?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzLzZkOWU2MzVkLWExODctNDE5Ny1iYmE4LTUzY2Y1M2E0ZTFiZD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4bddadb-35be-4e1b-90e5-9f75205f562c" + "e7a9ac75-47cc-4804-828a-471f0ed03a3e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1356,22 +1296,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11987" ], "x-ms-request-id": [ - "f5461146-3212-484d-a9d2-8223ac60a6b8" + "44966f8b-14ff-4ec8-be03-241279aa8045" ], "x-ms-correlation-request-id": [ - "f5461146-3212-484d-a9d2-8223ac60a6b8" + "44966f8b-14ff-4ec8-be03-241279aa8045" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T113925Z:f5461146-3212-484d-a9d2-8223ac60a6b8" + "JIOINDIACENTRAL:20220512T134207Z:44966f8b-14ff-4ec8-be03-241279aa8045" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:39:24 GMT" + "Thu, 12 May 2022 13:42:06 GMT" ], "Content-Length": [ "433" @@ -1380,26 +1320,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"95yK\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"YBea\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 2000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff28c97d-d5bb-4788-8e66-b24ca593a999" + "a59624d7-3f37-4853-9020-30583d3072b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1419,22 +1359,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-request-id": [ - "b34a392f-9d8a-4abb-9a4f-2667d37746d9" + "0bee41be-797d-4de0-a7f9-a559389595e2" ], "x-ms-correlation-request-id": [ - "b34a392f-9d8a-4abb-9a4f-2667d37746d9" + "0bee41be-797d-4de0-a7f9-a559389595e2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T113926Z:b34a392f-9d8a-4abb-9a4f-2667d37746d9" + "CENTRALINDIA:20220512T134209Z:0bee41be-797d-4de0-a7f9-a559389595e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:39:25 GMT" + "Thu, 12 May 2022 13:42:09 GMT" ], "Content-Length": [ "181" @@ -1443,23 +1383,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName4'.'collectionName' doesn't exist.\\r\\nActivityId: ff28c97d-d5bb-4788-8e66-b24ca593a999, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName4'.'collectionName' doesn't exist.\\r\\nActivityId: a59624d7-3f37-4853-9020-30583d3072b5, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff28c97d-d5bb-4788-8e66-b24ca593a999" + "a59624d7-3f37-4853-9020-30583d3072b5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1479,22 +1419,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11989" ], "x-ms-request-id": [ - "e02d0ee6-09c1-4414-956a-cac4cc25e0bd" + "7d08b0cd-a573-41e2-a270-5f834e75de1b" ], "x-ms-correlation-request-id": [ - "e02d0ee6-09c1-4414-956a-cac4cc25e0bd" + "7d08b0cd-a573-41e2-a270-5f834e75de1b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T113958Z:e02d0ee6-09c1-4414-956a-cac4cc25e0bd" + "CENTRALINDIA:20220512T134242Z:7d08b0cd-a573-41e2-a270-5f834e75de1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:39:58 GMT" + "Thu, 12 May 2022 13:42:41 GMT" ], "Content-Length": [ "434" @@ -1507,22 +1447,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collectionName\",\r\n \"shardKey\": {\r\n \"shardKeyPath\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ff28c97d-d5bb-4788-8e66-b24ca593a999" + "a59624d7-3f37-4853-9020-30583d3072b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1539,13 +1479,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/c8c29a8d-1f6a-44ac-9b35-bf80fb09e4e0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/d546197b-dd7f-4a4a-bbfe-b9fcda8a6fe0?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c8c29a8d-1f6a-44ac-9b35-bf80fb09e4e0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d546197b-dd7f-4a4a-bbfe-b9fcda8a6fe0?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c8c29a8d-1f6a-44ac-9b35-bf80fb09e4e0" + "d546197b-dd7f-4a4a-bbfe-b9fcda8a6fe0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,19 +1497,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "9357e6ca-19a7-4895-8b83-4faefc106ee3" + "b79c5596-16f0-4bd6-8c06-5e6b46431c89" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T113927Z:9357e6ca-19a7-4895-8b83-4faefc106ee3" + "CENTRALINDIA:20220512T134210Z:b79c5596-16f0-4bd6-8c06-5e6b46431c89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:39:26 GMT" + "Thu, 12 May 2022 13:42:10 GMT" ], "Content-Length": [ "21" @@ -1582,19 +1522,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c8c29a8d-1f6a-44ac-9b35-bf80fb09e4e0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzhjMjlhOGQtMWY2YS00NGFjLTliMzUtYmY4MGZiMDllNGUwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d546197b-dd7f-4a4a-bbfe-b9fcda8a6fe0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDU0NjE5N2ItZGQ3Zi00YTRhLWJiZmUtYjlmY2RhOGE2ZmUwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff28c97d-d5bb-4788-8e66-b24ca593a999" + "a59624d7-3f37-4853-9020-30583d3072b5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1614,22 +1554,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-request-id": [ - "11ff5538-ceea-4726-840b-d63243e950ea" + "e8ccc1c7-320b-454d-a487-df2f231ce92a" ], "x-ms-correlation-request-id": [ - "11ff5538-ceea-4726-840b-d63243e950ea" + "e8ccc1c7-320b-454d-a487-df2f231ce92a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T113958Z:11ff5538-ceea-4726-840b-d63243e950ea" + "CENTRALINDIA:20220512T134241Z:e8ccc1c7-320b-454d-a487-df2f231ce92a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:39:57 GMT" + "Thu, 12 May 2022 13:42:40 GMT" ], "Content-Length": [ "22" @@ -1642,22 +1582,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3158055-b42c-4a96-8c4b-9ddf9a4df4b6" + "7584daf1-b723-4c53-b223-14ef23d3b368" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1677,22 +1617,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11988" ], "x-ms-request-id": [ - "f8280108-542d-4575-baca-eae62d38b208" + "ba57bb06-0beb-4b64-a7d6-9ac04cab7b03" ], "x-ms-correlation-request-id": [ - "f8280108-542d-4575-baca-eae62d38b208" + "ba57bb06-0beb-4b64-a7d6-9ac04cab7b03" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T113959Z:f8280108-542d-4575-baca-eae62d38b208" + "CENTRALINDIA:20220512T134243Z:ba57bb06-0beb-4b64-a7d6-9ac04cab7b03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:39:58 GMT" + "Thu, 12 May 2022 13:42:42 GMT" ], "Content-Length": [ "419" @@ -1701,26 +1641,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"4dis\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"kSgL\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fd6b176-76b9-4157-9e01-f4ecd44c95e2" + "4fbc8640-7f67-4fff-aed9-4dd82bf75a2a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1731,13 +1671,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/fbfb44a7-36eb-4d5e-a683-3c09d1fcea54?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/01fdbbb3-a3f4-4e7b-b5b0-392f3b8664e2?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbfb44a7-36eb-4d5e-a683-3c09d1fcea54?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/01fdbbb3-a3f4-4e7b-b5b0-392f3b8664e2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "fbfb44a7-36eb-4d5e-a683-3c09d1fcea54" + "01fdbbb3-a3f4-4e7b-b5b0-392f3b8664e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1752,16 +1692,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "bd2c28ff-9c9b-4c9d-b58b-51ac3cf92b2f" + "50b47f24-6b56-4e8a-ad80-c4eb18a53210" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114000Z:bd2c28ff-9c9b-4c9d-b58b-51ac3cf92b2f" + "CENTRALINDIA:20220512T134244Z:50b47f24-6b56-4e8a-ad80-c4eb18a53210" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:39:59 GMT" + "Thu, 12 May 2022 13:42:44 GMT" ], "Content-Length": [ "21" @@ -1774,19 +1714,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbfb44a7-36eb-4d5e-a683-3c09d1fcea54?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJmYjQ0YTctMzZlYi00ZDVlLWE2ODMtM2MwOWQxZmNlYTU0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/01fdbbb3-a3f4-4e7b-b5b0-392f3b8664e2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDFmZGJiYjMtYTNmNC00ZTdiLWI1YjAtMzkyZjNiODY2NGUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fd6b176-76b9-4157-9e01-f4ecd44c95e2" + "4fbc8640-7f67-4fff-aed9-4dd82bf75a2a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1806,22 +1746,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "66be589d-1af2-4c64-9c34-e2412af4049a" + "5a16f85b-4c5c-4ba0-817b-13d2f72b748c" ], "x-ms-correlation-request-id": [ - "66be589d-1af2-4c64-9c34-e2412af4049a" + "5a16f85b-4c5c-4ba0-817b-13d2f72b748c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114030Z:66be589d-1af2-4c64-9c34-e2412af4049a" + "CENTRALINDIA:20220512T134315Z:5a16f85b-4c5c-4ba0-817b-13d2f72b748c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:40:29 GMT" + "Thu, 12 May 2022 13:43:14 GMT" ], "Content-Length": [ "22" @@ -1834,19 +1774,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/fbfb44a7-36eb-4d5e-a683-3c09d1fcea54?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvZmJmYjQ0YTctMzZlYi00ZDVlLWE2ODMtM2MwOWQxZmNlYTU0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/01fdbbb3-a3f4-4e7b-b5b0-392f3b8664e2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvMDFmZGJiYjMtYTNmNC00ZTdiLWI1YjAtMzkyZjNiODY2NGUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fd6b176-76b9-4157-9e01-f4ecd44c95e2" + "4fbc8640-7f67-4fff-aed9-4dd82bf75a2a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1866,22 +1806,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "2cf4f537-27a1-45e0-bd14-6e4271bf4a01" + "9e200802-5109-45c4-a0e6-59c1b435e9e3" ], "x-ms-correlation-request-id": [ - "2cf4f537-27a1-45e0-bd14-6e4271bf4a01" + "9e200802-5109-45c4-a0e6-59c1b435e9e3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114030Z:2cf4f537-27a1-45e0-bd14-6e4271bf4a01" + "CENTRALINDIA:20220512T134315Z:9e200802-5109-45c4-a0e6-59c1b435e9e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:40:29 GMT" + "Thu, 12 May 2022 13:43:15 GMT" ], "Content-Length": [ "501" @@ -1890,26 +1830,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"4dis\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"kSgL\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 100,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 1000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf38e551-a2f0-4aca-b431-0d0da5f89c02" + "0bdda1ba-40f6-46bc-8f7c-b041d80bc6c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1920,13 +1860,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/dbe9929c-c125-4ece-87e2-b800d70fd883?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/86f7eebc-4322-4f40-b94a-ced8720e2668?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dbe9929c-c125-4ece-87e2-b800d70fd883?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/86f7eebc-4322-4f40-b94a-ced8720e2668?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "dbe9929c-c125-4ece-87e2-b800d70fd883" + "86f7eebc-4322-4f40-b94a-ced8720e2668" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1938,19 +1878,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "cc04a472-770d-41ff-8513-dcd1da88b9b5" + "50c6198e-8b03-4a1c-87e4-383913423fff" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114031Z:cc04a472-770d-41ff-8513-dcd1da88b9b5" + "CENTRALINDIA:20220512T134317Z:50c6198e-8b03-4a1c-87e4-383913423fff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:40:30 GMT" + "Thu, 12 May 2022 13:43:16 GMT" ], "Content-Length": [ "21" @@ -1963,19 +1903,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dbe9929c-c125-4ece-87e2-b800d70fd883?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGJlOTkyOWMtYzEyNS00ZWNlLTg3ZTItYjgwMGQ3MGZkODgzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/86f7eebc-4322-4f40-b94a-ced8720e2668?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODZmN2VlYmMtNDMyMi00ZjQwLWI5NGEtY2VkODcyMGUyNjY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf38e551-a2f0-4aca-b431-0d0da5f89c02" + "0bdda1ba-40f6-46bc-8f7c-b041d80bc6c1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1995,22 +1935,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "68325bb7-2688-4a9b-bf61-191d17c57dd7" + "4693fa52-9f0c-47ef-a2ca-300c2a97b4b2" ], "x-ms-correlation-request-id": [ - "68325bb7-2688-4a9b-bf61-191d17c57dd7" + "4693fa52-9f0c-47ef-a2ca-300c2a97b4b2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114101Z:68325bb7-2688-4a9b-bf61-191d17c57dd7" + "CENTRALINDIA:20220512T134347Z:4693fa52-9f0c-47ef-a2ca-300c2a97b4b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:41:01 GMT" + "Thu, 12 May 2022 13:43:47 GMT" ], "Content-Length": [ "22" @@ -2023,19 +1963,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/dbe9929c-c125-4ece-87e2-b800d70fd883?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzL2RiZTk5MjljLWMxMjUtNGVjZS04N2UyLWI4MDBkNzBmZDg4Mz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/86f7eebc-4322-4f40-b94a-ced8720e2668?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzLzg2ZjdlZWJjLTQzMjItNGY0MC1iOTRhLWNlZDg3MjBlMjY2OD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf38e551-a2f0-4aca-b431-0d0da5f89c02" + "0bdda1ba-40f6-46bc-8f7c-b041d80bc6c1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2055,22 +1995,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "303f58e5-4356-46a5-ad36-c928bc9e6d77" + "42b7d8bb-0e3d-4535-9ed7-21bb699e0760" ], "x-ms-correlation-request-id": [ - "303f58e5-4356-46a5-ad36-c928bc9e6d77" + "42b7d8bb-0e3d-4535-9ed7-21bb699e0760" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114102Z:303f58e5-4356-46a5-ad36-c928bc9e6d77" + "CENTRALINDIA:20220512T134348Z:42b7d8bb-0e3d-4535-9ed7-21bb699e0760" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:41:01 GMT" + "Thu, 12 May 2022 13:43:48 GMT" ], "Content-Length": [ "472" @@ -2079,26 +2019,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"4dis\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"kSgL\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cd025f5-d1fa-4f89-bdc3-5046cb68c1c4" + "cfb8e428-f290-4edf-9967-44374cbd1d41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2109,13 +2049,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/f9088621-3939-4eb7-b20c-b9e658ce1b77?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/939d29e2-ff7d-4832-8e40-f3454ec3290b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9088621-3939-4eb7-b20c-b9e658ce1b77?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/939d29e2-ff7d-4832-8e40-f3454ec3290b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f9088621-3939-4eb7-b20c-b9e658ce1b77" + "939d29e2-ff7d-4832-8e40-f3454ec3290b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2127,19 +2067,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "c72bfb57-b02d-450f-b046-fc16481db0e0" + "5880f565-5f75-4329-ab97-be0164f2ab5b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114102Z:c72bfb57-b02d-450f-b046-fc16481db0e0" + "CENTRALINDIA:20220512T134350Z:5880f565-5f75-4329-ab97-be0164f2ab5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:41:02 GMT" + "Thu, 12 May 2022 13:43:49 GMT" ], "Content-Length": [ "21" @@ -2152,22 +2092,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98ebdefe-3e5a-4300-adc1-9aafd62de187" + "0c3d749a-97df-41c7-b4b1-fd50e64fdcc2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2178,13 +2118,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/f4a91c99-6b43-4f15-ad0c-e5fbcaac7355?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/164ac556-d553-4f31-8cca-3c47d320b2bc?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f4a91c99-6b43-4f15-ad0c-e5fbcaac7355?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/164ac556-d553-4f31-8cca-3c47d320b2bc?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f4a91c99-6b43-4f15-ad0c-e5fbcaac7355" + "164ac556-d553-4f31-8cca-3c47d320b2bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2196,19 +2136,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "25826541-fe65-4462-9904-a05c3c8a1835" + "f4187c2c-4d7e-4e67-aa6b-489d4c8c7703" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T114208Z:25826541-fe65-4462-9904-a05c3c8a1835" + "CENTRALINDIA:20220512T134456Z:f4187c2c-4d7e-4e67-aa6b-489d4c8c7703" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:42:07 GMT" + "Thu, 12 May 2022 13:44:55 GMT" ], "Content-Length": [ "21" @@ -2221,19 +2161,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9088621-3939-4eb7-b20c-b9e658ce1b77?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjkwODg2MjEtMzkzOS00ZWI3LWIyMGMtYjllNjU4Y2UxYjc3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/939d29e2-ff7d-4832-8e40-f3454ec3290b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTM5ZDI5ZTItZmY3ZC00ODMyLThlNDAtZjM0NTRlYzMyOTBiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cd025f5-d1fa-4f89-bdc3-5046cb68c1c4" + "cfb8e428-f290-4edf-9967-44374cbd1d41" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2253,22 +2193,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "01b3736e-2677-4ce5-b89c-5ec7df78bfe9" + "26a0169a-de6b-4915-a643-be0b5d0fbaae" ], "x-ms-correlation-request-id": [ - "01b3736e-2677-4ce5-b89c-5ec7df78bfe9" + "26a0169a-de6b-4915-a643-be0b5d0fbaae" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114132Z:01b3736e-2677-4ce5-b89c-5ec7df78bfe9" + "CENTRALINDIA:20220512T134420Z:26a0169a-de6b-4915-a643-be0b5d0fbaae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:41:32 GMT" + "Thu, 12 May 2022 13:44:20 GMT" ], "Content-Length": [ "22" @@ -2281,19 +2221,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/f9088621-3939-4eb7-b20c-b9e658ce1b77?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9mOTA4ODYyMS0zOTM5LTRlYjctYjIwYy1iOWU2NThjZTFiNzc/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/939d29e2-ff7d-4832-8e40-f3454ec3290b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvb3BlcmF0aW9uUmVzdWx0cy85MzlkMjllMi1mZjdkLTQ4MzItOGU0MC1mMzQ1NGVjMzI5MGI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cd025f5-d1fa-4f89-bdc3-5046cb68c1c4" + "cfb8e428-f290-4edf-9967-44374cbd1d41" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2313,22 +2253,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "78f4e8b6-aa2b-4426-8b01-b1487db6943c" + "4649a21f-912a-455b-8093-47552f14bc1c" ], "x-ms-correlation-request-id": [ - "78f4e8b6-aa2b-4426-8b01-b1487db6943c" + "4649a21f-912a-455b-8093-47552f14bc1c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20220308T114133Z:78f4e8b6-aa2b-4426-8b01-b1487db6943c" + "CENTRALINDIA:20220512T134420Z:4649a21f-912a-455b-8093-47552f14bc1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:41:32 GMT" + "Thu, 12 May 2022 13:44:20 GMT" ], "Content-Type": [ "application/json" @@ -2338,22 +2278,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3e4db90-5b66-4237-b9bb-2bb00d544bec" + "38f91b99-7b00-498b-ae21-3215752ecf19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2364,13 +2304,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/ec55dafb-b676-47a2-9447-2a6b1f4964db?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/df740adc-4fb5-400c-81cf-e512dfcb170d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ec55dafb-b676-47a2-9447-2a6b1f4964db?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/df740adc-4fb5-400c-81cf-e512dfcb170d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ec55dafb-b676-47a2-9447-2a6b1f4964db" + "df740adc-4fb5-400c-81cf-e512dfcb170d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2385,16 +2325,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "bc8e47de-3ef7-449c-bd66-3fb05fc4b8da" + "49b94bbb-dbe0-4b80-b597-12be11676bea" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T114135Z:bc8e47de-3ef7-449c-bd66-3fb05fc4b8da" + "CENTRALINDIA:20220512T134422Z:49b94bbb-dbe0-4b80-b597-12be11676bea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:41:34 GMT" + "Thu, 12 May 2022 13:44:22 GMT" ], "Content-Length": [ "21" @@ -2407,22 +2347,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95b636a9-bd96-4575-8a27-6f3c64555c1d" + "06dc5fd2-f3d1-4fb5-8c9a-4cf2319a748c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2433,13 +2373,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/e8764907-86cb-47e9-b727-6fad387f67b4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/14f87d53-d483-49b1-9ebd-4e4008ce169f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8764907-86cb-47e9-b727-6fad387f67b4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/14f87d53-d483-49b1-9ebd-4e4008ce169f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e8764907-86cb-47e9-b727-6fad387f67b4" + "14f87d53-d483-49b1-9ebd-4e4008ce169f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,19 +2391,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "2a70ca60-ea1c-4952-956f-a518740f93c8" + "ecfe6b80-e166-4e54-aa97-f32962256251" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T114242Z:2a70ca60-ea1c-4952-956f-a518740f93c8" + "JIOINDIACENTRAL:20220512T134530Z:ecfe6b80-e166-4e54-aa97-f32962256251" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:42:41 GMT" + "Thu, 12 May 2022 13:45:29 GMT" ], "Content-Length": [ "21" @@ -2476,19 +2416,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ec55dafb-b676-47a2-9447-2a6b1f4964db?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWM1NWRhZmItYjY3Ni00N2EyLTk0NDctMmE2YjFmNDk2NGRiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/df740adc-4fb5-400c-81cf-e512dfcb170d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGY3NDBhZGMtNGZiNS00MDBjLTgxY2YtZTUxMmRmY2IxNzBkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3e4db90-5b66-4237-b9bb-2bb00d544bec" + "38f91b99-7b00-498b-ae21-3215752ecf19" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2508,22 +2448,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11990" ], "x-ms-request-id": [ - "ab77bc2f-9336-425b-97fb-c749003c8a2f" + "ddba94c9-3c57-4d3c-850c-fbfdd0bd475c" ], "x-ms-correlation-request-id": [ - "ab77bc2f-9336-425b-97fb-c749003c8a2f" + "ddba94c9-3c57-4d3c-850c-fbfdd0bd475c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T114205Z:ab77bc2f-9336-425b-97fb-c749003c8a2f" + "CENTRALINDIA:20220512T134452Z:ddba94c9-3c57-4d3c-850c-fbfdd0bd475c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:42:05 GMT" + "Thu, 12 May 2022 13:44:51 GMT" ], "Content-Length": [ "22" @@ -2536,19 +2476,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/ec55dafb-b676-47a2-9447-2a6b1f4964db?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy9lYzU1ZGFmYi1iNjc2LTQ3YTItOTQ0Ny0yYTZiMWY0OTY0ZGI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/df740adc-4fb5-400c-81cf-e512dfcb170d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy9kZjc0MGFkYy00ZmI1LTQwMGMtODFjZi1lNTEyZGZjYjE3MGQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3e4db90-5b66-4237-b9bb-2bb00d544bec" + "38f91b99-7b00-498b-ae21-3215752ecf19" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2568,22 +2508,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11989" ], "x-ms-request-id": [ - "fdc26548-e094-414a-81c1-0c915adefb46" + "2b0de696-3406-4a70-a3c8-e4d5069fc4f3" ], "x-ms-correlation-request-id": [ - "fdc26548-e094-414a-81c1-0c915adefb46" + "2b0de696-3406-4a70-a3c8-e4d5069fc4f3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T114206Z:fdc26548-e094-414a-81c1-0c915adefb46" + "CENTRALINDIA:20220512T134453Z:2b0de696-3406-4a70-a3c8-e4d5069fc4f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:42:05 GMT" + "Thu, 12 May 2022 13:44:52 GMT" ], "Content-Type": [ "application/json" @@ -2593,19 +2533,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f4a91c99-6b43-4f15-ad0c-e5fbcaac7355?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjRhOTFjOTktNmI0My00ZjE1LWFkMGMtZTVmYmNhYWM3MzU1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/164ac556-d553-4f31-8cca-3c47d320b2bc?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTY0YWM1NTYtZDU1My00ZjMxLThjY2EtM2M0N2QzMjBiMmJjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98ebdefe-3e5a-4300-adc1-9aafd62de187" + "0c3d749a-97df-41c7-b4b1-fd50e64fdcc2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2625,22 +2565,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "1eb88767-57b3-4e96-894c-7d97c64c4402" + "d9ea8b07-61be-4c97-8110-6adf081633f1" ], "x-ms-correlation-request-id": [ - "1eb88767-57b3-4e96-894c-7d97c64c4402" + "d9ea8b07-61be-4c97-8110-6adf081633f1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T114239Z:1eb88767-57b3-4e96-894c-7d97c64c4402" + "CENTRALINDIA:20220512T134526Z:d9ea8b07-61be-4c97-8110-6adf081633f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:42:38 GMT" + "Thu, 12 May 2022 13:45:26 GMT" ], "Content-Length": [ "22" @@ -2653,19 +2593,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/f4a91c99-6b43-4f15-ad0c-e5fbcaac7355?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9mNGE5MWM5OS02YjQzLTRmMTUtYWQwYy1lNWZiY2FhYzczNTU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/collections/collectionName/operationResults/164ac556-d553-4f31-8cca-3c47d320b2bc?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvb3BlcmF0aW9uUmVzdWx0cy8xNjRhYzU1Ni1kNTUzLTRmMzEtOGNjYS0zYzQ3ZDMyMGIyYmM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98ebdefe-3e5a-4300-adc1-9aafd62de187" + "0c3d749a-97df-41c7-b4b1-fd50e64fdcc2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2685,22 +2625,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-request-id": [ - "d99d3d93-8688-4661-b4b3-448b709fb8d3" + "6e13ea91-c7a6-4746-8d75-576106c5a9a2" ], "x-ms-correlation-request-id": [ - "d99d3d93-8688-4661-b4b3-448b709fb8d3" + "6e13ea91-c7a6-4746-8d75-576106c5a9a2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T114239Z:d99d3d93-8688-4661-b4b3-448b709fb8d3" + "CENTRALINDIA:20220512T134527Z:6e13ea91-c7a6-4746-8d75-576106c5a9a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:42:38 GMT" + "Thu, 12 May 2022 13:45:27 GMT" ], "Content-Type": [ "application/json" @@ -2710,19 +2650,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8764907-86cb-47e9-b727-6fad387f67b4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTg3NjQ5MDctODZjYi00N2U5LWI3MjctNmZhZDM4N2Y2N2I0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/14f87d53-d483-49b1-9ebd-4e4008ce169f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTRmODdkNTMtZDQ4My00OWIxLTllYmQtNGU0MDA4Y2UxNjlmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95b636a9-bd96-4575-8a27-6f3c64555c1d" + "06dc5fd2-f3d1-4fb5-8c9a-4cf2319a748c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2742,22 +2682,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-request-id": [ - "c6e24d49-3e6d-4cbc-be24-8a0556c33e54" + "4d14dba0-f741-43be-b2a8-3a619907bcfd" ], "x-ms-correlation-request-id": [ - "c6e24d49-3e6d-4cbc-be24-8a0556c33e54" + "4d14dba0-f741-43be-b2a8-3a619907bcfd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T114312Z:c6e24d49-3e6d-4cbc-be24-8a0556c33e54" + "JIOINDIACENTRAL:20220512T134601Z:4d14dba0-f741-43be-b2a8-3a619907bcfd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:43:11 GMT" + "Thu, 12 May 2022 13:46:00 GMT" ], "Content-Length": [ "22" @@ -2770,19 +2710,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/e8764907-86cb-47e9-b727-6fad387f67b4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy9lODc2NDkwNy04NmNiLTQ3ZTktYjcyNy02ZmFkMzg3ZjY3YjQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup29/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0029/mongodbDatabases/dbName4/operationResults/14f87d53-d483-49b1-9ebd-4e4008ce169f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAyOS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy8xNGY4N2Q1My1kNDgzLTQ5YjEtOWViZC00ZTQwMDhjZTE2OWY/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95b636a9-bd96-4575-8a27-6f3c64555c1d" + "06dc5fd2-f3d1-4fb5-8c9a-4cf2319a748c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2802,22 +2742,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11988" ], "x-ms-request-id": [ - "4e6af3f0-25d9-47c2-a35b-4a6701779c14" + "6391061a-2f7e-47c5-9161-05140921a804" ], "x-ms-correlation-request-id": [ - "4e6af3f0-25d9-47c2-a35b-4a6701779c14" + "6391061a-2f7e-47c5-9161-05140921a804" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T114312Z:4e6af3f0-25d9-47c2-a35b-4a6701779c14" + "JIOINDIACENTRAL:20220512T134601Z:6391061a-2f7e-47c5-9161-05140921a804" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 11:43:11 GMT" + "Thu, 12 May 2022 13:46:00 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoOperationsCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoOperationsCmdlets.json index cf82dd93aa89..ab76eb7478a3 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoOperationsCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoOperationsCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07587521-7aac-4ace-a5ff-81c1e65c92f6" + "adac8b79-5e9f-490d-b147-8f6a89075c13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "99f3da8a-fa3c-410d-8071-0244e75a41bb" + "4fd8115d-9b46-4e1e-8f7f-a01e4da2e3a4" ], "x-ms-correlation-request-id": [ - "99f3da8a-fa3c-410d-8071-0244e75a41bb" + "4fd8115d-9b46-4e1e-8f7f-a01e4da2e3a4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133139Z:99f3da8a-fa3c-410d-8071-0244e75a41bb" + "JIOINDIACENTRAL:20220512T132015Z:4fd8115d-9b46-4e1e-8f7f-a01e4da2e3a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:31:38 GMT" + "Thu, 12 May 2022 13:20:15 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9280b0-179e-43fb-a4a6-ac3a1863dfb4" + "4ca73f56-b0d7-46fc-a425-12097917b629" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "7f579938-9ad7-4138-a4ce-c100ce763292" + "83e1a43c-5809-4b81-92cc-977a003cfcc7" ], "x-ms-correlation-request-id": [ - "7f579938-9ad7-4138-a4ce-c100ce763292" + "83e1a43c-5809-4b81-92cc-977a003cfcc7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133139Z:7f579938-9ad7-4138-a4ce-c100ce763292" + "JIOINDIACENTRAL:20220512T132016Z:83e1a43c-5809-4b81-92cc-977a003cfcc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:31:39 GMT" + "Thu, 12 May 2022 13:20:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9280b0-179e-43fb-a4a6-ac3a1863dfb4" + "4ca73f56-b0d7-46fc-a425-12097917b629" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11987" ], "x-ms-request-id": [ - "92b181e5-8266-4aee-8831-a6a1deea185a" + "2c39b65c-ab06-4c97-86bd-46614f92049a" ], "x-ms-correlation-request-id": [ - "92b181e5-8266-4aee-8831-a6a1deea185a" + "2c39b65c-ab06-4c97-86bd-46614f92049a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133424Z:92b181e5-8266-4aee-8831-a6a1deea185a" + "JIOINDIACENTRAL:20220512T132329Z:2c39b65c-ab06-4c97-86bd-46614f92049a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:24 GMT" + "Thu, 12 May 2022 13:23:28 GMT" ], "Content-Length": [ "2479" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044\",\r\n \"name\": \"mongo-db00044\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T13:34:15.5089699Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db00044.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db00044.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d2a51c62-5764-4104-a208-ae7c40836b23\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db00044-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db00044-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db00044-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044\",\r\n \"name\": \"mongo-db00044\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:22:40.4968174Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db00044.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db00044.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"737dc2b9-8019-42b8-95d1-815360642361\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db00044-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db00044-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db00044-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9280b0-179e-43fb-a4a6-ac3a1863dfb4" + "4ca73f56-b0d7-46fc-a425-12097917b629" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -219,13 +219,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/operationResults/f18439ab-4434-4438-94fd-aedd82d70514?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/operationResults/6c6477fd-31e6-44eb-ae84-063bd4ea56f1?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f18439ab-4434-4438-94fd-aedd82d70514" + "6c6477fd-31e6-44eb-ae84-063bd4ea56f1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f18439ab-4434-4438-94fd-aedd82d70514?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c6477fd-31e6-44eb-ae84-063bd4ea56f1?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,19 +237,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "9f322c5d-f84d-45c8-9e19-3459b03866a8" + "033a7075-6f85-4f82-854c-af0a6ad956b1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133150Z:9f322c5d-f84d-45c8-9e19-3459b03866a8" + "JIOINDIACENTRAL:20220512T132027Z:033a7075-6f85-4f82-854c-af0a6ad956b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:31:49 GMT" + "Thu, 12 May 2022 13:20:26 GMT" ], "Content-Length": [ "2075" @@ -258,23 +258,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044\",\r\n \"name\": \"mongo-db00044\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T13:31:46.3699305Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"d2a51c62-5764-4104-a208-ae7c40836b23\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044\",\r\n \"name\": \"mongo-db00044\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:20:24.2836239Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"737dc2b9-8019-42b8-95d1-815360642361\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db00044-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f18439ab-4434-4438-94fd-aedd82d70514?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjE4NDM5YWItNDQzNC00NDM4LTk0ZmQtYWVkZDgyZDcwNTE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c6477fd-31e6-44eb-ae84-063bd4ea56f1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmM2NDc3ZmQtMzFlNi00NGViLWFlODQtMDYzYmQ0ZWE1NmYxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9280b0-179e-43fb-a4a6-ac3a1863dfb4" + "4ca73f56-b0d7-46fc-a425-12097917b629" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -294,22 +294,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "0c73c4cd-286f-4115-8d83-eacc9d44bd2d" + "d4e0cbed-ca40-4fc8-a4c8-6eb4dde46262" ], "x-ms-correlation-request-id": [ - "0c73c4cd-286f-4115-8d83-eacc9d44bd2d" + "d4e0cbed-ca40-4fc8-a4c8-6eb4dde46262" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133220Z:0c73c4cd-286f-4115-8d83-eacc9d44bd2d" + "JIOINDIACENTRAL:20220512T132057Z:d4e0cbed-ca40-4fc8-a4c8-6eb4dde46262" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:32:19 GMT" + "Thu, 12 May 2022 13:20:56 GMT" ], "Content-Length": [ "21" @@ -322,19 +322,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f18439ab-4434-4438-94fd-aedd82d70514?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjE4NDM5YWItNDQzNC00NDM4LTk0ZmQtYWVkZDgyZDcwNTE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c6477fd-31e6-44eb-ae84-063bd4ea56f1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmM2NDc3ZmQtMzFlNi00NGViLWFlODQtMDYzYmQ0ZWE1NmYxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9280b0-179e-43fb-a4a6-ac3a1863dfb4" + "4ca73f56-b0d7-46fc-a425-12097917b629" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -354,22 +354,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11992" ], "x-ms-request-id": [ - "a6e799a5-131f-4d87-b2b3-2a643ad7f033" + "250c76cd-29fe-4a1a-b416-074ef024518f" ], "x-ms-correlation-request-id": [ - "a6e799a5-131f-4d87-b2b3-2a643ad7f033" + "250c76cd-29fe-4a1a-b416-074ef024518f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133251Z:a6e799a5-131f-4d87-b2b3-2a643ad7f033" + "JIOINDIACENTRAL:20220512T132127Z:250c76cd-29fe-4a1a-b416-074ef024518f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:32:50 GMT" + "Thu, 12 May 2022 13:21:27 GMT" ], "Content-Length": [ "21" @@ -382,19 +382,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f18439ab-4434-4438-94fd-aedd82d70514?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjE4NDM5YWItNDQzNC00NDM4LTk0ZmQtYWVkZDgyZDcwNTE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c6477fd-31e6-44eb-ae84-063bd4ea56f1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmM2NDc3ZmQtMzFlNi00NGViLWFlODQtMDYzYmQ0ZWE1NmYxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9280b0-179e-43fb-a4a6-ac3a1863dfb4" + "4ca73f56-b0d7-46fc-a425-12097917b629" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -414,22 +414,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11991" ], "x-ms-request-id": [ - "14da0c23-e3d4-4230-9b5b-5457506f9389" + "a38602b4-0d7b-433c-91eb-e8c9f6fc7792" ], "x-ms-correlation-request-id": [ - "14da0c23-e3d4-4230-9b5b-5457506f9389" + "a38602b4-0d7b-433c-91eb-e8c9f6fc7792" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133322Z:14da0c23-e3d4-4230-9b5b-5457506f9389" + "JIOINDIACENTRAL:20220512T132157Z:a38602b4-0d7b-433c-91eb-e8c9f6fc7792" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:33:22 GMT" + "Thu, 12 May 2022 13:21:57 GMT" ], "Content-Length": [ "21" @@ -442,19 +442,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f18439ab-4434-4438-94fd-aedd82d70514?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjE4NDM5YWItNDQzNC00NDM4LTk0ZmQtYWVkZDgyZDcwNTE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c6477fd-31e6-44eb-ae84-063bd4ea56f1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmM2NDc3ZmQtMzFlNi00NGViLWFlODQtMDYzYmQ0ZWE1NmYxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9280b0-179e-43fb-a4a6-ac3a1863dfb4" + "4ca73f56-b0d7-46fc-a425-12097917b629" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -474,22 +474,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11990" ], "x-ms-request-id": [ - "1b281ab6-e9c8-45b6-8951-554a219d5b25" + "1b57897f-7210-4862-a437-1444c8e97bac" ], "x-ms-correlation-request-id": [ - "1b281ab6-e9c8-45b6-8951-554a219d5b25" + "1b57897f-7210-4862-a437-1444c8e97bac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133353Z:1b281ab6-e9c8-45b6-8951-554a219d5b25" + "JIOINDIACENTRAL:20220512T132228Z:1b57897f-7210-4862-a437-1444c8e97bac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:33:52 GMT" + "Thu, 12 May 2022 13:22:27 GMT" ], "Content-Length": [ "21" @@ -502,19 +502,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f18439ab-4434-4438-94fd-aedd82d70514?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjE4NDM5YWItNDQzNC00NDM4LTk0ZmQtYWVkZDgyZDcwNTE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c6477fd-31e6-44eb-ae84-063bd4ea56f1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmM2NDc3ZmQtMzFlNi00NGViLWFlODQtMDYzYmQ0ZWE1NmYxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9280b0-179e-43fb-a4a6-ac3a1863dfb4" + "4ca73f56-b0d7-46fc-a425-12097917b629" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -534,22 +534,82 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11989" ], "x-ms-request-id": [ - "7c5d221a-3373-4382-899c-f31201bc362b" + "01c79ac0-8440-448d-9af8-5c5761c2f5f4" ], "x-ms-correlation-request-id": [ - "7c5d221a-3373-4382-899c-f31201bc362b" + "01c79ac0-8440-448d-9af8-5c5761c2f5f4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133424Z:7c5d221a-3373-4382-899c-f31201bc362b" + "JIOINDIACENTRAL:20220512T132258Z:01c79ac0-8440-448d-9af8-5c5761c2f5f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:23 GMT" + "Thu, 12 May 2022 13:22:58 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c6477fd-31e6-44eb-ae84-063bd4ea56f1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmM2NDc3ZmQtMzFlNi00NGViLWFlODQtMDYzYmQ0ZWE1NmYxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ca73f56-b0d7-46fc-a425-12097917b629" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "a1aacdbd-53e6-4a66-8791-168b6dd2a05b" + ], + "x-ms-correlation-request-id": [ + "a1aacdbd-53e6-4a66-8791-168b6dd2a05b" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T132328Z:a1aacdbd-53e6-4a66-8791-168b6dd2a05b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 13:23:28 GMT" ], "Content-Length": [ "22" @@ -562,22 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2abecee-2b4a-46c6-b758-8e525103f250" + "2e57db42-4ed1-499f-ac8d-99ba5188127c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +657,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11987" ], "x-ms-request-id": [ - "bf5af5f2-2d39-4ec2-bfb4-4a07de1db57c" + "fd876616-21b4-4fe6-ac54-58633d1f300a" ], "x-ms-correlation-request-id": [ - "bf5af5f2-2d39-4ec2-bfb4-4a07de1db57c" + "fd876616-21b4-4fe6-ac54-58633d1f300a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133425Z:bf5af5f2-2d39-4ec2-bfb4-4a07de1db57c" + "JIOINDIACENTRAL:20220512T132331Z:fd876616-21b4-4fe6-ac54-58633d1f300a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:24 GMT" + "Thu, 12 May 2022 13:23:30 GMT" ], "Content-Length": [ "159" @@ -621,23 +681,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName doesn't exist.\\r\\nActivityId: e2abecee-2b4a-46c6-b758-8e525103f250, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName doesn't exist.\\r\\nActivityId: 2e57db42-4ed1-499f-ac8d-99ba5188127c, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2abecee-2b4a-46c6-b758-8e525103f250" + "2e57db42-4ed1-499f-ac8d-99ba5188127c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +717,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11985" ], "x-ms-request-id": [ - "09a34dbb-acca-4a60-bc62-95fac61deae2" + "b4e357c6-2d90-47ff-925a-a77398dc58c2" ], "x-ms-correlation-request-id": [ - "09a34dbb-acca-4a60-bc62-95fac61deae2" + "b4e357c6-2d90-47ff-925a-a77398dc58c2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133456Z:09a34dbb-acca-4a60-bc62-95fac61deae2" + "JIOINDIACENTRAL:20220512T132403Z:b4e357c6-2d90-47ff-925a-a77398dc58c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:55 GMT" + "Thu, 12 May 2022 13:24:02 GMT" ], "Content-Length": [ "307" @@ -685,22 +745,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd6d7044-65c8-4fda-b050-b1631ac11841" + "594c7b94-5cb9-4dcd-bb17-7eec26913fbf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,22 +780,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "376d32bf-ee45-4ed3-ac42-97ca1e3f134c" + "2f0af910-7414-4491-aa82-9d1a354f85d3" ], "x-ms-correlation-request-id": [ - "376d32bf-ee45-4ed3-ac42-97ca1e3f134c" + "2f0af910-7414-4491-aa82-9d1a354f85d3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133457Z:376d32bf-ee45-4ed3-ac42-97ca1e3f134c" + "CENTRALINDIA:20220512T132404Z:2f0af910-7414-4491-aa82-9d1a354f85d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:56 GMT" + "Thu, 12 May 2022 13:24:04 GMT" ], "Content-Length": [ "307" @@ -748,22 +808,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "344ff18c-7199-421d-926f-64cd1563dcf5" + "14e93d84-152f-42f7-ba7f-4b2561c50517" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -783,22 +843,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11997" ], "x-ms-request-id": [ - "7121e63e-589c-495d-9d64-15c0de411ab3" + "a3def143-e522-4084-bd90-55d8aa34ea32" ], "x-ms-correlation-request-id": [ - "7121e63e-589c-495d-9d64-15c0de411ab3" + "a3def143-e522-4084-bd90-55d8aa34ea32" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133531Z:7121e63e-589c-495d-9d64-15c0de411ab3" + "CENTRALINDIA:20220512T132440Z:a3def143-e522-4084-bd90-55d8aa34ea32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:30 GMT" + "Thu, 12 May 2022 13:24:39 GMT" ], "Content-Length": [ "307" @@ -811,22 +871,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e2abecee-2b4a-46c6-b758-8e525103f250" + "2e57db42-4ed1-499f-ac8d-99ba5188127c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -843,13 +903,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/c0bab168-e042-49c2-aebc-e3976d8d4858?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/76ac2997-02b4-4080-96c3-342250add5c8?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c0bab168-e042-49c2-aebc-e3976d8d4858?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/76ac2997-02b4-4080-96c3-342250add5c8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c0bab168-e042-49c2-aebc-e3976d8d4858" + "76ac2997-02b4-4080-96c3-342250add5c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,19 +921,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "9fd199fb-2821-4183-bd81-80b046998a4a" + "812bbc65-f032-49cc-8c08-bc73996bc140" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133426Z:9fd199fb-2821-4183-bd81-80b046998a4a" + "JIOINDIACENTRAL:20220512T132332Z:812bbc65-f032-49cc-8c08-bc73996bc140" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:25 GMT" + "Thu, 12 May 2022 13:23:32 GMT" ], "Content-Length": [ "21" @@ -886,19 +946,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c0bab168-e042-49c2-aebc-e3976d8d4858?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzBiYWIxNjgtZTA0Mi00OWMyLWFlYmMtZTM5NzZkOGQ0ODU4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/76ac2997-02b4-4080-96c3-342250add5c8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzZhYzI5OTctMDJiNC00MDgwLTk2YzMtMzQyMjUwYWRkNWM4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2abecee-2b4a-46c6-b758-8e525103f250" + "2e57db42-4ed1-499f-ac8d-99ba5188127c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -918,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11986" ], "x-ms-request-id": [ - "833ac5b9-34b3-4f0b-b2d0-4c814af583b2" + "538d6beb-72a1-4b13-af4b-e9ee8d045b36" ], "x-ms-correlation-request-id": [ - "833ac5b9-34b3-4f0b-b2d0-4c814af583b2" + "538d6beb-72a1-4b13-af4b-e9ee8d045b36" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133456Z:833ac5b9-34b3-4f0b-b2d0-4c814af583b2" + "JIOINDIACENTRAL:20220512T132402Z:538d6beb-72a1-4b13-af4b-e9ee8d045b36" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:55 GMT" + "Thu, 12 May 2022 13:24:01 GMT" ], "Content-Length": [ "22" @@ -946,22 +1006,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7864e771-1bde-4f8b-aa26-8a8593401a92" + "70b3bd33-eb53-4b4a-b89a-4dbbabde0a3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -981,22 +1041,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-request-id": [ - "673fadaf-dbc9-4b17-9b55-64714579b285" + "cb5219c9-718f-4bae-9fa4-edd8b8cf68b3" ], "x-ms-correlation-request-id": [ - "673fadaf-dbc9-4b17-9b55-64714579b285" + "cb5219c9-718f-4bae-9fa4-edd8b8cf68b3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133457Z:673fadaf-dbc9-4b17-9b55-64714579b285" + "CENTRALINDIA:20220512T132406Z:cb5219c9-718f-4bae-9fa4-edd8b8cf68b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:57 GMT" + "Thu, 12 May 2022 13:24:05 GMT" ], "Content-Length": [ "177" @@ -1005,23 +1065,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName'.'collection1' doesn't exist.\\r\\nActivityId: 7864e771-1bde-4f8b-aa26-8a8593401a92, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName'.'collection1' doesn't exist.\\r\\nActivityId: 70b3bd33-eb53-4b4a-b89a-4dbbabde0a3f, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7864e771-1bde-4f8b-aa26-8a8593401a92" + "70b3bd33-eb53-4b4a-b89a-4dbbabde0a3f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1041,22 +1101,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11993" ], "x-ms-request-id": [ - "140d1b1e-68c9-4ae5-9ca1-a83a52810a93" + "308f4204-b29f-4f63-964d-3d682ea051b6" ], "x-ms-correlation-request-id": [ - "140d1b1e-68c9-4ae5-9ca1-a83a52810a93" + "308f4204-b29f-4f63-964d-3d682ea051b6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133530Z:140d1b1e-68c9-4ae5-9ca1-a83a52810a93" + "CENTRALINDIA:20220512T132437Z:308f4204-b29f-4f63-964d-3d682ea051b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:29 GMT" + "Thu, 12 May 2022 13:24:37 GMT" ], "Content-Length": [ "569" @@ -1069,22 +1129,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "540a07b0-f144-491d-b984-c17933631766" + "2b7e6d05-aac2-48ff-8c3e-381cace419fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1104,22 +1164,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-request-id": [ - "6713426c-2559-4b31-9254-3de1a7361521" + "ca1e20b5-837d-40d1-b1e5-21a8c7d4b390" ], "x-ms-correlation-request-id": [ - "6713426c-2559-4b31-9254-3de1a7361521" + "ca1e20b5-837d-40d1-b1e5-21a8c7d4b390" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133530Z:6713426c-2559-4b31-9254-3de1a7361521" + "CENTRALINDIA:20220512T132439Z:ca1e20b5-837d-40d1-b1e5-21a8c7d4b390" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:30 GMT" + "Thu, 12 May 2022 13:24:39 GMT" ], "Content-Length": [ "569" @@ -1132,22 +1192,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "374a5815-8eb2-44b4-96ef-746b1619503d" + "52de9d82-af5f-4c33-9f20-d4a5860fe1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1167,22 +1227,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11996" ], "x-ms-request-id": [ - "ed0d4804-ff36-412c-9c0f-a8a212ab2d64" + "867140c2-3c8d-453d-acc6-4794b0d20543" ], "x-ms-correlation-request-id": [ - "ed0d4804-ff36-412c-9c0f-a8a212ab2d64" + "867140c2-3c8d-453d-acc6-4794b0d20543" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133531Z:ed0d4804-ff36-412c-9c0f-a8a212ab2d64" + "CENTRALINDIA:20220512T132441Z:867140c2-3c8d-453d-acc6-4794b0d20543" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:31 GMT" + "Thu, 12 May 2022 13:24:41 GMT" ], "Content-Length": [ "569" @@ -1195,22 +1255,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"shardKey\": {\r\n \"partitionkey1\": \"Hash\"\r\n },\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\"\r\n ]\r\n },\r\n \"options\": {\r\n \"unique\": true\r\n }\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_ts\"\r\n ]\r\n },\r\n \"options\": {\r\n \"expireAfterSeconds\": 1204800\r\n }\r\n }\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7864e771-1bde-4f8b-aa26-8a8593401a92" + "70b3bd33-eb53-4b4a-b89a-4dbbabde0a3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1227,13 +1287,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/51acf07f-8626-40a4-a97b-9fb8a735ad9f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/38b60185-9d20-49c5-972c-a2359c12a091?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/51acf07f-8626-40a4-a97b-9fb8a735ad9f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/38b60185-9d20-49c5-972c-a2359c12a091?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "51acf07f-8626-40a4-a97b-9fb8a735ad9f" + "38b60185-9d20-49c5-972c-a2359c12a091" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,19 +1305,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "850a9e62-de2f-43d6-95d3-067f2f52e6ca" + "9766dbb4-38e9-47b2-a427-97f9b25e23f3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133458Z:850a9e62-de2f-43d6-95d3-067f2f52e6ca" + "CENTRALINDIA:20220512T132406Z:9766dbb4-38e9-47b2-a427-97f9b25e23f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:34:57 GMT" + "Thu, 12 May 2022 13:24:06 GMT" ], "Content-Length": [ "21" @@ -1270,19 +1330,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/51acf07f-8626-40a4-a97b-9fb8a735ad9f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTFhY2YwN2YtODYyNi00MGE0LWE5N2ItOWZiOGE3MzVhZDlmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/38b60185-9d20-49c5-972c-a2359c12a091?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzhiNjAxODUtOWQyMC00OWM1LTk3MmMtYTIzNTljMTJhMDkxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7864e771-1bde-4f8b-aa26-8a8593401a92" + "70b3bd33-eb53-4b4a-b89a-4dbbabde0a3f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1302,22 +1362,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11994" ], "x-ms-request-id": [ - "780ceea2-7647-4762-b67c-b2124906c2a6" + "f5ff4a7f-c3e7-4ece-9ac6-ffc2d859ad43" ], "x-ms-correlation-request-id": [ - "780ceea2-7647-4762-b67c-b2124906c2a6" + "f5ff4a7f-c3e7-4ece-9ac6-ffc2d859ad43" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133529Z:780ceea2-7647-4762-b67c-b2124906c2a6" + "CENTRALINDIA:20220512T132437Z:f5ff4a7f-c3e7-4ece-9ac6-ffc2d859ad43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:29 GMT" + "Thu, 12 May 2022 13:24:36 GMT" ], "Content-Length": [ "22" @@ -1330,22 +1390,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fd74b35-83f7-4868-b931-e5e5a08627d6" + "934c0016-b146-420e-8e5d-74da7cbdc1d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1365,22 +1425,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11994" ], "x-ms-request-id": [ - "8c1b7d46-3002-4fe0-a514-23c044eb05b6" + "dcf6b781-3e7c-4cb8-a766-ddfd68a2c2aa" ], "x-ms-correlation-request-id": [ - "8c1b7d46-3002-4fe0-a514-23c044eb05b6" + "dcf6b781-3e7c-4cb8-a766-ddfd68a2c2aa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133531Z:8c1b7d46-3002-4fe0-a514-23c044eb05b6" + "CENTRALINDIA:20220512T132444Z:dcf6b781-3e7c-4cb8-a766-ddfd68a2c2aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:31 GMT" + "Thu, 12 May 2022 13:24:43 GMT" ], "Content-Length": [ "160" @@ -1389,26 +1449,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName2 doesn't exist.\\r\\nActivityId: 8fd74b35-83f7-4868-b931-e5e5a08627d6, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName2 doesn't exist.\\r\\nActivityId: 934c0016-b146-420e-8e5d-74da7cbdc1d7, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4354904-7416-41b3-b85b-49205463458c" + "025e9373-0787-4593-af0d-c6015888ccdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1428,22 +1488,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-request-id": [ - "1441db7f-fb21-4583-bce5-3c2a2b1d7670" + "d89f2b7c-c58e-4130-bfca-9dcdcc3ef233" ], "x-ms-correlation-request-id": [ - "1441db7f-fb21-4583-bce5-3c2a2b1d7670" + "d89f2b7c-c58e-4130-bfca-9dcdcc3ef233" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133532Z:1441db7f-fb21-4583-bce5-3c2a2b1d7670" + "CENTRALINDIA:20220512T132446Z:d89f2b7c-c58e-4130-bfca-9dcdcc3ef233" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:31 GMT" + "Thu, 12 May 2022 13:24:46 GMT" ], "Content-Length": [ "177" @@ -1452,26 +1512,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName'.'collection2' doesn't exist.\\r\\nActivityId: e4354904-7416-41b3-b85b-49205463458c, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName'.'collection2' doesn't exist.\\r\\nActivityId: 025e9373-0787-4593-af0d-c6015888ccdd, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "522589e2-d16f-40ab-8c78-b2883be90039" + "fbdf7c32-b242-4df7-ba90-c55a9a314873" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1491,22 +1551,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-request-id": [ - "39f8eda7-0736-47be-9a31-169ac16e0f5b" + "5efc1e1f-fe89-4bdb-9d50-34691217aeb8" ], "x-ms-correlation-request-id": [ - "39f8eda7-0736-47be-9a31-169ac16e0f5b" + "5efc1e1f-fe89-4bdb-9d50-34691217aeb8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133532Z:39f8eda7-0736-47be-9a31-169ac16e0f5b" + "CENTRALINDIA:20220512T132447Z:5efc1e1f-fe89-4bdb-9d50-34691217aeb8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:32 GMT" + "Thu, 12 May 2022 13:24:47 GMT" ], "Content-Length": [ "581" @@ -1519,22 +1579,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "796c980c-d540-438d-9462-86d56e38df96" + "da52c6ec-1947-47fc-a799-7a12aeacc3a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1554,22 +1614,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "4fbf8cca-aa49-4ca1-930c-7242f6d4c0cb" + "26b04194-55bb-4dc8-8bd7-8b8a5851491f" ], "x-ms-correlation-request-id": [ - "4fbf8cca-aa49-4ca1-930c-7242f6d4c0cb" + "26b04194-55bb-4dc8-8bd7-8b8a5851491f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133532Z:4fbf8cca-aa49-4ca1-930c-7242f6d4c0cb" + "CENTRALINDIA:20220512T132454Z:26b04194-55bb-4dc8-8bd7-8b8a5851491f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:32 GMT" + "Thu, 12 May 2022 13:24:54 GMT" ], "Content-Length": [ "319" @@ -1582,22 +1642,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8901bd90-3907-4b3d-a0ef-9c865f828025" + "163f39bc-1847-4c8d-ad3a-1382596adbe0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1608,13 +1668,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/02e18cff-73ff-4c66-a114-a10f43a6d6f3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/69f6ca52-8d47-4e90-a55d-8461f138ebda?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02e18cff-73ff-4c66-a114-a10f43a6d6f3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/69f6ca52-8d47-4e90-a55d-8461f138ebda?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "02e18cff-73ff-4c66-a114-a10f43a6d6f3" + "69f6ca52-8d47-4e90-a55d-8461f138ebda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1629,16 +1689,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "8951c09a-be62-49bf-b09f-b765ea26f6e7" + "241fb265-efc9-43ec-b223-d099bee62f3b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133533Z:8951c09a-be62-49bf-b09f-b765ea26f6e7" + "CENTRALINDIA:20220512T132457Z:241fb265-efc9-43ec-b223-d099bee62f3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:35:33 GMT" + "Thu, 12 May 2022 13:24:57 GMT" ], "Content-Length": [ "21" @@ -1651,22 +1711,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37c5d9c8-65c4-4f9e-a0a6-454cdcdf55e7" + "5ee980b7-7e42-44aa-9a0a-0c8f261f6db3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1677,13 +1737,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/8edc727f-a11e-4f66-b904-c994969f6a6b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/7df2c97a-ceda-4f50-877f-cffe86c700fc?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8edc727f-a11e-4f66-b904-c994969f6a6b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7df2c97a-ceda-4f50-877f-cffe86c700fc?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "8edc727f-a11e-4f66-b904-c994969f6a6b" + "7df2c97a-ceda-4f50-877f-cffe86c700fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1695,19 +1755,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14994" ], "x-ms-correlation-request-id": [ - "72bfa992-d219-40d0-bbdc-8278a35beffb" + "07de9cbb-c23b-4ebd-995d-78f4107c185f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133639Z:72bfa992-d219-40d0-bbdc-8278a35beffb" + "JIOINDIACENTRAL:20220512T132603Z:07de9cbb-c23b-4ebd-995d-78f4107c185f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:36:38 GMT" + "Thu, 12 May 2022 13:26:03 GMT" ], "Content-Length": [ "21" @@ -1720,19 +1780,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02e18cff-73ff-4c66-a114-a10f43a6d6f3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDJlMThjZmYtNzNmZi00YzY2LWExMTQtYTEwZjQzYTZkNmYzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/69f6ca52-8d47-4e90-a55d-8461f138ebda?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjlmNmNhNTItOGQ0Ny00ZTkwLWE1NWQtODQ2MWYxMzhlYmRhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8901bd90-3907-4b3d-a0ef-9c865f828025" + "163f39bc-1847-4c8d-ad3a-1382596adbe0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1752,22 +1812,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11996" ], "x-ms-request-id": [ - "415a7f41-dbbf-45a9-8ff8-974ec1f8b9a1" + "b0bdf83b-d31d-422c-a284-d47848cdb534" ], "x-ms-correlation-request-id": [ - "415a7f41-dbbf-45a9-8ff8-974ec1f8b9a1" + "b0bdf83b-d31d-422c-a284-d47848cdb534" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133604Z:415a7f41-dbbf-45a9-8ff8-974ec1f8b9a1" + "CENTRALINDIA:20220512T132527Z:b0bdf83b-d31d-422c-a284-d47848cdb534" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:36:03 GMT" + "Thu, 12 May 2022 13:25:27 GMT" ], "Content-Length": [ "22" @@ -1780,19 +1840,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/02e18cff-73ff-4c66-a114-a10f43a6d6f3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy8wMmUxOGNmZi03M2ZmLTRjNjYtYTExNC1hMTBmNDNhNmQ2ZjM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/69f6ca52-8d47-4e90-a55d-8461f138ebda?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy82OWY2Y2E1Mi04ZDQ3LTRlOTAtYTU1ZC04NDYxZjEzOGViZGE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8901bd90-3907-4b3d-a0ef-9c865f828025" + "163f39bc-1847-4c8d-ad3a-1382596adbe0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1812,22 +1872,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11995" ], "x-ms-request-id": [ - "03c5da07-1c0f-426e-9ce9-fe105b3c7250" + "7f551f9c-8af5-4054-a1d8-c499aed124a8" ], "x-ms-correlation-request-id": [ - "03c5da07-1c0f-426e-9ce9-fe105b3c7250" + "7f551f9c-8af5-4054-a1d8-c499aed124a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133604Z:03c5da07-1c0f-426e-9ce9-fe105b3c7250" + "CENTRALINDIA:20220512T132528Z:7f551f9c-8af5-4054-a1d8-c499aed124a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:36:04 GMT" + "Thu, 12 May 2022 13:25:27 GMT" ], "Content-Type": [ "application/json" @@ -1837,22 +1897,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561bbf74-401f-4868-9fb6-b0d5f04e4fcb" + "79875b76-6ecb-492f-a58a-5c6562789541" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1863,13 +1923,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/adc53d2f-065b-407f-a1a4-f30f137a0cca?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/99890917-b943-43b8-89ff-211135f50f00?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/adc53d2f-065b-407f-a1a4-f30f137a0cca?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/99890917-b943-43b8-89ff-211135f50f00?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "adc53d2f-065b-407f-a1a4-f30f137a0cca" + "99890917-b943-43b8-89ff-211135f50f00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,19 +1941,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "5ce9601d-d440-443c-9d58-0dba32ffd778" + "551cce9b-c791-4316-8944-861e37773455" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133606Z:5ce9601d-d440-443c-9d58-0dba32ffd778" + "JIOINDIACENTRAL:20220512T132530Z:551cce9b-c791-4316-8944-861e37773455" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:36:05 GMT" + "Thu, 12 May 2022 13:25:29 GMT" ], "Content-Length": [ "21" @@ -1906,22 +1966,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5aeed350-272b-40b6-8f3b-531cb4f80815" + "cf49fbf2-fb09-426c-b7bd-289082d9016c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1932,13 +1992,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/1555bf51-cf22-49a3-b5d0-96336cb2ba32?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/96a1f8c3-16df-4856-a5b2-45b82e1f2dbf?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1555bf51-cf22-49a3-b5d0-96336cb2ba32?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/96a1f8c3-16df-4856-a5b2-45b82e1f2dbf?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1555bf51-cf22-49a3-b5d0-96336cb2ba32" + "96a1f8c3-16df-4856-a5b2-45b82e1f2dbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1950,19 +2010,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "3b5cc9ee-c70e-4b09-93f5-96cc3a85dadb" + "9a431dd0-126d-4e34-8ba6-271d1a782cbc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133713Z:3b5cc9ee-c70e-4b09-93f5-96cc3a85dadb" + "JIOINDIACENTRAL:20220512T132637Z:9a431dd0-126d-4e34-8ba6-271d1a782cbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:37:12 GMT" + "Thu, 12 May 2022 13:26:36 GMT" ], "Content-Length": [ "21" @@ -1975,19 +2035,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/adc53d2f-065b-407f-a1a4-f30f137a0cca?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWRjNTNkMmYtMDY1Yi00MDdmLWExYTQtZjMwZjEzN2EwY2NhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/99890917-b943-43b8-89ff-211135f50f00?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTk4OTA5MTctYjk0My00M2I4LTg5ZmYtMjExMTM1ZjUwZjAwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561bbf74-401f-4868-9fb6-b0d5f04e4fcb" + "79875b76-6ecb-492f-a58a-5c6562789541" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2007,22 +2067,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "6cf13ea2-94cc-44ac-b5a0-a488fd74ff9b" + "3d5611de-2995-4dfe-8562-912ed0387e4c" ], "x-ms-correlation-request-id": [ - "6cf13ea2-94cc-44ac-b5a0-a488fd74ff9b" + "3d5611de-2995-4dfe-8562-912ed0387e4c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133637Z:6cf13ea2-94cc-44ac-b5a0-a488fd74ff9b" + "JIOINDIACENTRAL:20220512T132600Z:3d5611de-2995-4dfe-8562-912ed0387e4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:36:36 GMT" + "Thu, 12 May 2022 13:25:59 GMT" ], "Content-Length": [ "22" @@ -2035,19 +2095,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/adc53d2f-065b-407f-a1a4-f30f137a0cca?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9hZGM1M2QyZi0wNjViLTQwN2YtYTFhNC1mMzBmMTM3YTBjY2E/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/99890917-b943-43b8-89ff-211135f50f00?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy85OTg5MDkxNy1iOTQzLTQzYjgtODlmZi0yMTExMzVmNTBmMDA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561bbf74-401f-4868-9fb6-b0d5f04e4fcb" + "79875b76-6ecb-492f-a58a-5c6562789541" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2067,22 +2127,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "83e92d70-d103-4aa3-aa1d-6342c4618ac1" + "e6c64669-ba37-46a6-b43c-0e47e0f1b512" ], "x-ms-correlation-request-id": [ - "83e92d70-d103-4aa3-aa1d-6342c4618ac1" + "e6c64669-ba37-46a6-b43c-0e47e0f1b512" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133637Z:83e92d70-d103-4aa3-aa1d-6342c4618ac1" + "JIOINDIACENTRAL:20220512T132600Z:e6c64669-ba37-46a6-b43c-0e47e0f1b512" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:36:36 GMT" + "Thu, 12 May 2022 13:26:00 GMT" ], "Content-Type": [ "application/json" @@ -2092,19 +2152,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8edc727f-a11e-4f66-b904-c994969f6a6b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGVkYzcyN2YtYTExZS00ZjY2LWI5MDQtYzk5NDk2OWY2YTZiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7df2c97a-ceda-4f50-877f-cffe86c700fc?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2RmMmM5N2EtY2VkYS00ZjUwLTg3N2YtY2ZmZTg2YzcwMGZjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37c5d9c8-65c4-4f9e-a0a6-454cdcdf55e7" + "5ee980b7-7e42-44aa-9a0a-0c8f261f6db3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2124,22 +2184,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-request-id": [ - "76a6e79e-b225-4911-8f0c-cc4d5cce5e06" + "d740b499-a6ee-4734-975f-7841d216ca83" ], "x-ms-correlation-request-id": [ - "76a6e79e-b225-4911-8f0c-cc4d5cce5e06" + "d740b499-a6ee-4734-975f-7841d216ca83" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133710Z:76a6e79e-b225-4911-8f0c-cc4d5cce5e06" + "JIOINDIACENTRAL:20220512T132633Z:d740b499-a6ee-4734-975f-7841d216ca83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:37:10 GMT" + "Thu, 12 May 2022 13:26:33 GMT" ], "Content-Length": [ "22" @@ -2152,19 +2212,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/8edc727f-a11e-4f66-b904-c994969f6a6b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy84ZWRjNzI3Zi1hMTFlLTRmNjYtYjkwNC1jOTk0OTY5ZjZhNmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/collections/collection1/operationResults/7df2c97a-ceda-4f50-877f-cffe86c700fc?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy83ZGYyYzk3YS1jZWRhLTRmNTAtODc3Zi1jZmZlODZjNzAwZmM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37c5d9c8-65c4-4f9e-a0a6-454cdcdf55e7" + "5ee980b7-7e42-44aa-9a0a-0c8f261f6db3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2184,22 +2244,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-request-id": [ - "156c4a86-ba15-41ca-ad7a-6f7925e89cac" + "c86ad395-93f9-48ac-8dee-a1cef47dc9dc" ], "x-ms-correlation-request-id": [ - "156c4a86-ba15-41ca-ad7a-6f7925e89cac" + "c86ad395-93f9-48ac-8dee-a1cef47dc9dc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133710Z:156c4a86-ba15-41ca-ad7a-6f7925e89cac" + "JIOINDIACENTRAL:20220512T132634Z:c86ad395-93f9-48ac-8dee-a1cef47dc9dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:37:10 GMT" + "Thu, 12 May 2022 13:26:33 GMT" ], "Content-Type": [ "application/json" @@ -2209,19 +2269,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1555bf51-cf22-49a3-b5d0-96336cb2ba32?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTU1NWJmNTEtY2YyMi00OWEzLWI1ZDAtOTYzMzZjYjJiYTMyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/96a1f8c3-16df-4856-a5b2-45b82e1f2dbf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTZhMWY4YzMtMTZkZi00ODU2LWE1YjItNDViODJlMWYyZGJmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5aeed350-272b-40b6-8f3b-531cb4f80815" + "cf49fbf2-fb09-426c-b7bd-289082d9016c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2241,22 +2301,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-request-id": [ - "d72f0b55-5706-4bfa-8c0e-4809b1c8e2b8" + "d777ad0a-d86b-43e8-908d-cfabc90d1a98" ], "x-ms-correlation-request-id": [ - "d72f0b55-5706-4bfa-8c0e-4809b1c8e2b8" + "d777ad0a-d86b-43e8-908d-cfabc90d1a98" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133743Z:d72f0b55-5706-4bfa-8c0e-4809b1c8e2b8" + "JIOINDIACENTRAL:20220512T132707Z:d777ad0a-d86b-43e8-908d-cfabc90d1a98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:37:43 GMT" + "Thu, 12 May 2022 13:27:07 GMT" ], "Content-Length": [ "22" @@ -2269,19 +2329,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/1555bf51-cf22-49a3-b5d0-96336cb2ba32?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy8xNTU1YmY1MS1jZjIyLTQ5YTMtYjVkMC05NjMzNmNiMmJhMzI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup44/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00044/mongodbDatabases/dbName/operationResults/96a1f8c3-16df-4856-a5b2-45b82e1f2dbf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDQvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy85NmExZjhjMy0xNmRmLTQ4NTYtYTViMi00NWI4MmUxZjJkYmY/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5aeed350-272b-40b6-8f3b-531cb4f80815" + "cf49fbf2-fb09-426c-b7bd-289082d9016c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2301,22 +2361,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11987" ], "x-ms-request-id": [ - "7fbb5f50-6ae9-40af-8478-7a4c073db111" + "77703983-d97d-4c11-b7a7-4bdca3f029bc" ], "x-ms-correlation-request-id": [ - "7fbb5f50-6ae9-40af-8478-7a4c073db111" + "77703983-d97d-4c11-b7a7-4bdca3f029bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T133744Z:7fbb5f50-6ae9-40af-8478-7a4c073db111" + "JIOINDIACENTRAL:20220512T132708Z:77703983-d97d-4c11-b7a7-4bdca3f029bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:37:43 GMT" + "Thu, 12 May 2022 13:27:08 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoThroughputCmdlets.json index 8d2295a534df..c4269f69b308 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c62324c-f915-4075-9036-1417730d9baa" + "c92fdca0-0d6f-4f12-93b6-7baa2cc0f1b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "36a9e8df-e67e-4486-9942-0cac957fa6d5" + "ccc297f1-28f6-4721-a049-5662214a9b8d" ], "x-ms-correlation-request-id": [ - "36a9e8df-e67e-4486-9942-0cac957fa6d5" + "ccc297f1-28f6-4721-a049-5662214a9b8d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134009Z:36a9e8df-e67e-4486-9942-0cac957fa6d5" + "JIOINDIACENTRAL:20220512T132721Z:ccc297f1-28f6-4721-a049-5662214a9b8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:40:09 GMT" + "Thu, 12 May 2022 13:27:20 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" + "c9389cd7-094f-4c68-8129-8f8ff8a688fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "59cd8255-1b7f-4c68-8c62-bbda1abe74cb" + "c5885472-7594-4e09-98b4-3a6ccf6dc81f" ], "x-ms-correlation-request-id": [ - "59cd8255-1b7f-4c68-8c62-bbda1abe74cb" + "c5885472-7594-4e09-98b4-3a6ccf6dc81f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134011Z:59cd8255-1b7f-4c68-8c62-bbda1abe74cb" + "JIOINDIACENTRAL:20220512T132721Z:c5885472-7594-4e09-98b4-3a6ccf6dc81f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:40:10 GMT" + "Thu, 12 May 2022 13:27:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" + "c9389cd7-094f-4c68-8129-8f8ff8a688fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11989" ], "x-ms-request-id": [ - "596cd6ba-9159-4bf7-ace4-1eb8f4b0e05c" + "1ba1d136-6b12-4629-823b-801701f56596" ], "x-ms-correlation-request-id": [ - "596cd6ba-9159-4bf7-ace4-1eb8f4b0e05c" + "1ba1d136-6b12-4629-823b-801701f56596" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134326Z:596cd6ba-9159-4bf7-ace4-1eb8f4b0e05c" + "JIOINDIACENTRAL:20220512T133006Z:1ba1d136-6b12-4629-823b-801701f56596" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:43:25 GMT" + "Thu, 12 May 2022 13:30:05 GMT" ], "Content-Length": [ "2468" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045\",\r\n \"name\": \"mongo-db0045\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T13:42:40.6507798Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db0045.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db0045.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"8fa91670-7074-4733-9cee-c18941800682\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045\",\r\n \"name\": \"mongo-db0045\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:29:42.4172891Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db0045.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db0045.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"f84551e7-9204-4c2e-9f26-c0e0162454f9\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eadb116-e322-4f77-8542-ae5127015e61" + "a66a31d0-51eb-41a6-ab2d-9ebc8795351d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-request-id": [ - "18849374-088b-4f85-a06e-d620c676a715" + "d22a803a-087c-472c-bc72-20ed6a026b98" ], "x-ms-correlation-request-id": [ - "18849374-088b-4f85-a06e-d620c676a715" + "d22a803a-087c-472c-bc72-20ed6a026b98" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134430Z:18849374-088b-4f85-a06e-d620c676a715" + "CENTRALINDIA:20220512T133120Z:d22a803a-087c-472c-bc72-20ed6a026b98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:44:29 GMT" + "Thu, 12 May 2022 13:31:20 GMT" ], "Content-Length": [ "2468" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045\",\r\n \"name\": \"mongo-db0045\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T13:42:40.6507798Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db0045.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db0045.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"8fa91670-7074-4733-9cee-c18941800682\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045\",\r\n \"name\": \"mongo-db0045\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:29:42.4172891Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db0045.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db0045.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"f84551e7-9204-4c2e-9f26-c0e0162454f9\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-db0045-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" + "c9389cd7-094f-4c68-8129-8f8ff8a688fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/operationResults/e924d88c-7204-4f0c-9d65-64ee68ccc1c5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/operationResults/13d6c74e-4847-49ad-8daf-f7e5b9ee5801?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e924d88c-7204-4f0c-9d65-64ee68ccc1c5" + "13d6c74e-4847-49ad-8daf-f7e5b9ee5801" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e924d88c-7204-4f0c-9d65-64ee68ccc1c5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d6c74e-4847-49ad-8daf-f7e5b9ee5801?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,16 +303,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "946bbc7b-6ec1-445a-8b61-5fc7d2e592b1" + "822d4486-07d9-411d-91ba-a68ea6f3b9f2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134024Z:946bbc7b-6ec1-445a-8b61-5fc7d2e592b1" + "JIOINDIACENTRAL:20220512T132732Z:822d4486-07d9-411d-91ba-a68ea6f3b9f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:40:24 GMT" + "Thu, 12 May 2022 13:27:31 GMT" ], "Content-Length": [ "2069" @@ -321,83 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045\",\r\n \"name\": \"mongo-db0045\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T13:40:20.9936822Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"8fa91670-7074-4733-9cee-c18941800682\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e924d88c-7204-4f0c-9d65-64ee68ccc1c5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTkyNGQ4OGMtNzIwNC00ZjBjLTlkNjUtNjRlZTY4Y2NjMWM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "97212f94-ff43-40ca-94d5-d2b608ecb9a6" - ], - "x-ms-correlation-request-id": [ - "97212f94-ff43-40ca-94d5-d2b608ecb9a6" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134054Z:97212f94-ff43-40ca-94d5-d2b608ecb9a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 13:40:54 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045\",\r\n \"name\": \"mongo-db0045\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T13:27:29.1500431Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"f84551e7-9204-4c2e-9f26-c0e0162454f9\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db0045-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e924d88c-7204-4f0c-9d65-64ee68ccc1c5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTkyNGQ4OGMtNzIwNC00ZjBjLTlkNjUtNjRlZTY4Y2NjMWM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d6c74e-4847-49ad-8daf-f7e5b9ee5801?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTNkNmM3NGUtNDg0Ny00OWFkLThkYWYtZjdlNWI5ZWU1ODAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" + "c9389cd7-094f-4c68-8129-8f8ff8a688fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-request-id": [ - "bc85b65c-747c-491e-9834-4c1c9692e86d" + "d851e916-8f83-44da-859f-74283a3d4be8" ], "x-ms-correlation-request-id": [ - "bc85b65c-747c-491e-9834-4c1c9692e86d" + "d851e916-8f83-44da-859f-74283a3d4be8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134124Z:bc85b65c-747c-491e-9834-4c1c9692e86d" + "JIOINDIACENTRAL:20220512T132803Z:d851e916-8f83-44da-859f-74283a3d4be8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:41:24 GMT" + "Thu, 12 May 2022 13:28:02 GMT" ], "Content-Length": [ "21" @@ -445,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e924d88c-7204-4f0c-9d65-64ee68ccc1c5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTkyNGQ4OGMtNzIwNC00ZjBjLTlkNjUtNjRlZTY4Y2NjMWM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d6c74e-4847-49ad-8daf-f7e5b9ee5801?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTNkNmM3NGUtNDg0Ny00OWFkLThkYWYtZjdlNWI5ZWU1ODAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" + "c9389cd7-094f-4c68-8129-8f8ff8a688fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-request-id": [ - "6c11f428-9323-42d3-a305-c2f8c74c3e7c" + "3862f7a2-507b-453f-b1f2-477b65eb34f7" ], "x-ms-correlation-request-id": [ - "6c11f428-9323-42d3-a305-c2f8c74c3e7c" + "3862f7a2-507b-453f-b1f2-477b65eb34f7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134155Z:6c11f428-9323-42d3-a305-c2f8c74c3e7c" + "JIOINDIACENTRAL:20220512T132834Z:3862f7a2-507b-453f-b1f2-477b65eb34f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:41:54 GMT" + "Thu, 12 May 2022 13:28:33 GMT" ], "Content-Length": [ "21" @@ -505,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e924d88c-7204-4f0c-9d65-64ee68ccc1c5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTkyNGQ4OGMtNzIwNC00ZjBjLTlkNjUtNjRlZTY4Y2NjMWM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d6c74e-4847-49ad-8daf-f7e5b9ee5801?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTNkNmM3NGUtNDg0Ny00OWFkLThkYWYtZjdlNWI5ZWU1ODAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" + "c9389cd7-094f-4c68-8129-8f8ff8a688fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-request-id": [ - "f756f493-c4b5-40d6-8cf3-5dc10dde55e3" + "4f854be4-5899-44f1-b461-67917c8c0002" ], "x-ms-correlation-request-id": [ - "f756f493-c4b5-40d6-8cf3-5dc10dde55e3" + "4f854be4-5899-44f1-b461-67917c8c0002" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134225Z:f756f493-c4b5-40d6-8cf3-5dc10dde55e3" + "JIOINDIACENTRAL:20220512T132904Z:4f854be4-5899-44f1-b461-67917c8c0002" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:42:24 GMT" + "Thu, 12 May 2022 13:29:03 GMT" ], "Content-Length": [ "21" @@ -565,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e924d88c-7204-4f0c-9d65-64ee68ccc1c5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTkyNGQ4OGMtNzIwNC00ZjBjLTlkNjUtNjRlZTY4Y2NjMWM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d6c74e-4847-49ad-8daf-f7e5b9ee5801?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTNkNmM3NGUtNDg0Ny00OWFkLThkYWYtZjdlNWI5ZWU1ODAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" + "c9389cd7-094f-4c68-8129-8f8ff8a688fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-request-id": [ - "d769aa94-1f1f-4ec7-8232-063551c9f629" + "aa4e81f2-8f7b-4c77-af96-11033db3a503" ], "x-ms-correlation-request-id": [ - "d769aa94-1f1f-4ec7-8232-063551c9f629" + "aa4e81f2-8f7b-4c77-af96-11033db3a503" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134255Z:d769aa94-1f1f-4ec7-8232-063551c9f629" + "JIOINDIACENTRAL:20220512T132935Z:aa4e81f2-8f7b-4c77-af96-11033db3a503" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:42:55 GMT" + "Thu, 12 May 2022 13:29:35 GMT" ], "Content-Length": [ "21" @@ -625,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e924d88c-7204-4f0c-9d65-64ee68ccc1c5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTkyNGQ4OGMtNzIwNC00ZjBjLTlkNjUtNjRlZTY4Y2NjMWM1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d6c74e-4847-49ad-8daf-f7e5b9ee5801?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTNkNmM3NGUtNDg0Ny00OWFkLThkYWYtZjdlNWI5ZWU1ODAxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0293544b-f43e-49ae-a6a4-b7086fbf8cfa" + "c9389cd7-094f-4c68-8129-8f8ff8a688fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-request-id": [ - "3f931972-34a9-47b9-9dac-7db42b03dda1" + "a4aa7c46-75e0-4a8b-8e5a-6b70540ae82e" ], "x-ms-correlation-request-id": [ - "3f931972-34a9-47b9-9dac-7db42b03dda1" + "a4aa7c46-75e0-4a8b-8e5a-6b70540ae82e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134325Z:3f931972-34a9-47b9-9dac-7db42b03dda1" + "JIOINDIACENTRAL:20220512T133005Z:a4aa7c46-75e0-4a8b-8e5a-6b70540ae82e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:43:25 GMT" + "Thu, 12 May 2022 13:30:04 GMT" ], "Content-Length": [ "22" @@ -685,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "620cac5d-1d7c-4844-92ff-e00a9b76e225" + "1cc104db-1efa-4b4b-94b7-79b2a05764cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,22 +660,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "4eec178e-7ff5-4152-8836-2236a251cca2" + "ff840d02-ac96-42f0-95a7-b1edf3b0a74c" ], "x-ms-correlation-request-id": [ - "4eec178e-7ff5-4152-8836-2236a251cca2" + "ff840d02-ac96-42f0-95a7-b1edf3b0a74c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134326Z:4eec178e-7ff5-4152-8836-2236a251cca2" + "CENTRALINDIA:20220512T133008Z:ff840d02-ac96-42f0-95a7-b1edf3b0a74c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:43:26 GMT" + "Thu, 12 May 2022 13:30:08 GMT" ], "Content-Length": [ "160" @@ -744,23 +684,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName3 doesn't exist.\\r\\nActivityId: 620cac5d-1d7c-4844-92ff-e00a9b76e225, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName3 doesn't exist.\\r\\nActivityId: 1cc104db-1efa-4b4b-94b7-79b2a05764cc, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "620cac5d-1d7c-4844-92ff-e00a9b76e225" + "1cc104db-1efa-4b4b-94b7-79b2a05764cc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "6cbf3ff1-cd55-4638-84f2-b01cd41ca318" + "78337dc0-cd02-411b-9559-9956b554e0dd" ], "x-ms-correlation-request-id": [ - "6cbf3ff1-cd55-4638-84f2-b01cd41ca318" + "78337dc0-cd02-411b-9559-9956b554e0dd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134357Z:6cbf3ff1-cd55-4638-84f2-b01cd41ca318" + "CENTRALINDIA:20220512T133042Z:78337dc0-cd02-411b-9559-9956b554e0dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:43:57 GMT" + "Thu, 12 May 2022 13:30:41 GMT" ], "Content-Length": [ "309" @@ -808,22 +748,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "620cac5d-1d7c-4844-92ff-e00a9b76e225" + "1cc104db-1efa-4b4b-94b7-79b2a05764cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,13 +780,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/dc0434b3-e78d-4a07-8414-9be8e0240956?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/8bfe5be9-2247-4e5e-bb2b-241846dd5e4d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc0434b3-e78d-4a07-8414-9be8e0240956?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8bfe5be9-2247-4e5e-bb2b-241846dd5e4d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "dc0434b3-e78d-4a07-8414-9be8e0240956" + "8bfe5be9-2247-4e5e-bb2b-241846dd5e4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,16 +801,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "61948795-ccb2-45d6-8b8b-866d11416e13" + "c6abc3c3-3716-4285-834c-cad19c5b73ab" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134327Z:61948795-ccb2-45d6-8b8b-866d11416e13" + "CENTRALINDIA:20220512T133011Z:c6abc3c3-3716-4285-834c-cad19c5b73ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:43:26 GMT" + "Thu, 12 May 2022 13:30:10 GMT" ], "Content-Length": [ "21" @@ -883,19 +823,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc0434b3-e78d-4a07-8414-9be8e0240956?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGMwNDM0YjMtZTc4ZC00YTA3LTg0MTQtOWJlOGUwMjQwOTU2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8bfe5be9-2247-4e5e-bb2b-241846dd5e4d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGJmZTViZTktMjI0Ny00ZTVlLWJiMmItMjQxODQ2ZGQ1ZTRkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "620cac5d-1d7c-4844-92ff-e00a9b76e225" + "1cc104db-1efa-4b4b-94b7-79b2a05764cc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -915,22 +855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "ac6ec65f-9196-4fb4-b800-1cbba4dca031" + "69c4fbbf-33a0-446c-a67b-d473842cf4a0" ], "x-ms-correlation-request-id": [ - "ac6ec65f-9196-4fb4-b800-1cbba4dca031" + "69c4fbbf-33a0-446c-a67b-d473842cf4a0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134357Z:ac6ec65f-9196-4fb4-b800-1cbba4dca031" + "CENTRALINDIA:20220512T133041Z:69c4fbbf-33a0-446c-a67b-d473842cf4a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:43:56 GMT" + "Thu, 12 May 2022 13:30:40 GMT" ], "Content-Length": [ "22" @@ -943,22 +883,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4d1ca9a-0f9b-4361-81e4-ede3d8f7361a" + "f437eeda-ab44-4e73-94fa-5cfd95c90b45" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "cac8ceea-599e-45b4-879d-f53c1c2bee5a" + "316b7b5b-8f53-40eb-9cd7-0aafd3554fea" ], "x-ms-correlation-request-id": [ - "cac8ceea-599e-45b4-879d-f53c1c2bee5a" + "316b7b5b-8f53-40eb-9cd7-0aafd3554fea" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134358Z:cac8ceea-599e-45b4-879d-f53c1c2bee5a" + "CENTRALINDIA:20220512T133044Z:316b7b5b-8f53-40eb-9cd7-0aafd3554fea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:43:57 GMT" + "Thu, 12 May 2022 13:30:44 GMT" ], "Content-Length": [ "381" @@ -1002,23 +942,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"TMKg\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"xHcR\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f6b6215-ad93-4765-9201-d39f1a557be8" + "90e2781a-2c97-4a14-936d-1a56bb93d77d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11996" ], "x-ms-request-id": [ - "9a10b9ae-fecb-4f1d-b4b1-c4c5208a8784" + "18a12037-cabb-40f8-9a00-75d276c60652" ], "x-ms-correlation-request-id": [ - "9a10b9ae-fecb-4f1d-b4b1-c4c5208a8784" + "18a12037-cabb-40f8-9a00-75d276c60652" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134429Z:9a10b9ae-fecb-4f1d-b4b1-c4c5208a8784" + "CENTRALINDIA:20220512T133119Z:18a12037-cabb-40f8-9a00-75d276c60652" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:44:29 GMT" + "Thu, 12 May 2022 13:31:19 GMT" ], "Content-Length": [ "381" @@ -1062,23 +1002,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"TMKg\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"xHcR\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90875bdb-8842-418c-b315-159685591a52" + "1528e659-34a1-4258-94d7-6ff11a518d9e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1098,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11998" ], "x-ms-request-id": [ - "39ba6728-9a3b-4db3-a99a-90f624cb553b" + "94b28d01-ea29-40d6-8739-ea7824746d9a" ], "x-ms-correlation-request-id": [ - "39ba6728-9a3b-4db3-a99a-90f624cb553b" + "94b28d01-ea29-40d6-8739-ea7824746d9a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134501Z:39ba6728-9a3b-4db3-a99a-90f624cb553b" + "CENTRALINDIA:20220512T133153Z:94b28d01-ea29-40d6-8739-ea7824746d9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:45:00 GMT" + "Thu, 12 May 2022 13:31:53 GMT" ], "Content-Length": [ "381" @@ -1122,23 +1062,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"TMKg\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"xHcR\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d948a673-40a9-4285-9f81-5abc0726fac8" + "58bf5331-d5d3-4a00-a5dc-d2c246fda6d3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1158,22 +1098,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11993" ], "x-ms-request-id": [ - "d85d452e-9563-4257-bf1a-2ac98848fe11" + "eddf2365-cfb8-4f8f-aae9-e4665f7b0ef4" ], "x-ms-correlation-request-id": [ - "d85d452e-9563-4257-bf1a-2ac98848fe11" + "eddf2365-cfb8-4f8f-aae9-e4665f7b0ef4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134532Z:d85d452e-9563-4257-bf1a-2ac98848fe11" + "JIOINDIACENTRAL:20220512T133229Z:eddf2365-cfb8-4f8f-aae9-e4665f7b0ef4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:45:32 GMT" + "Thu, 12 May 2022 13:32:28 GMT" ], "Content-Length": [ "380" @@ -1182,26 +1122,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"TMKg\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"xHcR\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4f6b6215-ad93-4765-9201-d39f1a557be8" + "90e2781a-2c97-4a14-936d-1a56bb93d77d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1218,13 +1158,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default/operationResults/2f461217-3d3d-49af-bcc7-3b3ead1a55f6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default/operationResults/a0729358-6080-4e1e-a69c-ca572f47501e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2f461217-3d3d-49af-bcc7-3b3ead1a55f6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a0729358-6080-4e1e-a69c-ca572f47501e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "2f461217-3d3d-49af-bcc7-3b3ead1a55f6" + "a0729358-6080-4e1e-a69c-ca572f47501e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1236,19 +1176,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "012f8f22-7bf1-48c6-b076-56b5a42ffca6" + "2a338758-9dfc-4cf2-8455-dec50431052c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134359Z:012f8f22-7bf1-48c6-b076-56b5a42ffca6" + "CENTRALINDIA:20220512T133047Z:2a338758-9dfc-4cf2-8455-dec50431052c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:43:58 GMT" + "Thu, 12 May 2022 13:30:47 GMT" ], "Content-Length": [ "21" @@ -1261,22 +1201,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90875bdb-8842-418c-b315-159685591a52" + "1528e659-34a1-4258-94d7-6ff11a518d9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1293,13 +1233,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default/operationResults/6117bb4a-67e0-4cee-9b47-1da26f22a62a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default/operationResults/e00bf8af-d84b-401e-992b-869fbff146fa?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6117bb4a-67e0-4cee-9b47-1da26f22a62a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e00bf8af-d84b-401e-992b-869fbff146fa?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "6117bb4a-67e0-4cee-9b47-1da26f22a62a" + "e00bf8af-d84b-401e-992b-869fbff146fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1311,19 +1251,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "bbbaa60a-1271-4f7c-8716-466e5be8fef8" + "ba0d0234-1f79-48a8-b466-92ed1e380abf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134430Z:bbbaa60a-1271-4f7c-8716-466e5be8fef8" + "CENTRALINDIA:20220512T133122Z:ba0d0234-1f79-48a8-b466-92ed1e380abf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:44:30 GMT" + "Thu, 12 May 2022 13:31:22 GMT" ], "Content-Length": [ "21" @@ -1336,22 +1276,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d948a673-40a9-4285-9f81-5abc0726fac8" + "58bf5331-d5d3-4a00-a5dc-d2c246fda6d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1368,13 +1308,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default/operationResults/ff812fb6-1ef8-48d9-a45e-902c380a3225?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/throughputSettings/default/operationResults/d74c43e2-a458-4a63-8b23-261741ae35d9?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ff812fb6-1ef8-48d9-a45e-902c380a3225?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d74c43e2-a458-4a63-8b23-261741ae35d9?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ff812fb6-1ef8-48d9-a45e-902c380a3225" + "d74c43e2-a458-4a63-8b23-261741ae35d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,19 +1326,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "49ca6929-084d-44a4-b029-b30886e6651a" + "57b58fd7-5f26-4548-af0c-83abd1ed9d4d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134501Z:49ca6929-084d-44a4-b029-b30886e6651a" + "JIOINDIACENTRAL:20220512T133157Z:57b58fd7-5f26-4548-af0c-83abd1ed9d4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:45:01 GMT" + "Thu, 12 May 2022 13:31:56 GMT" ], "Content-Length": [ "21" @@ -1411,19 +1351,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2f461217-3d3d-49af-bcc7-3b3ead1a55f6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmY0NjEyMTctM2QzZC00OWFmLWJjYzctM2IzZWFkMWE1NWY2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a0729358-6080-4e1e-a69c-ca572f47501e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTA3MjkzNTgtNjA4MC00ZTFlLWE2OWMtY2E1NzJmNDc1MDFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f6b6215-ad93-4765-9201-d39f1a557be8" + "90e2781a-2c97-4a14-936d-1a56bb93d77d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1443,22 +1383,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11997" ], "x-ms-request-id": [ - "169b9af1-478d-44b1-bfc1-042948fe8b28" + "1bbb59f9-7a63-42a6-97a5-c39a9da16854" ], "x-ms-correlation-request-id": [ - "169b9af1-478d-44b1-bfc1-042948fe8b28" + "1bbb59f9-7a63-42a6-97a5-c39a9da16854" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134429Z:169b9af1-478d-44b1-bfc1-042948fe8b28" + "CENTRALINDIA:20220512T133117Z:1bbb59f9-7a63-42a6-97a5-c39a9da16854" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:44:29 GMT" + "Thu, 12 May 2022 13:31:17 GMT" ], "Content-Length": [ "22" @@ -1471,19 +1411,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6117bb4a-67e0-4cee-9b47-1da26f22a62a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjExN2JiNGEtNjdlMC00Y2VlLTliNDctMWRhMjZmMjJhNjJhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e00bf8af-d84b-401e-992b-869fbff146fa?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTAwYmY4YWYtZDg0Yi00MDFlLTk5MmItODY5ZmJmZjE0NmZhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90875bdb-8842-418c-b315-159685591a52" + "1528e659-34a1-4258-94d7-6ff11a518d9e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1503,22 +1443,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "d06180c5-5a92-4629-8ce2-f935def05fdf" + "9d3fc632-dfc0-4e5b-aed8-b89b58d7c04d" ], "x-ms-correlation-request-id": [ - "d06180c5-5a92-4629-8ce2-f935def05fdf" + "9d3fc632-dfc0-4e5b-aed8-b89b58d7c04d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134500Z:d06180c5-5a92-4629-8ce2-f935def05fdf" + "CENTRALINDIA:20220512T133153Z:9d3fc632-dfc0-4e5b-aed8-b89b58d7c04d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:45:00 GMT" + "Thu, 12 May 2022 13:31:53 GMT" ], "Content-Length": [ "22" @@ -1531,19 +1471,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ff812fb6-1ef8-48d9-a45e-902c380a3225?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmY4MTJmYjYtMWVmOC00OGQ5LWE0NWUtOTAyYzM4MGEzMjI1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d74c43e2-a458-4a63-8b23-261741ae35d9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDc0YzQzZTItYTQ1OC00YTYzLThiMjMtMjYxNzQxYWUzNWQ5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d948a673-40a9-4285-9f81-5abc0726fac8" + "58bf5331-d5d3-4a00-a5dc-d2c246fda6d3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1563,22 +1503,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11994" ], "x-ms-request-id": [ - "798172d4-6ce1-4d57-bebe-5a2f32bde8cc" + "f152bf03-e56c-44b7-a731-9ad36be771fb" ], "x-ms-correlation-request-id": [ - "798172d4-6ce1-4d57-bebe-5a2f32bde8cc" + "f152bf03-e56c-44b7-a731-9ad36be771fb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134532Z:798172d4-6ce1-4d57-bebe-5a2f32bde8cc" + "JIOINDIACENTRAL:20220512T133227Z:f152bf03-e56c-44b7-a731-9ad36be771fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:45:31 GMT" + "Thu, 12 May 2022 13:32:27 GMT" ], "Content-Length": [ "22" @@ -1591,22 +1531,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4847f93-1c58-419a-92cd-2b34024ddf2e" + "0c56f161-af70-49b9-ac89-6b4a5f6d3f99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1626,22 +1566,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11982" ], "x-ms-request-id": [ - "2dfa028d-e401-4f70-9592-d79b8fe1ef36" + "6f5d2584-4df9-4234-bcb1-897d49c2b987" ], "x-ms-correlation-request-id": [ - "2dfa028d-e401-4f70-9592-d79b8fe1ef36" + "6f5d2584-4df9-4234-bcb1-897d49c2b987" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134533Z:2dfa028d-e401-4f70-9592-d79b8fe1ef36" + "JIOINDIACENTRAL:20220512T133231Z:6f5d2584-4df9-4234-bcb1-897d49c2b987" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:45:32 GMT" + "Thu, 12 May 2022 13:32:30 GMT" ], "Content-Length": [ "181" @@ -1650,23 +1590,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName3'.'collectionName' doesn't exist.\\r\\nActivityId: c4847f93-1c58-419a-92cd-2b34024ddf2e, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName3'.'collectionName' doesn't exist.\\r\\nActivityId: 0c56f161-af70-49b9-ac89-6b4a5f6d3f99, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4847f93-1c58-419a-92cd-2b34024ddf2e" + "0c56f161-af70-49b9-ac89-6b4a5f6d3f99" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1686,22 +1626,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11980" ], "x-ms-request-id": [ - "ac9d02fc-1794-49f5-af9f-103c5f026de0" + "3d7e0a10-7fe1-44ca-a7c6-2ff620639507" ], "x-ms-correlation-request-id": [ - "ac9d02fc-1794-49f5-af9f-103c5f026de0" + "3d7e0a10-7fe1-44ca-a7c6-2ff620639507" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134604Z:ac9d02fc-1794-49f5-af9f-103c5f026de0" + "JIOINDIACENTRAL:20220512T133303Z:3d7e0a10-7fe1-44ca-a7c6-2ff620639507" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:46:04 GMT" + "Thu, 12 May 2022 13:33:03 GMT" ], "Content-Length": [ "434" @@ -1714,22 +1654,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collectionName\",\r\n \"shardKey\": {\r\n \"shardKeyPath\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4847f93-1c58-419a-92cd-2b34024ddf2e" + "0c56f161-af70-49b9-ac89-6b4a5f6d3f99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1746,13 +1686,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/eb858902-4a2f-4946-8440-3e732768cba7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/dd7bcb43-daf5-4be5-a65f-fdb015205607?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eb858902-4a2f-4946-8440-3e732768cba7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dd7bcb43-daf5-4be5-a65f-fdb015205607?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "eb858902-4a2f-4946-8440-3e732768cba7" + "dd7bcb43-daf5-4be5-a65f-fdb015205607" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1764,19 +1704,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "aec554bf-b936-4c34-beec-282d44028322" + "007842c1-d32b-40c3-8e7f-e11fbfad1e34" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134533Z:aec554bf-b936-4c34-beec-282d44028322" + "JIOINDIACENTRAL:20220512T133232Z:007842c1-d32b-40c3-8e7f-e11fbfad1e34" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:45:33 GMT" + "Thu, 12 May 2022 13:32:32 GMT" ], "Content-Length": [ "21" @@ -1789,19 +1729,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eb858902-4a2f-4946-8440-3e732768cba7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWI4NTg5MDItNGEyZi00OTQ2LTg0NDAtM2U3MzI3NjhjYmE3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dd7bcb43-daf5-4be5-a65f-fdb015205607?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGQ3YmNiNDMtZGFmNS00YmU1LWE2NWYtZmRiMDE1MjA1NjA3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4847f93-1c58-419a-92cd-2b34024ddf2e" + "0c56f161-af70-49b9-ac89-6b4a5f6d3f99" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1821,22 +1761,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11981" ], "x-ms-request-id": [ - "31473ffb-0967-443d-ae50-ef5c2cd5d72b" + "2a4a7d49-d4b5-47c2-affa-4613fbc08d58" ], "x-ms-correlation-request-id": [ - "31473ffb-0967-443d-ae50-ef5c2cd5d72b" + "2a4a7d49-d4b5-47c2-affa-4613fbc08d58" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134604Z:31473ffb-0967-443d-ae50-ef5c2cd5d72b" + "JIOINDIACENTRAL:20220512T133303Z:2a4a7d49-d4b5-47c2-affa-4613fbc08d58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:46:03 GMT" + "Thu, 12 May 2022 13:33:02 GMT" ], "Content-Length": [ "22" @@ -1849,22 +1789,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8897775c-0858-496e-b76a-480fd37fb3d8" + "81062465-4b3f-44e1-818f-27ad1de5ab4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1884,22 +1824,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11987" ], "x-ms-request-id": [ - "2cfc501c-6db2-40a6-ab58-7d8dcfd17e13" + "5bf5a1dd-aa3d-4c0a-b3f5-865e5a0efa40" ], "x-ms-correlation-request-id": [ - "2cfc501c-6db2-40a6-ab58-7d8dcfd17e13" + "5bf5a1dd-aa3d-4c0a-b3f5-865e5a0efa40" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134604Z:2cfc501c-6db2-40a6-ab58-7d8dcfd17e13" + "JIOINDIACENTRAL:20220512T133305Z:5bf5a1dd-aa3d-4c0a-b3f5-865e5a0efa40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:46:04 GMT" + "Thu, 12 May 2022 13:33:04 GMT" ], "Content-Length": [ "419" @@ -1908,23 +1848,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"X-Rn\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"96TY\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97cf609e-e6d6-429d-86bd-00c47b8c7eb2" + "ecaa8110-e4b9-4126-ae4e-07dc4ee0befd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1944,22 +1884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11984" ], "x-ms-request-id": [ - "417ea31d-c50b-4aa9-b5d7-3e9d89a9ecf4" + "d8423451-d339-47fb-b467-f5c56c0e6a47" ], "x-ms-correlation-request-id": [ - "417ea31d-c50b-4aa9-b5d7-3e9d89a9ecf4" + "d8423451-d339-47fb-b467-f5c56c0e6a47" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134636Z:417ea31d-c50b-4aa9-b5d7-3e9d89a9ecf4" + "JIOINDIACENTRAL:20220512T133338Z:d8423451-d339-47fb-b467-f5c56c0e6a47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:46:36 GMT" + "Thu, 12 May 2022 13:33:37 GMT" ], "Content-Length": [ "419" @@ -1968,23 +1908,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"X-Rn\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"96TY\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67434d4f-6518-4787-8252-4fe68e83d6c8" + "db1d0b36-bb0b-4e65-9c3a-9e9f1bb1b7f4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2004,22 +1944,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11996" ], "x-ms-request-id": [ - "6b295ac5-37d0-42c1-b62e-ec202ce7f2c4" + "312d3a98-9fe0-48f9-9eca-2c914d862af9" ], "x-ms-correlation-request-id": [ - "6b295ac5-37d0-42c1-b62e-ec202ce7f2c4" + "312d3a98-9fe0-48f9-9eca-2c914d862af9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134708Z:6b295ac5-37d0-42c1-b62e-ec202ce7f2c4" + "CENTRALINDIA:20220512T133411Z:312d3a98-9fe0-48f9-9eca-2c914d862af9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:47:08 GMT" + "Thu, 12 May 2022 13:34:10 GMT" ], "Content-Length": [ "419" @@ -2028,23 +1968,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"X-Rn\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"96TY\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38a702bb-fd3c-49f0-8867-e62889368117" + "20853d1a-67d3-4370-a8ba-6b7eaf36721d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2064,22 +2004,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11992" ], "x-ms-request-id": [ - "47cd53db-e87b-4f4d-a779-691aeb72e873" + "13a9a123-f16f-4a6f-8bf7-fb76526a0a6c" ], "x-ms-correlation-request-id": [ - "47cd53db-e87b-4f4d-a779-691aeb72e873" + "13a9a123-f16f-4a6f-8bf7-fb76526a0a6c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134739Z:47cd53db-e87b-4f4d-a779-691aeb72e873" + "CENTRALINDIA:20220512T133444Z:13a9a123-f16f-4a6f-8bf7-fb76526a0a6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:47:39 GMT" + "Thu, 12 May 2022 13:34:44 GMT" ], "Content-Length": [ "419" @@ -2088,26 +2028,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"X-Rn\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"96TY\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "97cf609e-e6d6-429d-86bd-00c47b8c7eb2" + "ecaa8110-e4b9-4126-ae4e-07dc4ee0befd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2124,13 +2064,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/ddacfaf2-8960-4ae9-9a41-2679b5cd766b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/22d33533-c6f6-4532-82ab-61464c8086cd?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ddacfaf2-8960-4ae9-9a41-2679b5cd766b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/22d33533-c6f6-4532-82ab-61464c8086cd?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ddacfaf2-8960-4ae9-9a41-2679b5cd766b" + "22d33533-c6f6-4532-82ab-61464c8086cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2142,19 +2082,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "3abd874b-e97a-4851-a15c-51e993265678" + "96a4a7f9-5e0b-4d72-a197-ca3a3a245c5d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134605Z:3abd874b-e97a-4851-a15c-51e993265678" + "JIOINDIACENTRAL:20220512T133307Z:96a4a7f9-5e0b-4d72-a197-ca3a3a245c5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:46:05 GMT" + "Thu, 12 May 2022 13:33:06 GMT" ], "Content-Length": [ "21" @@ -2167,22 +2107,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "67434d4f-6518-4787-8252-4fe68e83d6c8" + "db1d0b36-bb0b-4e65-9c3a-9e9f1bb1b7f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2199,13 +2139,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/8c0d3844-b000-46ac-b236-8748ea346cf0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/0e160703-3d6b-428f-a7b9-be766e6401be?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8c0d3844-b000-46ac-b236-8748ea346cf0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0e160703-3d6b-428f-a7b9-be766e6401be?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "8c0d3844-b000-46ac-b236-8748ea346cf0" + "0e160703-3d6b-428f-a7b9-be766e6401be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2217,19 +2157,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "b6876d41-8752-431e-bf01-7dd00761c8f6" + "7e6d6258-ff52-4fe4-ae13-51e3c0c69b5a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134637Z:b6876d41-8752-431e-bf01-7dd00761c8f6" + "CENTRALINDIA:20220512T133340Z:7e6d6258-ff52-4fe4-ae13-51e3c0c69b5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:46:37 GMT" + "Thu, 12 May 2022 13:33:39 GMT" ], "Content-Length": [ "21" @@ -2242,22 +2182,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "38a702bb-fd3c-49f0-8867-e62889368117" + "20853d1a-67d3-4370-a8ba-6b7eaf36721d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2274,13 +2214,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/b05bd489-690b-4618-86a9-8c50e09f228a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/2dccbc84-45b5-407a-af0d-cee9fbf97d17?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b05bd489-690b-4618-86a9-8c50e09f228a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2dccbc84-45b5-407a-af0d-cee9fbf97d17?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b05bd489-690b-4618-86a9-8c50e09f228a" + "2dccbc84-45b5-407a-af0d-cee9fbf97d17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,19 +2232,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "4b9bd870-3643-41aa-b8ef-e9b4411a7921" + "90aae52e-e048-4bc6-8e5c-95ea854df7f6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134708Z:4b9bd870-3643-41aa-b8ef-e9b4411a7921" + "CENTRALINDIA:20220512T133413Z:90aae52e-e048-4bc6-8e5c-95ea854df7f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:47:08 GMT" + "Thu, 12 May 2022 13:34:12 GMT" ], "Content-Length": [ "21" @@ -2317,19 +2257,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ddacfaf2-8960-4ae9-9a41-2679b5cd766b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGRhY2ZhZjItODk2MC00YWU5LTlhNDEtMjY3OWI1Y2Q3NjZiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/22d33533-c6f6-4532-82ab-61464c8086cd?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjJkMzM1MzMtYzZmNi00NTMyLTgyYWItNjE0NjRjODA4NmNkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97cf609e-e6d6-429d-86bd-00c47b8c7eb2" + "ecaa8110-e4b9-4126-ae4e-07dc4ee0befd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2349,22 +2289,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11985" ], "x-ms-request-id": [ - "86b36c8f-acf0-4d59-afba-225d5cefbe8a" + "2d83db12-a9f2-4bf4-903d-589c223d3924" ], "x-ms-correlation-request-id": [ - "86b36c8f-acf0-4d59-afba-225d5cefbe8a" + "2d83db12-a9f2-4bf4-903d-589c223d3924" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134635Z:86b36c8f-acf0-4d59-afba-225d5cefbe8a" + "JIOINDIACENTRAL:20220512T133337Z:2d83db12-a9f2-4bf4-903d-589c223d3924" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:46:35 GMT" + "Thu, 12 May 2022 13:33:36 GMT" ], "Content-Length": [ "22" @@ -2377,19 +2317,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8c0d3844-b000-46ac-b236-8748ea346cf0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGMwZDM4NDQtYjAwMC00NmFjLWIyMzYtODc0OGVhMzQ2Y2YwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0e160703-3d6b-428f-a7b9-be766e6401be?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGUxNjA3MDMtM2Q2Yi00MjhmLWE3YjktYmU3NjZlNjQwMWJlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67434d4f-6518-4787-8252-4fe68e83d6c8" + "db1d0b36-bb0b-4e65-9c3a-9e9f1bb1b7f4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2409,22 +2349,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11997" ], "x-ms-request-id": [ - "b57ad538-63c9-4122-bc79-33e1d42af37b" + "f9c3ef79-565f-4f87-8970-581f09d105b5" ], "x-ms-correlation-request-id": [ - "b57ad538-63c9-4122-bc79-33e1d42af37b" + "f9c3ef79-565f-4f87-8970-581f09d105b5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134707Z:b57ad538-63c9-4122-bc79-33e1d42af37b" + "CENTRALINDIA:20220512T133410Z:f9c3ef79-565f-4f87-8970-581f09d105b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:47:07 GMT" + "Thu, 12 May 2022 13:34:10 GMT" ], "Content-Length": [ "22" @@ -2437,19 +2377,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b05bd489-690b-4618-86a9-8c50e09f228a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjA1YmQ0ODktNjkwYi00NjE4LTg2YTktOGM1MGUwOWYyMjhhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2dccbc84-45b5-407a-af0d-cee9fbf97d17?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmRjY2JjODQtNDViNS00MDdhLWFmMGQtY2VlOWZiZjk3ZDE3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38a702bb-fd3c-49f0-8867-e62889368117" + "20853d1a-67d3-4370-a8ba-6b7eaf36721d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2469,22 +2409,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11993" ], "x-ms-request-id": [ - "80069de9-d5b1-47e0-83ec-eecd56baa67f" + "6e1e8f08-0eb0-4473-a2ca-fdd3379879db" ], "x-ms-correlation-request-id": [ - "80069de9-d5b1-47e0-83ec-eecd56baa67f" + "6e1e8f08-0eb0-4473-a2ca-fdd3379879db" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134739Z:80069de9-d5b1-47e0-83ec-eecd56baa67f" + "CENTRALINDIA:20220512T133444Z:6e1e8f08-0eb0-4473-a2ca-fdd3379879db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:47:39 GMT" + "Thu, 12 May 2022 13:34:43 GMT" ], "Content-Length": [ "22" @@ -2497,22 +2437,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1974e582-c9c3-4374-bf96-3b65f8415930" + "ff7f7ab7-8172-4ab8-bd98-fe564fbca194" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2523,13 +2463,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/df44b50e-11b4-4846-bce9-71ebf4c1a0e3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/a96a0b30-4222-4c84-8866-8ec1cbbcd9a0?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/df44b50e-11b4-4846-bce9-71ebf4c1a0e3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a96a0b30-4222-4c84-8866-8ec1cbbcd9a0?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "df44b50e-11b4-4846-bce9-71ebf4c1a0e3" + "a96a0b30-4222-4c84-8866-8ec1cbbcd9a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,16 +2484,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "413e0a7f-f762-43e7-8de6-81d1238884dc" + "a9ebc728-3d45-412d-9811-8d3a0be22359" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134740Z:413e0a7f-f762-43e7-8de6-81d1238884dc" + "CENTRALINDIA:20220512T133448Z:a9ebc728-3d45-412d-9811-8d3a0be22359" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:47:40 GMT" + "Thu, 12 May 2022 13:34:47 GMT" ], "Content-Length": [ "21" @@ -2566,22 +2506,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "032d47ce-7b4d-48a1-ad1f-a3ccdff0be30" + "ab205c01-0ec1-4bbe-a65a-df53ec9e1d8f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2592,13 +2532,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/1daafaf9-31d3-4310-b000-a926ab1fd5ce?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/5b3cd5e0-21aa-4ca6-9fb5-acda9094d1f7?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1daafaf9-31d3-4310-b000-a926ab1fd5ce?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5b3cd5e0-21aa-4ca6-9fb5-acda9094d1f7?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1daafaf9-31d3-4310-b000-a926ab1fd5ce" + "5b3cd5e0-21aa-4ca6-9fb5-acda9094d1f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2613,16 +2553,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f97cf0f5-10f5-4313-975f-892691fd1832" + "f314db18-27ee-4e45-889d-c15c0063dfff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T134846Z:f97cf0f5-10f5-4313-975f-892691fd1832" + "JIOINDIACENTRAL:20220512T133554Z:f314db18-27ee-4e45-889d-c15c0063dfff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:48:45 GMT" + "Thu, 12 May 2022 13:35:54 GMT" ], "Content-Length": [ "21" @@ -2635,19 +2575,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/df44b50e-11b4-4846-bce9-71ebf4c1a0e3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGY0NGI1MGUtMTFiNC00ODQ2LWJjZTktNzFlYmY0YzFhMGUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a96a0b30-4222-4c84-8866-8ec1cbbcd9a0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTk2YTBiMzAtNDIyMi00Yzg0LTg4NjYtOGVjMWNiYmNkOWEwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1974e582-c9c3-4374-bf96-3b65f8415930" + "ff7f7ab7-8172-4ab8-bd98-fe564fbca194" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2667,22 +2607,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11999" ], "x-ms-request-id": [ - "c10b2e6e-edb8-413c-97cc-213057824c87" + "6f6ba2d0-d066-4fbb-96d4-90c6d38014bb" ], "x-ms-correlation-request-id": [ - "c10b2e6e-edb8-413c-97cc-213057824c87" + "6f6ba2d0-d066-4fbb-96d4-90c6d38014bb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134810Z:c10b2e6e-edb8-413c-97cc-213057824c87" + "CENTRALINDIA:20220512T133518Z:6f6ba2d0-d066-4fbb-96d4-90c6d38014bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:48:10 GMT" + "Thu, 12 May 2022 13:35:17 GMT" ], "Content-Length": [ "22" @@ -2695,19 +2635,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/df44b50e-11b4-4846-bce9-71ebf4c1a0e3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9kZjQ0YjUwZS0xMWI0LTQ4NDYtYmNlOS03MWViZjRjMWEwZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/a96a0b30-4222-4c84-8866-8ec1cbbcd9a0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9hOTZhMGIzMC00MjIyLTRjODQtODg2Ni04ZWMxY2JiY2Q5YTA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1974e582-c9c3-4374-bf96-3b65f8415930" + "ff7f7ab7-8172-4ab8-bd98-fe564fbca194" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2727,22 +2667,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11998" ], "x-ms-request-id": [ - "b54a0a11-94e1-42a6-9628-7c682debb5da" + "615c37c7-7c27-4b03-808c-f67bfd4eb183" ], "x-ms-correlation-request-id": [ - "b54a0a11-94e1-42a6-9628-7c682debb5da" + "615c37c7-7c27-4b03-808c-f67bfd4eb183" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134810Z:b54a0a11-94e1-42a6-9628-7c682debb5da" + "CENTRALINDIA:20220512T133518Z:615c37c7-7c27-4b03-808c-f67bfd4eb183" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:48:10 GMT" + "Thu, 12 May 2022 13:35:18 GMT" ], "Content-Type": [ "application/json" @@ -2752,22 +2692,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27e084c1-2ad1-4b81-9831-7312594de47b" + "bb06324a-b4e7-487b-940f-f6b03482c69d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2778,13 +2718,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/da3c3c12-7c7b-486c-8cdc-58a8c1b3920e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/696bb111-157f-4978-9a09-383f1ce9a448?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/da3c3c12-7c7b-486c-8cdc-58a8c1b3920e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/696bb111-157f-4978-9a09-383f1ce9a448?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "da3c3c12-7c7b-486c-8cdc-58a8c1b3920e" + "696bb111-157f-4978-9a09-383f1ce9a448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2799,16 +2739,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "3e1be424-0fe0-48dd-8589-6a0939dd680f" + "f7f8a9b9-f479-4286-b136-11e5c9529d44" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134813Z:3e1be424-0fe0-48dd-8589-6a0939dd680f" + "CENTRALINDIA:20220512T133521Z:f7f8a9b9-f479-4286-b136-11e5c9529d44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:48:12 GMT" + "Thu, 12 May 2022 13:35:21 GMT" ], "Content-Length": [ "21" @@ -2821,22 +2761,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77c4e068-0e9a-45a8-b975-f1345d9922b4" + "43e60eb3-43ca-44fb-a942-7b535e96b47d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2847,13 +2787,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/4e92d9b4-abf3-4c94-a9d2-4ba1e9104ac1?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/423f1b05-64aa-4c68-83b9-d4838f0d67d1?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4e92d9b4-abf3-4c94-a9d2-4ba1e9104ac1?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/423f1b05-64aa-4c68-83b9-d4838f0d67d1?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "4e92d9b4-abf3-4c94-a9d2-4ba1e9104ac1" + "423f1b05-64aa-4c68-83b9-d4838f0d67d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2865,19 +2805,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "dd428942-24fb-4566-b7d7-09710e52a227" + "edfd8368-3477-436f-9bad-21daa42893d8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T134919Z:dd428942-24fb-4566-b7d7-09710e52a227" + "JIOINDIACENTRAL:20220512T133628Z:edfd8368-3477-436f-9bad-21daa42893d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:49:18 GMT" + "Thu, 12 May 2022 13:36:28 GMT" ], "Content-Length": [ "21" @@ -2890,19 +2830,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/da3c3c12-7c7b-486c-8cdc-58a8c1b3920e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGEzYzNjMTItN2M3Yi00ODZjLThjZGMtNThhOGMxYjM5MjBlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/696bb111-157f-4978-9a09-383f1ce9a448?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjk2YmIxMTEtMTU3Zi00OTc4LTlhMDktMzgzZjFjZTlhNDQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27e084c1-2ad1-4b81-9831-7312594de47b" + "bb06324a-b4e7-487b-940f-f6b03482c69d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2925,19 +2865,19 @@ "11999" ], "x-ms-request-id": [ - "07ac23d8-35cf-43cd-bca1-26283a5df0bc" + "4f9eb5a4-5839-4822-b4d3-2450f16618f6" ], "x-ms-correlation-request-id": [ - "07ac23d8-35cf-43cd-bca1-26283a5df0bc" + "4f9eb5a4-5839-4822-b4d3-2450f16618f6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134843Z:07ac23d8-35cf-43cd-bca1-26283a5df0bc" + "CENTRALINDIA:20220512T133552Z:4f9eb5a4-5839-4822-b4d3-2450f16618f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:48:43 GMT" + "Thu, 12 May 2022 13:35:51 GMT" ], "Content-Length": [ "22" @@ -2950,19 +2890,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/da3c3c12-7c7b-486c-8cdc-58a8c1b3920e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy9kYTNjM2MxMi03YzdiLTQ4NmMtOGNkYy01OGE4YzFiMzkyMGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/696bb111-157f-4978-9a09-383f1ce9a448?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy82OTZiYjExMS0xNTdmLTQ5NzgtOWEwOS0zODNmMWNlOWE0NDg/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27e084c1-2ad1-4b81-9831-7312594de47b" + "bb06324a-b4e7-487b-940f-f6b03482c69d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2985,19 +2925,19 @@ "11998" ], "x-ms-request-id": [ - "f91da8de-49d0-40e8-a055-f12a1f4622e0" + "ce996142-c24e-428a-ab20-8b89624e99ba" ], "x-ms-correlation-request-id": [ - "f91da8de-49d0-40e8-a055-f12a1f4622e0" + "ce996142-c24e-428a-ab20-8b89624e99ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T134843Z:f91da8de-49d0-40e8-a055-f12a1f4622e0" + "CENTRALINDIA:20220512T133552Z:ce996142-c24e-428a-ab20-8b89624e99ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:48:43 GMT" + "Thu, 12 May 2022 13:35:52 GMT" ], "Content-Type": [ "application/json" @@ -3007,19 +2947,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1daafaf9-31d3-4310-b000-a926ab1fd5ce?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWRhYWZhZjktMzFkMy00MzEwLWIwMDAtYTkyNmFiMWZkNWNlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5b3cd5e0-21aa-4ca6-9fb5-acda9094d1f7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWIzY2Q1ZTAtMjFhYS00Y2E2LTlmYjUtYWNkYTkwOTRkMWY3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "032d47ce-7b4d-48a1-ad1f-a3ccdff0be30" + "ab205c01-0ec1-4bbe-a65a-df53ec9e1d8f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3039,22 +2979,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-request-id": [ - "61bebd73-86a8-4801-8c53-e1aa5c6f183e" + "4015885c-138a-47f6-9e80-dfb5152145f3" ], "x-ms-correlation-request-id": [ - "61bebd73-86a8-4801-8c53-e1aa5c6f183e" + "4015885c-138a-47f6-9e80-dfb5152145f3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T134916Z:61bebd73-86a8-4801-8c53-e1aa5c6f183e" + "JIOINDIACENTRAL:20220512T133624Z:4015885c-138a-47f6-9e80-dfb5152145f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:49:16 GMT" + "Thu, 12 May 2022 13:36:24 GMT" ], "Content-Length": [ "22" @@ -3067,19 +3007,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/1daafaf9-31d3-4310-b000-a926ab1fd5ce?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvb3BlcmF0aW9uUmVzdWx0cy8xZGFhZmFmOS0zMWQzLTQzMTAtYjAwMC1hOTI2YWIxZmQ1Y2U/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/collections/collectionName/operationResults/5b3cd5e0-21aa-4ca6-9fb5-acda9094d1f7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWUvb3BlcmF0aW9uUmVzdWx0cy81YjNjZDVlMC0yMWFhLTRjYTYtOWZiNS1hY2RhOTA5NGQxZjc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "032d47ce-7b4d-48a1-ad1f-a3ccdff0be30" + "ab205c01-0ec1-4bbe-a65a-df53ec9e1d8f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3099,22 +3039,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-request-id": [ - "82c3f736-a1dc-4c48-b7ad-ae5c8aee4552" + "0df908a8-5f5b-4ab9-b454-2731a53c01ba" ], "x-ms-correlation-request-id": [ - "82c3f736-a1dc-4c48-b7ad-ae5c8aee4552" + "0df908a8-5f5b-4ab9-b454-2731a53c01ba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T134917Z:82c3f736-a1dc-4c48-b7ad-ae5c8aee4552" + "JIOINDIACENTRAL:20220512T133625Z:0df908a8-5f5b-4ab9-b454-2731a53c01ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:49:17 GMT" + "Thu, 12 May 2022 13:36:24 GMT" ], "Content-Type": [ "application/json" @@ -3124,19 +3064,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4e92d9b4-abf3-4c94-a9d2-4ba1e9104ac1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGU5MmQ5YjQtYWJmMy00Yzk0LWE5ZDItNGJhMWU5MTA0YWMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/423f1b05-64aa-4c68-83b9-d4838f0d67d1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDIzZjFiMDUtNjRhYS00YzY4LTgzYjktZDQ4MzhmMGQ2N2QxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77c4e068-0e9a-45a8-b975-f1345d9922b4" + "43e60eb3-43ca-44fb-a942-7b535e96b47d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3159,19 +3099,19 @@ "11999" ], "x-ms-request-id": [ - "75c9ffa7-0568-49f6-92c1-8a88f7dbb71e" + "0cf6db87-ec7a-44a4-a12d-7d3f19432ed2" ], "x-ms-correlation-request-id": [ - "75c9ffa7-0568-49f6-92c1-8a88f7dbb71e" + "0cf6db87-ec7a-44a4-a12d-7d3f19432ed2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T134949Z:75c9ffa7-0568-49f6-92c1-8a88f7dbb71e" + "SOUTHEASTASIA:20220512T133721Z:0cf6db87-ec7a-44a4-a12d-7d3f19432ed2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:49:48 GMT" + "Thu, 12 May 2022 13:37:21 GMT" ], "Content-Length": [ "22" @@ -3184,19 +3124,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/4e92d9b4-abf3-4c94-a9d2-4ba1e9104ac1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy80ZTkyZDliNC1hYmYzLTRjOTQtYTlkMi00YmExZTkxMDRhYzE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup45/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db0045/mongodbDatabases/dbName3/operationResults/423f1b05-64aa-4c68-83b9-d4838f0d67d1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDA0NS9tb25nb2RiRGF0YWJhc2VzL2RiTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy80MjNmMWIwNS02NGFhLTRjNjgtODNiOS1kNDgzOGYwZDY3ZDE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77c4e068-0e9a-45a8-b975-f1345d9922b4" + "43e60eb3-43ca-44fb-a942-7b535e96b47d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3219,19 +3159,19 @@ "11998" ], "x-ms-request-id": [ - "e0982bfb-5a73-45e8-886b-daf43d7537de" + "d03d017b-26e2-4223-ba1e-d598b9af4b06" ], "x-ms-correlation-request-id": [ - "e0982bfb-5a73-45e8-886b-daf43d7537de" + "d03d017b-26e2-4223-ba1e-d598b9af4b06" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T134949Z:e0982bfb-5a73-45e8-886b-daf43d7537de" + "SOUTHEASTASIA:20220512T133723Z:d03d017b-26e2-4223-ba1e-d598b9af4b06" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:49:48 GMT" + "Thu, 12 May 2022 13:37:22 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestMongoDBCollectionBackupInformationCmdLets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestMongoDBCollectionBackupInformationCmdLets.json index 15dfe90bd299..157f2632a1a5 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestMongoDBCollectionBackupInformationCmdLets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestMongoDBCollectionBackupInformationCmdLets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "94eccb6c-e787-479b-a0e8-f7058515a97d" + "61cc5103-0f5a-4b55-9d64-8ce2bb13f405" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "b91307b8-b376-46da-8ba5-fbe176e7de86" + "23ee799a-5977-4857-9fcf-ab15a3a42be4" ], "x-ms-correlation-request-id": [ - "b91307b8-b376-46da-8ba5-fbe176e7de86" + "23ee799a-5977-4857-9fcf-ab15a3a42be4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161942Z:b91307b8-b376-46da-8ba5-fbe176e7de86" + "CENTRALINDIA:20220512T114849Z:23ee799a-5977-4857-9fcf-ab15a3a42be4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:19:41 GMT" + "Thu, 12 May 2022 11:48:49 GMT" ], "Content-Length": [ "202" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "38bc9ec8-7ace-4826-b422-2899c0a309ac" + "c2935f5d-fbb0-4015-b8a7-62f5101d2941" ], "x-ms-correlation-request-id": [ - "38bc9ec8-7ace-4826-b422-2899c0a309ac" + "c2935f5d-fbb0-4015-b8a7-62f5101d2941" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161943Z:38bc9ec8-7ace-4826-b422-2899c0a309ac" + "CENTRALINDIA:20220512T114849Z:c2935f5d-fbb0-4015-b8a7-62f5101d2941" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:19:42 GMT" + "Thu, 12 May 2022 11:48:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-request-id": [ - "7991f529-e217-4358-89a5-822b4eebac1a" + "1cab63e1-0ae3-4404-aca2-9f6f1202f6fc" ], "x-ms-correlation-request-id": [ - "7991f529-e217-4358-89a5-822b4eebac1a" + "1cab63e1-0ae3-4404-aca2-9f6f1202f6fc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162331Z:7991f529-e217-4358-89a5-822b4eebac1a" + "CENTRALINDIA:20220512T115234Z:1cab63e1-0ae3-4404-aca2-9f6f1202f6fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:23:30 GMT" + "Thu, 12 May 2022 11:52:34 GMT" ], "Content-Length": [ - "2416" + "2471" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215\",\r\n \"name\": \"cosmosdb-1215\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:23:10.6620782Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://cosmosdb-1215.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"e41735d2-f24a-4536-824f-561459fd1bb2\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215\",\r\n \"name\": \"cosmosdb-1215\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:52:14.8269758Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://cosmosdb-1215.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"cbb0e546-c7e0-4221-9934-ccfeed0c3385\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3676e152-8116-474d-8e37-e1c5ea8fd720" + "05d01773-bd69-489a-92e3-0b00d7fc7e47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,50 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "9d720511-61ce-40fa-99d2-56e327c0f170" + "767f9f11-bba4-498f-a555-60b4ba4bf188" ], "x-ms-correlation-request-id": [ - "9d720511-61ce-40fa-99d2-56e327c0f170" + "767f9f11-bba4-498f-a555-60b4ba4bf188" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162436Z:9d720511-61ce-40fa-99d2-56e327c0f170" + "CENTRALINDIA:20220512T115356Z:767f9f11-bba4-498f-a555-60b4ba4bf188" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:36 GMT" + "Thu, 12 May 2022 11:53:56 GMT" ], "Content-Length": [ - "2416" + "2471" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215\",\r\n \"name\": \"cosmosdb-1215\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:23:10.6620782Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://cosmosdb-1215.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"e41735d2-f24a-4536-824f-561459fd1bb2\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215\",\r\n \"name\": \"cosmosdb-1215\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:52:14.8269758Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://cosmosdb-1215.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"cbb0e546-c7e0-4221-9934-ccfeed0c3385\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1215-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/operationResults/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/operationResults/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "45107f32-0607-4e7b-8fdb-0b5d0248e7fe" + "c0842573-65ee-4983-985f-c9bfc3d786b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,41 +303,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "246d79bc-026e-4638-83e2-5fe5ac893b80" + "c65a9a2e-fbe6-41df-afcf-69979a2e33df" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T161958Z:246d79bc-026e-4638-83e2-5fe5ac893b80" + "CENTRALINDIA:20220512T114902Z:c65a9a2e-fbe6-41df-afcf-69979a2e33df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:19:58 GMT" + "Thu, 12 May 2022 11:49:01 GMT" ], "Content-Length": [ - "1999" + "2054" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215\",\r\n \"name\": \"cosmosdb-1215\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:19:55.2202308Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"e41735d2-f24a-4536-824f-561459fd1bb2\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215\",\r\n \"name\": \"cosmosdb-1215\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:48:58.4832987Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"cbb0e546-c7e0-4221-9934-ccfeed0c3385\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1215-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDUxMDdmMzItMDYwNy00ZTdiLThmZGItMGI1ZDAyNDhlN2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzA4NDI1NzMtNjVlZS00OTgzLTk4NWYtYzliZmMzZDc4NmI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -357,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "8c909a1b-9cd3-4db0-b5a3-ed7df343f622" + "1d2c655d-93c3-4899-b617-ce113f1080e9" ], "x-ms-correlation-request-id": [ - "8c909a1b-9cd3-4db0-b5a3-ed7df343f622" + "1d2c655d-93c3-4899-b617-ce113f1080e9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162028Z:8c909a1b-9cd3-4db0-b5a3-ed7df343f622" + "CENTRALINDIA:20220512T114932Z:1d2c655d-93c3-4899-b617-ce113f1080e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:20:27 GMT" + "Thu, 12 May 2022 11:49:32 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDUxMDdmMzItMDYwNy00ZTdiLThmZGItMGI1ZDAyNDhlN2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzA4NDI1NzMtNjVlZS00OTgzLTk4NWYtYzliZmMzZDc4NmI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "524a6bc6-07b8-4f01-9993-dedd41aed48c" + "551076ff-8d11-48ea-a765-0d01ed7e29d6" ], "x-ms-correlation-request-id": [ - "524a6bc6-07b8-4f01-9993-dedd41aed48c" + "551076ff-8d11-48ea-a765-0d01ed7e29d6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162058Z:524a6bc6-07b8-4f01-9993-dedd41aed48c" + "CENTRALINDIA:20220512T115002Z:551076ff-8d11-48ea-a765-0d01ed7e29d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:20:58 GMT" + "Thu, 12 May 2022 11:50:02 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDUxMDdmMzItMDYwNy00ZTdiLThmZGItMGI1ZDAyNDhlN2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzA4NDI1NzMtNjVlZS00OTgzLTk4NWYtYzliZmMzZDc4NmI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "72ee2be3-f0ab-425d-9e77-b00ffd92083f" + "2d7e034c-94d6-4192-8f4a-315644a90922" ], "x-ms-correlation-request-id": [ - "72ee2be3-f0ab-425d-9e77-b00ffd92083f" + "2d7e034c-94d6-4192-8f4a-315644a90922" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162129Z:72ee2be3-f0ab-425d-9e77-b00ffd92083f" + "CENTRALINDIA:20220512T115032Z:2d7e034c-94d6-4192-8f4a-315644a90922" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:21:28 GMT" + "Thu, 12 May 2022 11:50:32 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDUxMDdmMzItMDYwNy00ZTdiLThmZGItMGI1ZDAyNDhlN2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzA4NDI1NzMtNjVlZS00OTgzLTk4NWYtYzliZmMzZDc4NmI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "d1a85158-36a4-42dc-96a7-bc8216c34b32" + "4bead6ca-6308-46e7-a413-7a25a18d7474" ], "x-ms-correlation-request-id": [ - "d1a85158-36a4-42dc-96a7-bc8216c34b32" + "4bead6ca-6308-46e7-a413-7a25a18d7474" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162159Z:d1a85158-36a4-42dc-96a7-bc8216c34b32" + "CENTRALINDIA:20220512T115103Z:4bead6ca-6308-46e7-a413-7a25a18d7474" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:21:58 GMT" + "Thu, 12 May 2022 11:51:03 GMT" ], "Content-Length": [ "21" @@ -565,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDUxMDdmMzItMDYwNy00ZTdiLThmZGItMGI1ZDAyNDhlN2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzA4NDI1NzMtNjVlZS00OTgzLTk4NWYtYzliZmMzZDc4NmI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-request-id": [ - "9536a0af-fb21-4f38-8c1e-d41f307cacec" + "2f2ca71c-aded-467b-ae86-4bff0fb58c5b" ], "x-ms-correlation-request-id": [ - "9536a0af-fb21-4f38-8c1e-d41f307cacec" + "2f2ca71c-aded-467b-ae86-4bff0fb58c5b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162229Z:9536a0af-fb21-4f38-8c1e-d41f307cacec" + "CENTRALINDIA:20220512T115133Z:2f2ca71c-aded-467b-ae86-4bff0fb58c5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:22:29 GMT" + "Thu, 12 May 2022 11:51:32 GMT" ], "Content-Length": [ "21" @@ -625,19 +625,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDUxMDdmMzItMDYwNy00ZTdiLThmZGItMGI1ZDAyNDhlN2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzA4NDI1NzMtNjVlZS00OTgzLTk4NWYtYzliZmMzZDc4NmI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +657,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-request-id": [ - "9857c27c-1aa8-4cc5-a9ec-5f0e30c6dc93" + "67269fb1-2050-4453-93f3-f1ee69df6fdf" ], "x-ms-correlation-request-id": [ - "9857c27c-1aa8-4cc5-a9ec-5f0e30c6dc93" + "67269fb1-2050-4453-93f3-f1ee69df6fdf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162300Z:9857c27c-1aa8-4cc5-a9ec-5f0e30c6dc93" + "CENTRALINDIA:20220512T115203Z:67269fb1-2050-4453-93f3-f1ee69df6fdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:22:59 GMT" + "Thu, 12 May 2022 11:52:02 GMT" ], "Content-Length": [ "21" @@ -685,19 +685,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/45107f32-0607-4e7b-8fdb-0b5d0248e7fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDUxMDdmMzItMDYwNy00ZTdiLThmZGItMGI1ZDAyNDhlN2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c0842573-65ee-4983-985f-c9bfc3d786b7?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzA4NDI1NzMtNjVlZS00OTgzLTk4NWYtYzliZmMzZDc4NmI3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eff173a9-2bf9-4c9c-a031-5d5d6b12a4b6" + "49949320-d905-4d18-b75b-6a6a33f3638c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -717,22 +717,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-request-id": [ - "211e0193-3b35-41e0-9648-fc1b9209c796" + "4946a3c1-320d-4a5a-b494-885094b5b0e7" ], "x-ms-correlation-request-id": [ - "211e0193-3b35-41e0-9648-fc1b9209c796" + "4946a3c1-320d-4a5a-b494-885094b5b0e7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162331Z:211e0193-3b35-41e0-9648-fc1b9209c796" + "CENTRALINDIA:20220512T115234Z:4946a3c1-320d-4a5a-b494-885094b5b0e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:23:30 GMT" + "Thu, 12 May 2022 11:52:33 GMT" ], "Content-Length": [ "22" @@ -745,22 +745,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e88df0b-66ee-45a3-9aee-582be4294cd6" + "2da1f3f8-2afe-48c8-993e-e048b87a6642" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,22 +780,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11990" ], "x-ms-request-id": [ - "1e30434d-1771-4856-8f06-166b87cf275f" + "3515906d-acc5-482d-923f-ae2feac60ef4" ], "x-ms-correlation-request-id": [ - "1e30434d-1771-4856-8f06-166b87cf275f" + "3515906d-acc5-482d-923f-ae2feac60ef4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162332Z:1e30434d-1771-4856-8f06-166b87cf275f" + "JIOINDIACENTRAL:20220512T115240Z:3515906d-acc5-482d-923f-ae2feac60ef4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:23:31 GMT" + "Thu, 12 May 2022 11:52:39 GMT" ], "Content-Length": [ "160" @@ -804,23 +804,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database TestDB1 doesn't exist.\\r\\nActivityId: 5e88df0b-66ee-45a3-9aee-582be4294cd6, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database TestDB1 doesn't exist.\\r\\nActivityId: 2da1f3f8-2afe-48c8-993e-e048b87a6642, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e88df0b-66ee-45a3-9aee-582be4294cd6" + "2da1f3f8-2afe-48c8-993e-e048b87a6642" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -840,22 +840,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11988" ], "x-ms-request-id": [ - "e16da578-2b68-4f6f-8035-6c10dc3af0a6" + "f67062a8-cbae-43b0-beb8-bebe06a91902" ], "x-ms-correlation-request-id": [ - "e16da578-2b68-4f6f-8035-6c10dc3af0a6" + "f67062a8-cbae-43b0-beb8-bebe06a91902" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162404Z:e16da578-2b68-4f6f-8035-6c10dc3af0a6" + "JIOINDIACENTRAL:20220512T115314Z:f67062a8-cbae-43b0-beb8-bebe06a91902" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:04 GMT" + "Thu, 12 May 2022 11:53:14 GMT" ], "Content-Length": [ "310" @@ -868,22 +868,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3676e152-8116-474d-8e37-e1c5ea8fd720" + "05d01773-bd69-489a-92e3-0b00d7fc7e47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -903,22 +903,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-request-id": [ - "be2efa87-bb1f-4494-a83a-6e84b5c1bdf4" + "9f1b366d-099f-482f-b328-1c140799bd2e" ], "x-ms-correlation-request-id": [ - "be2efa87-bb1f-4494-a83a-6e84b5c1bdf4" + "9f1b366d-099f-482f-b328-1c140799bd2e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162437Z:be2efa87-bb1f-4494-a83a-6e84b5c1bdf4" + "CENTRALINDIA:20220512T115357Z:9f1b366d-099f-482f-b328-1c140799bd2e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:36 GMT" + "Thu, 12 May 2022 11:53:57 GMT" ], "Content-Length": [ "310" @@ -931,22 +931,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5e88df0b-66ee-45a3-9aee-582be4294cd6" + "2da1f3f8-2afe-48c8-993e-e048b87a6642" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -963,13 +963,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/operationResults/b75106bf-f3e0-4eb0-bebd-d881fa1102d8?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/operationResults/91847747-2993-4ff6-b408-9e7b38d539c2?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/b75106bf-f3e0-4eb0-bebd-d881fa1102d8?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/91847747-2993-4ff6-b408-9e7b38d539c2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b75106bf-f3e0-4eb0-bebd-d881fa1102d8" + "91847747-2993-4ff6-b408-9e7b38d539c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,19 +981,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "0800c9ff-c116-4209-97d0-79ecc39e26d1" + "ff87a8b9-1aa5-4663-aa29-217424d65ba3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162333Z:0800c9ff-c116-4209-97d0-79ecc39e26d1" + "JIOINDIACENTRAL:20220512T115243Z:ff87a8b9-1aa5-4663-aa29-217424d65ba3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:23:32 GMT" + "Thu, 12 May 2022 11:52:42 GMT" ], "Content-Length": [ "21" @@ -1006,19 +1006,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/b75106bf-f3e0-4eb0-bebd-d881fa1102d8?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjc1MTA2YmYtZjNlMC00ZWIwLWJlYmQtZDg4MWZhMTEwMmQ4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/91847747-2993-4ff6-b408-9e7b38d539c2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTE4NDc3NDctMjk5My00ZmY2LWI0MDgtOWU3YjM4ZDUzOWMyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e88df0b-66ee-45a3-9aee-582be4294cd6" + "2da1f3f8-2afe-48c8-993e-e048b87a6642" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11989" ], "x-ms-request-id": [ - "0f392399-9b92-43db-b076-28aa83d17fd8" + "65d84618-fb22-4ba0-aa7f-772b9768bbe5" ], "x-ms-correlation-request-id": [ - "0f392399-9b92-43db-b076-28aa83d17fd8" + "65d84618-fb22-4ba0-aa7f-772b9768bbe5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162403Z:0f392399-9b92-43db-b076-28aa83d17fd8" + "JIOINDIACENTRAL:20220512T115313Z:65d84618-fb22-4ba0-aa7f-772b9768bbe5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:02 GMT" + "Thu, 12 May 2022 11:53:13 GMT" ], "Content-Length": [ "22" @@ -1066,22 +1066,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c43697dd-08e2-4885-b470-68125babc55d" + "2cf915ff-64a6-460b-9528-3ab6c4347c25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1101,22 +1101,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11989" ], "x-ms-request-id": [ - "e282f3fd-adba-4f5f-a592-b5f35861de11" + "ec4d53e2-1633-42c7-9253-fe7e95204fb8" ], "x-ms-correlation-request-id": [ - "e282f3fd-adba-4f5f-a592-b5f35861de11" + "ec4d53e2-1633-42c7-9253-fe7e95204fb8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162404Z:e282f3fd-adba-4f5f-a592-b5f35861de11" + "JIOINDIACENTRAL:20220512T115320Z:ec4d53e2-1633-42c7-9253-fe7e95204fb8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:04 GMT" + "Thu, 12 May 2022 11:53:20 GMT" ], "Content-Length": [ "186" @@ -1125,23 +1125,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'TestDB1'.'TestCollectionInDB1' doesn't exist.\\r\\nActivityId: c43697dd-08e2-4885-b470-68125babc55d, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'TestDB1'.'TestCollectionInDB1' doesn't exist.\\r\\nActivityId: 2cf915ff-64a6-460b-9528-3ab6c4347c25, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c43697dd-08e2-4885-b470-68125babc55d" + "2cf915ff-64a6-460b-9528-3ab6c4347c25" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1161,22 +1161,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11987" ], "x-ms-request-id": [ - "1a9be56b-f490-46f9-a047-e5272ef90df5" + "de85b3a8-d567-4943-ba07-fbcf74539fbb" ], "x-ms-correlation-request-id": [ - "1a9be56b-f490-46f9-a047-e5272ef90df5" + "de85b3a8-d567-4943-ba07-fbcf74539fbb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162436Z:1a9be56b-f490-46f9-a047-e5272ef90df5" + "JIOINDIACENTRAL:20220512T115354Z:de85b3a8-d567-4943-ba07-fbcf74539fbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:35 GMT" + "Thu, 12 May 2022 11:53:54 GMT" ], "Content-Length": [ "451" @@ -1189,22 +1189,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3676e152-8116-474d-8e37-e1c5ea8fd720" + "05d01773-bd69-489a-92e3-0b00d7fc7e47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1224,22 +1224,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11997" ], "x-ms-request-id": [ - "65febeb5-8223-4220-b327-65d31bb5c885" + "1285bdf3-e07f-42e5-b3a3-88841758be93" ], "x-ms-correlation-request-id": [ - "65febeb5-8223-4220-b327-65d31bb5c885" + "1285bdf3-e07f-42e5-b3a3-88841758be93" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162437Z:65febeb5-8223-4220-b327-65d31bb5c885" + "CENTRALINDIA:20220512T115358Z:1285bdf3-e07f-42e5-b3a3-88841758be93" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:37 GMT" + "Thu, 12 May 2022 11:53:58 GMT" ], "Content-Length": [ "451" @@ -1252,22 +1252,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"shardKey\": {\r\n \"partitionkey1\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 10000\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c43697dd-08e2-4885-b470-68125babc55d" + "2cf915ff-64a6-460b-9528-3ab6c4347c25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1284,13 +1284,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/operationResults/7d389a7a-a7c4-486d-a390-dc8e37738d8a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/operationResults/094ac7d4-ee92-453e-817b-a9828e79329e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/7d389a7a-a7c4-486d-a390-dc8e37738d8a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/094ac7d4-ee92-453e-817b-a9828e79329e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "7d389a7a-a7c4-486d-a390-dc8e37738d8a" + "094ac7d4-ee92-453e-817b-a9828e79329e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1305,16 +1305,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "2b5911f3-bdf6-49f7-ae9b-f80ad4071096" + "6556d216-c094-45de-8c16-43136128ef86" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162405Z:2b5911f3-bdf6-49f7-ae9b-f80ad4071096" + "JIOINDIACENTRAL:20220512T115322Z:6556d216-c094-45de-8c16-43136128ef86" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:05 GMT" + "Thu, 12 May 2022 11:53:22 GMT" ], "Content-Length": [ "21" @@ -1327,19 +1327,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/7d389a7a-a7c4-486d-a390-dc8e37738d8a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN2QzODlhN2EtYTdjNC00ODZkLWEzOTAtZGM4ZTM3NzM4ZDhhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/094ac7d4-ee92-453e-817b-a9828e79329e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDk0YWM3ZDQtZWU5Mi00NTNlLTgxN2ItYTk4MjhlNzkzMjllP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c43697dd-08e2-4885-b470-68125babc55d" + "2cf915ff-64a6-460b-9528-3ab6c4347c25" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1359,22 +1359,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11988" ], "x-ms-request-id": [ - "00d60164-bedf-4820-9507-1d4444a6f11e" + "0a78af12-509e-41d8-be9d-acfcda0266dc" ], "x-ms-correlation-request-id": [ - "00d60164-bedf-4820-9507-1d4444a6f11e" + "0a78af12-509e-41d8-be9d-acfcda0266dc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162435Z:00d60164-bedf-4820-9507-1d4444a6f11e" + "JIOINDIACENTRAL:20220512T115353Z:0a78af12-509e-41d8-be9d-acfcda0266dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:35 GMT" + "Thu, 12 May 2022 11:53:53 GMT" ], "Content-Length": [ "22" @@ -1387,22 +1387,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/retrieveContinuousBackupInformation?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjEvcmV0cmlldmVDb250aW51b3VzQmFja3VwSW5mb3JtYXRpb24/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/retrieveContinuousBackupInformation?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjEvcmV0cmlldmVDb250aW51b3VzQmFja3VwSW5mb3JtYXRpb24/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3676e152-8116-474d-8e37-e1c5ea8fd720" + "05d01773-bd69-489a-92e3-0b00d7fc7e47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1419,10 +1419,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/9adf4306-fce4-40e4-af67-4c3831e8d8f2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/e8097108-83d4-44ee-8efb-a222532ff275?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "9adf4306-fce4-40e4-af67-4c3831e8d8f2" + "e8097108-83d4-44ee-8efb-a222532ff275" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,16 +1437,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "62d12c69-4f24-4044-ade8-188ea8cc9e0e" + "f77bef42-961d-474b-9584-90ec9708fb9a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162438Z:62d12c69-4f24-4044-ade8-188ea8cc9e0e" + "CENTRALINDIA:20220512T115359Z:f77bef42-961d-474b-9584-90ec9708fb9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:24:38 GMT" + "Thu, 12 May 2022 11:53:59 GMT" ], "Content-Length": [ "21" @@ -1459,19 +1459,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/9adf4306-fce4-40e4-af67-4c3831e8d8f2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjEvcmV0cmlldmVDb250aW51b3VzQmFja3VwSW5mb3JtYXRpb24vb3BlcmF0aW9uUmVzdWx0cy85YWRmNDMwNi1mY2U0LTQwZTQtYWY2Ny00YzM4MzFlOGQ4ZjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/e8097108-83d4-44ee-8efb-a222532ff275?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjEvcmV0cmlldmVDb250aW51b3VzQmFja3VwSW5mb3JtYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lODA5NzEwOC04M2Q0LTQ0ZWUtOGVmYi1hMjIyNTMyZmYyNzU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3676e152-8116-474d-8e37-e1c5ea8fd720" + "05d01773-bd69-489a-92e3-0b00d7fc7e47" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1491,47 +1491,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11996" ], "x-ms-request-id": [ - "727c006f-2957-4cb7-9881-253a974454d2" + "dd7ca253-7363-466c-a32a-842c4ded0624" ], "x-ms-correlation-request-id": [ - "727c006f-2957-4cb7-9881-253a974454d2" + "dd7ca253-7363-466c-a32a-842c4ded0624" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162508Z:727c006f-2957-4cb7-9881-253a974454d2" + "CENTRALINDIA:20220512T115430Z:dd7ca253-7363-466c-a32a-842c4ded0624" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:25:07 GMT" + "Thu, 12 May 2022 11:54:29 GMT" ], "Content-Length": [ - "83" + "85" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"continuousBackupInformation\": {\r\n \"latestRestorableTimestamp\": \"3/8/2022 4:24:44 PM\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"continuousBackupInformation\": {\r\n \"latestRestorableTimestamp\": \"5/12/2022 11:54:05 AM\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/9adf4306-fce4-40e4-af67-4c3831e8d8f2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjEvcmV0cmlldmVDb250aW51b3VzQmFja3VwSW5mb3JtYXRpb24vb3BlcmF0aW9uUmVzdWx0cy85YWRmNDMwNi1mY2U0LTQwZTQtYWY2Ny00YzM4MzFlOGQ4ZjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup15/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1215/mongodbDatabases/TestDB1/collections/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/e8097108-83d4-44ee-8efb-a222532ff275?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTUvbW9uZ29kYkRhdGFiYXNlcy9UZXN0REIxL2NvbGxlY3Rpb25zL1Rlc3RDb2xsZWN0aW9uSW5EQjEvcmV0cmlldmVDb250aW51b3VzQmFja3VwSW5mb3JtYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lODA5NzEwOC04M2Q0LTQ0ZWUtOGVmYi1hMjIyNTMyZmYyNzU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3676e152-8116-474d-8e37-e1c5ea8fd720" + "05d01773-bd69-489a-92e3-0b00d7fc7e47" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1551,31 +1551,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11995" ], "x-ms-request-id": [ - "0804eca1-b858-474a-81d9-e36f39a85890" + "11f6e5a4-6b51-4171-aec7-78bd1c0eef4c" ], "x-ms-correlation-request-id": [ - "0804eca1-b858-474a-81d9-e36f39a85890" + "11f6e5a4-6b51-4171-aec7-78bd1c0eef4c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T162509Z:0804eca1-b858-474a-81d9-e36f39a85890" + "CENTRALINDIA:20220512T115430Z:11f6e5a4-6b51-4171-aec7-78bd1c0eef4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:25:08 GMT" + "Thu, 12 May 2022 11:54:30 GMT" ], "Content-Length": [ - "83" + "85" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"continuousBackupInformation\": {\r\n \"latestRestorableTimestamp\": \"3/8/2022 4:24:44 PM\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"continuousBackupInformation\": {\r\n \"latestRestorableTimestamp\": \"5/12/2022 11:54:05 AM\"\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestMongoRestoreAccountCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestMongoRestoreAccountCmdlets.json index 6b023674cb2f..8501a091297d 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestMongoRestoreAccountCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestMongoRestoreAccountCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4abfb531-029d-4e60-9f46-4f9ff1f02d00" + "a0b64ca0-4d62-492f-9d4f-bdde6b8a4504" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "5432499f-47c4-47d9-97a9-4a2ddf56a490" + "c86a9a1d-91ad-4284-b25b-dd42ea9a4e56" ], "x-ms-correlation-request-id": [ - "5432499f-47c4-47d9-97a9-4a2ddf56a490" + "c86a9a1d-91ad-4284-b25b-dd42ea9a4e56" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164224Z:5432499f-47c4-47d9-97a9-4a2ddf56a490" + "CENTRALINDIA:20220512T121317Z:c86a9a1d-91ad-4284-b25b-dd42ea9a4e56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:42:23 GMT" + "Thu, 12 May 2022 12:13:17 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3ND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "5468dfbb-e329-4a43-bcbe-50e446dff514" + "c9f2ed9e-33ea-47e0-a8fb-24095f1d946c" ], "x-ms-correlation-request-id": [ - "5468dfbb-e329-4a43-bcbe-50e446dff514" + "c9f2ed9e-33ea-47e0-a8fb-24095f1d946c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164224Z:5468dfbb-e329-4a43-bcbe-50e446dff514" + "CENTRALINDIA:20220512T121318Z:c9f2ed9e-33ea-47e0-a8fb-24095f1d946c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:42:24 GMT" + "Thu, 12 May 2022 12:13:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3ND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -162,47 +162,47 @@ "11992" ], "x-ms-request-id": [ - "f559b018-3b5c-4a16-b735-06318916c215" + "5b6c4696-e8e4-41b7-892d-64ffca01c5b1" ], "x-ms-correlation-request-id": [ - "f559b018-3b5c-4a16-b735-06318916c215" + "5b6c4696-e8e4-41b7-892d-64ffca01c5b1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164539Z:f559b018-3b5c-4a16-b735-06318916c215" + "CENTRALINDIA:20220512T121631Z:5b6c4696-e8e4-41b7-892d-64ffca01c5b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:45:38 GMT" + "Thu, 12 May 2022 12:16:30 GMT" ], "Content-Length": [ - "2468" + "2523" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274\",\r\n \"name\": \"mongo-continuous-1274\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:45:10.4944406Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-continuous-1274.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"1fca82c4-1b20-4af0-ad40-bdfb56473d1b\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274\",\r\n \"name\": \"mongo-continuous-1274\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:16:14.9732741Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-continuous-1274.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"9b311a13-8f51-4339-a8ad-52d80d508d90\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3ND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a96033c8-9b61-462a-952f-7a23d3e5b7ff" + "a517c68f-7f7d-4b1a-bd34-1a34500fca12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,50 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "d6e84f3d-309b-43e0-89ad-4453a90c6d99" + "cad4a210-4b21-4e8d-a8fb-7da360fc75c7" ], "x-ms-correlation-request-id": [ - "d6e84f3d-309b-43e0-89ad-4453a90c6d99" + "cad4a210-4b21-4e8d-a8fb-7da360fc75c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164539Z:d6e84f3d-309b-43e0-89ad-4453a90c6d99" + "CENTRALINDIA:20220512T121633Z:cad4a210-4b21-4e8d-a8fb-7da360fc75c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:45:38 GMT" + "Thu, 12 May 2022 12:16:33 GMT" ], "Content-Length": [ - "2468" + "2523" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274\",\r\n \"name\": \"mongo-continuous-1274\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:45:10.4944406Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-continuous-1274.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"1fca82c4-1b20-4af0-ad40-bdfb56473d1b\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274\",\r\n \"name\": \"mongo-continuous-1274\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:16:14.9732741Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-continuous-1274.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"9b311a13-8f51-4339-a8ad-52d80d508d90\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://mongo-continuous-1274-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3ND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3ND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/operationResults/1124c340-a5a0-4955-88aa-887a33adbec6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/operationResults/4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1124c340-a5a0-4955-88aa-887a33adbec6" + "4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1124c340-a5a0-4955-88aa-887a33adbec6?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,41 +303,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "f46a0869-e6a2-4397-89d5-a8750fae22bb" + "0c4f8db6-1912-4ca0-a762-7d913ac3ce6f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164234Z:f46a0869-e6a2-4397-89d5-a8750fae22bb" + "CENTRALINDIA:20220512T121329Z:0c4f8db6-1912-4ca0-a762-7d913ac3ce6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:42:34 GMT" + "Thu, 12 May 2022 12:13:28 GMT" ], "Content-Length": [ - "2020" + "2075" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274\",\r\n \"name\": \"mongo-continuous-1274\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:42:31.7882779Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"1fca82c4-1b20-4af0-ad40-bdfb56473d1b\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274\",\r\n \"name\": \"mongo-continuous-1274\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:13:26.3199575Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"9b311a13-8f51-4339-a8ad-52d80d508d90\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-continuous-1274-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1124c340-a5a0-4955-88aa-887a33adbec6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTEyNGMzNDAtYTVhMC00OTU1LTg4YWEtODg3YTMzYWRiZWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg4NmI2YWEtMmE1Yi00NGNkLTg3ZmQtMmViNmRkYjNjZjExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -360,19 +360,19 @@ "11998" ], "x-ms-request-id": [ - "e704fddb-41b9-4868-9566-d4d3a4becd40" + "7c4a35f1-dabc-4dba-81ab-ae2a412b3e24" ], "x-ms-correlation-request-id": [ - "e704fddb-41b9-4868-9566-d4d3a4becd40" + "7c4a35f1-dabc-4dba-81ab-ae2a412b3e24" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164305Z:e704fddb-41b9-4868-9566-d4d3a4becd40" + "CENTRALINDIA:20220512T121359Z:7c4a35f1-dabc-4dba-81ab-ae2a412b3e24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:43:04 GMT" + "Thu, 12 May 2022 12:13:59 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1124c340-a5a0-4955-88aa-887a33adbec6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTEyNGMzNDAtYTVhMC00OTU1LTg4YWEtODg3YTMzYWRiZWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg4NmI2YWEtMmE1Yi00NGNkLTg3ZmQtMmViNmRkYjNjZjExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -420,19 +420,19 @@ "11997" ], "x-ms-request-id": [ - "89314b43-3637-414f-a018-3a3ec786cf0d" + "cfda2455-c121-4b34-a3a6-afcb51f4078e" ], "x-ms-correlation-request-id": [ - "89314b43-3637-414f-a018-3a3ec786cf0d" + "cfda2455-c121-4b34-a3a6-afcb51f4078e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164336Z:89314b43-3637-414f-a018-3a3ec786cf0d" + "CENTRALINDIA:20220512T121429Z:cfda2455-c121-4b34-a3a6-afcb51f4078e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:43:35 GMT" + "Thu, 12 May 2022 12:14:29 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1124c340-a5a0-4955-88aa-887a33adbec6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTEyNGMzNDAtYTVhMC00OTU1LTg4YWEtODg3YTMzYWRiZWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg4NmI2YWEtMmE1Yi00NGNkLTg3ZmQtMmViNmRkYjNjZjExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -480,19 +480,19 @@ "11996" ], "x-ms-request-id": [ - "3b7b1bd8-12c2-45eb-92b2-296606097d68" + "c9e2c14c-ccb3-4824-a311-aa1dfc8f7f21" ], "x-ms-correlation-request-id": [ - "3b7b1bd8-12c2-45eb-92b2-296606097d68" + "c9e2c14c-ccb3-4824-a311-aa1dfc8f7f21" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164406Z:3b7b1bd8-12c2-45eb-92b2-296606097d68" + "CENTRALINDIA:20220512T121500Z:c9e2c14c-ccb3-4824-a311-aa1dfc8f7f21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:44:06 GMT" + "Thu, 12 May 2022 12:14:59 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1124c340-a5a0-4955-88aa-887a33adbec6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTEyNGMzNDAtYTVhMC00OTU1LTg4YWEtODg3YTMzYWRiZWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg4NmI2YWEtMmE1Yi00NGNkLTg3ZmQtMmViNmRkYjNjZjExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -540,19 +540,19 @@ "11995" ], "x-ms-request-id": [ - "144c60b8-64e3-40da-85b7-579617c2e93e" + "97bd355f-842b-42da-b78a-1ff691fb02c6" ], "x-ms-correlation-request-id": [ - "144c60b8-64e3-40da-85b7-579617c2e93e" + "97bd355f-842b-42da-b78a-1ff691fb02c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164437Z:144c60b8-64e3-40da-85b7-579617c2e93e" + "CENTRALINDIA:20220512T121530Z:97bd355f-842b-42da-b78a-1ff691fb02c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:44:36 GMT" + "Thu, 12 May 2022 12:15:29 GMT" ], "Content-Length": [ "21" @@ -565,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1124c340-a5a0-4955-88aa-887a33adbec6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTEyNGMzNDAtYTVhMC00OTU1LTg4YWEtODg3YTMzYWRiZWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg4NmI2YWEtMmE1Yi00NGNkLTg3ZmQtMmViNmRkYjNjZjExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -600,19 +600,19 @@ "11994" ], "x-ms-request-id": [ - "a4ebd52b-253c-4b66-a7c7-fe315f7dd514" + "c9fdafb1-54c2-44bd-b417-1a87b8e17a50" ], "x-ms-correlation-request-id": [ - "a4ebd52b-253c-4b66-a7c7-fe315f7dd514" + "c9fdafb1-54c2-44bd-b417-1a87b8e17a50" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164507Z:a4ebd52b-253c-4b66-a7c7-fe315f7dd514" + "CENTRALINDIA:20220512T121600Z:c9fdafb1-54c2-44bd-b417-1a87b8e17a50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:45:07 GMT" + "Thu, 12 May 2022 12:16:00 GMT" ], "Content-Length": [ "21" @@ -625,19 +625,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1124c340-a5a0-4955-88aa-887a33adbec6?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTEyNGMzNDAtYTVhMC00OTU1LTg4YWEtODg3YTMzYWRiZWM2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4886b6aa-2a5b-44cd-87fd-2eb6ddb3cf11?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDg4NmI2YWEtMmE1Yi00NGNkLTg3ZmQtMmViNmRkYjNjZjExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ff6823-5aea-4662-832e-fe21a9cb3465" + "bddd9ed2-f351-400d-88a2-8ef914c6472e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -660,19 +660,19 @@ "11993" ], "x-ms-request-id": [ - "11246e6a-328c-4af9-9ec5-abee569f0d6d" + "dc0dc20d-0146-44d4-8bfc-908384b7c105" ], "x-ms-correlation-request-id": [ - "11246e6a-328c-4af9-9ec5-abee569f0d6d" + "dc0dc20d-0146-44d4-8bfc-908384b7c105" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164538Z:11246e6a-328c-4af9-9ec5-abee569f0d6d" + "CENTRALINDIA:20220512T121631Z:dc0dc20d-0146-44d4-8bfc-908384b7c105" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:45:38 GMT" + "Thu, 12 May 2022 12:16:30 GMT" ], "Content-Length": [ "22" @@ -685,22 +685,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/1fca82c4-1b20-4af0-ad40-bdfb56473d1b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzFmY2E4MmM0LTFiMjAtNGFmMC1hZDQwLWJkZmI1NjQ3M2QxYj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/9b311a13-8f51-4339-a8ad-52d80d508d90?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzliMzExYTEzLThmNTEtNDMzOS1hOGFkLTUyZDgwZDUwOGQ5MD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "187379a9-a8af-4e8e-a7a1-37a45caf6c3c" + "dd17681d-96b5-4f30-8422-96134a54ecd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,50 +720,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "48cbeca4-d84a-441a-839f-52693a984d09" + "fe95af86-1849-4ad8-9cdc-694ff8fb1f9b" ], "x-ms-correlation-request-id": [ - "48cbeca4-d84a-441a-839f-52693a984d09" + "fe95af86-1849-4ad8-9cdc-694ff8fb1f9b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164539Z:48cbeca4-d84a-441a-839f-52693a984d09" + "CENTRALINDIA:20220512T121634Z:fe95af86-1849-4ad8-9cdc-694ff8fb1f9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:45:39 GMT" + "Thu, 12 May 2022 12:16:34 GMT" ], "Content-Length": [ - "581" + "627" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"name\": \"1fca82c4-1b20-4af0-ad40-bdfb56473d1b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1fca82c4-1b20-4af0-ad40-bdfb56473d1b\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-03-08T16:45:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d07a1d2c-c3ec-4b4d-b328-19f409e6d87c\",\r\n \"creationTime\": \"2022-03-08T16:45:12Z\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"9b311a13-8f51-4339-a8ad-52d80d508d90\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9b311a13-8f51-4339-a8ad-52d80d508d90\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-05-12T12:16:15Z\",\r\n \"oldestRestorableTime\": \"2022-05-12T12:16:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8ca5b91-7e2f-43f8-8062-786e18188de0\",\r\n \"creationTime\": \"2022-05-12T12:16:16Z\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff35d9ec-268b-49b4-9616-080eb99e97a2" + "d5880f90-f22b-42ce-968d-a29d5f0a151e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -783,22 +783,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "28abee76-739f-4b11-9fbb-ad9de09b016a" + "d81bd20a-266f-4098-99d5-23cbc01ce277" ], "x-ms-correlation-request-id": [ - "28abee76-739f-4b11-9fbb-ad9de09b016a" + "d81bd20a-266f-4098-99d5-23cbc01ce277" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164540Z:28abee76-739f-4b11-9fbb-ad9de09b016a" + "CENTRALINDIA:20220512T121637Z:d81bd20a-266f-4098-99d5-23cbc01ce277" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:45:40 GMT" + "Thu, 12 May 2022 12:16:36 GMT" ], "Content-Length": [ "160" @@ -807,23 +807,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database TestDB1 doesn't exist.\\r\\nActivityId: ff35d9ec-268b-49b4-9616-080eb99e97a2, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database TestDB1 doesn't exist.\\r\\nActivityId: d5880f90-f22b-42ce-968d-a29d5f0a151e, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff35d9ec-268b-49b4-9616-080eb99e97a2" + "d5880f90-f22b-42ce-968d-a29d5f0a151e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -843,22 +843,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11996" ], "x-ms-request-id": [ - "e50d2217-7c8b-444b-9d9b-90344ba0ff6a" + "665de234-2422-433d-8c08-e1db68f7087d" ], "x-ms-correlation-request-id": [ - "e50d2217-7c8b-444b-9d9b-90344ba0ff6a" + "665de234-2422-433d-8c08-e1db68f7087d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164612Z:e50d2217-7c8b-444b-9d9b-90344ba0ff6a" + "CENTRALINDIA:20220512T121710Z:665de234-2422-433d-8c08-e1db68f7087d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:46:11 GMT" + "Thu, 12 May 2022 12:17:10 GMT" ], "Content-Length": [ "318" @@ -871,22 +871,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ff35d9ec-268b-49b4-9616-080eb99e97a2" + "d5880f90-f22b-42ce-968d-a29d5f0a151e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -903,13 +903,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/operationResults/3c643d3b-7553-4fd1-977c-9d512d510e4b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/operationResults/09b794c6-acd4-4e13-b97b-34510bf3d377?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c643d3b-7553-4fd1-977c-9d512d510e4b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09b794c6-acd4-4e13-b97b-34510bf3d377?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "3c643d3b-7553-4fd1-977c-9d512d510e4b" + "09b794c6-acd4-4e13-b97b-34510bf3d377" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -921,19 +921,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "47128d09-b884-43fd-a3bf-8d43f7f5be67" + "49f677c2-2ae9-4e94-a8f0-96365a9fb0a4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164541Z:47128d09-b884-43fd-a3bf-8d43f7f5be67" + "CENTRALINDIA:20220512T121638Z:49f677c2-2ae9-4e94-a8f0-96365a9fb0a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:45:40 GMT" + "Thu, 12 May 2022 12:16:38 GMT" ], "Content-Length": [ "21" @@ -946,19 +946,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c643d3b-7553-4fd1-977c-9d512d510e4b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2M2NDNkM2ItNzU1My00ZmQxLTk3N2MtOWQ1MTJkNTEwZTRiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09b794c6-acd4-4e13-b97b-34510bf3d377?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDliNzk0YzYtYWNkNC00ZTEzLWI5N2ItMzQ1MTBiZjNkMzc3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff35d9ec-268b-49b4-9616-080eb99e97a2" + "d5880f90-f22b-42ce-968d-a29d5f0a151e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-request-id": [ - "3684ccad-8f06-4308-aa95-42d827297013" + "95d123bc-8cc7-450c-b1fd-cb14fdc3aa71" ], "x-ms-correlation-request-id": [ - "3684ccad-8f06-4308-aa95-42d827297013" + "95d123bc-8cc7-450c-b1fd-cb14fdc3aa71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164611Z:3684ccad-8f06-4308-aa95-42d827297013" + "CENTRALINDIA:20220512T121709Z:95d123bc-8cc7-450c-b1fd-cb14fdc3aa71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:46:10 GMT" + "Thu, 12 May 2022 12:17:08 GMT" ], "Content-Length": [ "22" @@ -1006,22 +1006,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjEvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjEvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d11ef18a-f97a-4be3-91e6-9e9439efe25e" + "539e1a6c-f769-48f7-8f15-8f555344a5c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1041,22 +1041,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "4f9aefd3-9d7d-49df-9c6f-f261f491ee74" + "1d2dcdc8-e816-4a14-9739-d039b204c1ae" ], "x-ms-correlation-request-id": [ - "4f9aefd3-9d7d-49df-9c6f-f261f491ee74" + "1d2dcdc8-e816-4a14-9739-d039b204c1ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164612Z:4f9aefd3-9d7d-49df-9c6f-f261f491ee74" + "CENTRALINDIA:20220512T121713Z:1d2dcdc8-e816-4a14-9739-d039b204c1ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:46:11 GMT" + "Thu, 12 May 2022 12:17:12 GMT" ], "Content-Length": [ "181" @@ -1065,23 +1065,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'TestDB1'.'collectionName' doesn't exist.\\r\\nActivityId: d11ef18a-f97a-4be3-91e6-9e9439efe25e, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'TestDB1'.'collectionName' doesn't exist.\\r\\nActivityId: 539e1a6c-f769-48f7-8f15-8f555344a5c5, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjEvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjEvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d11ef18a-f97a-4be3-91e6-9e9439efe25e" + "539e1a6c-f769-48f7-8f15-8f555344a5c5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1101,22 +1101,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11997" ], "x-ms-request-id": [ - "738cf7cb-b70b-4186-b013-36a0868b30ff" + "2423c3ae-4d8e-4acf-b534-5d5cc4dedc43" ], "x-ms-correlation-request-id": [ - "738cf7cb-b70b-4186-b013-36a0868b30ff" + "2423c3ae-4d8e-4acf-b534-5d5cc4dedc43" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164645Z:738cf7cb-b70b-4186-b013-36a0868b30ff" + "CENTRALINDIA:20220512T121746Z:2423c3ae-4d8e-4acf-b534-5d5cc4dedc43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:46:44 GMT" + "Thu, 12 May 2022 12:17:46 GMT" ], "Content-Length": [ "443" @@ -1129,22 +1129,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/collections/collectionName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjEvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/collections/collectionName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWNvbnRpbnVvdXMtMTI3NC9tb25nb2RiRGF0YWJhc2VzL1Rlc3REQjEvY29sbGVjdGlvbnMvY29sbGVjdGlvbk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collectionName\",\r\n \"shardKey\": {\r\n \"shardKeyPath\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d11ef18a-f97a-4be3-91e6-9e9439efe25e" + "539e1a6c-f769-48f7-8f15-8f555344a5c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1161,13 +1161,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/collections/collectionName/operationResults/095e979b-4c71-4704-996b-67494dd04fcd?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup74/providers/Microsoft.DocumentDB/databaseAccounts/mongo-continuous-1274/mongodbDatabases/TestDB1/collections/collectionName/operationResults/16a6a0ed-a822-41e7-8214-426ca79df6ed?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/095e979b-4c71-4704-996b-67494dd04fcd?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/16a6a0ed-a822-41e7-8214-426ca79df6ed?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "095e979b-4c71-4704-996b-67494dd04fcd" + "16a6a0ed-a822-41e7-8214-426ca79df6ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1179,19 +1179,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "4707a194-0c1e-45c1-a0f9-8be534d27f75" + "6baceaae-6c88-4603-b1b4-1e2f716dc28b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164613Z:4707a194-0c1e-45c1-a0f9-8be534d27f75" + "CENTRALINDIA:20220512T121715Z:6baceaae-6c88-4603-b1b4-1e2f716dc28b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:46:12 GMT" + "Thu, 12 May 2022 12:17:15 GMT" ], "Content-Length": [ "21" @@ -1204,19 +1204,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/095e979b-4c71-4704-996b-67494dd04fcd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk1ZTk3OWItNGM3MS00NzA0LTk5NmItNjc0OTRkZDA0ZmNkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/16a6a0ed-a822-41e7-8214-426ca79df6ed?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTZhNmEwZWQtYTgyMi00MWU3LTgyMTQtNDI2Y2E3OWRmNmVkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d11ef18a-f97a-4be3-91e6-9e9439efe25e" + "539e1a6c-f769-48f7-8f15-8f555344a5c5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1236,22 +1236,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-request-id": [ - "f0bbe896-3c0c-437d-ba36-f3f82eb54afa" + "4a61f82c-5d1d-487e-9bc5-e6278342a625" ], "x-ms-correlation-request-id": [ - "f0bbe896-3c0c-437d-ba36-f3f82eb54afa" + "4a61f82c-5d1d-487e-9bc5-e6278342a625" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164644Z:f0bbe896-3c0c-437d-ba36-f3f82eb54afa" + "CENTRALINDIA:20220512T121745Z:4a61f82c-5d1d-487e-9bc5-e6278342a625" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:46:43 GMT" + "Thu, 12 May 2022 12:17:44 GMT" ], "Content-Length": [ "22" @@ -1264,22 +1264,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/1fca82c4-1b20-4af0-ad40-bdfb56473d1b/restorableMongodbDatabases?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzFmY2E4MmM0LTFiMjAtNGFmMC1hZDQwLWJkZmI1NjQ3M2QxYi9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/9b311a13-8f51-4339-a8ad-52d80d508d90/restorableMongodbDatabases?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzliMzExYTEzLThmNTEtNDMzOS1hOGFkLTUyZDgwZDUwOGQ5MC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b69b8953-7c64-4750-a6a6-50bceb8d428a" + "0b8ef094-8bb4-40a2-9d3a-100cd3bda32d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1299,22 +1299,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "1505ca24-bd39-4af6-91e8-722c73d1bfbd" + "e4765675-259c-41d1-b837-21e1e5b52a22" ], "x-ms-correlation-request-id": [ - "1505ca24-bd39-4af6-91e8-722c73d1bfbd" + "e4765675-259c-41d1-b837-21e1e5b52a22" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164646Z:1505ca24-bd39-4af6-91e8-722c73d1bfbd" + "CENTRALINDIA:20220512T121747Z:e4765675-259c-41d1-b837-21e1e5b52a22" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:46:45 GMT" + "Thu, 12 May 2022 12:17:47 GMT" ], "Content-Length": [ "555" @@ -1323,26 +1323,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/1fca82c4-1b20-4af0-ad40-bdfb56473d1b/restorableMongodbDatabases/7f2611fe-fdf4-4329-86ec-9c2e0a9ba949\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"7f2611fe-fdf4-4329-86ec-9c2e0a9ba949\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"KyflfQAAAA==\",\r\n \"eventTimestamp\": \"2022-03-08T16:45:46Z\",\r\n \"ownerId\": \"TestDB1\",\r\n \"ownerResourceId\": \"49tMAA==\",\r\n \"operationType\": \"Create\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/9b311a13-8f51-4339-a8ad-52d80d508d90/restorableMongodbDatabases/f2b55cf8-dcaa-4c03-8631-b06e726a27c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"f2b55cf8-dcaa-4c03-8631-b06e726a27c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"+a3M9QAAAA==\",\r\n \"eventTimestamp\": \"2022-05-12T12:16:44Z\",\r\n \"ownerId\": \"TestDB1\",\r\n \"ownerResourceId\": \"0rYqAA==\",\r\n \"operationType\": \"Create\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/1fca82c4-1b20-4af0-ad40-bdfb56473d1b/restorableMongodbCollections?api-version=2021-11-15-preview&restorableMongodbDatabaseRid=49tMAA%3D%3D", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzFmY2E4MmM0LTFiMjAtNGFmMC1hZDQwLWJkZmI1NjQ3M2QxYi9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldyZyZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlUmlkPTQ5dE1BQSUzRCUzRA==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/9b311a13-8f51-4339-a8ad-52d80d508d90/restorableMongodbCollections?api-version=2022-02-15-preview&restorableMongodbDatabaseRid=0rYqAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzliMzExYTEzLThmNTEtNDMzOS1hOGFkLTUyZDgwZDUwOGQ5MC9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldyZyZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlUmlkPTByWXFBQSUzRCUzRA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1a46967-08d5-44f9-a85d-b3c7f93fd733" + "6083ac1d-e042-4f61-a05a-3907d0be5496" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1362,22 +1362,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "89d16c60-a752-46a3-8161-b00eb1dd84b7" + "e3ddea8e-5f64-482c-b468-b33a05179967" ], "x-ms-correlation-request-id": [ - "89d16c60-a752-46a3-8161-b00eb1dd84b7" + "e3ddea8e-5f64-482c-b468-b33a05179967" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T164646Z:89d16c60-a752-46a3-8161-b00eb1dd84b7" + "CENTRALINDIA:20220512T121749Z:e3ddea8e-5f64-482c-b468-b33a05179967" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:46:45 GMT" + "Thu, 12 May 2022 12:17:48 GMT" ], "Content-Length": [ "570" @@ -1386,7 +1386,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/1fca82c4-1b20-4af0-ad40-bdfb56473d1b/restorableMongodbCollections/60f829af-aeb0-4d67-a55b-0c53f11441a1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"60f829af-aeb0-4d67-a55b-0c53f11441a1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"EW9M8gAAAA==\",\r\n \"eventTimestamp\": \"2022-03-08T16:46:18Z\",\r\n \"ownerId\": \"collectionName\",\r\n \"ownerResourceId\": \"49tMAPfvPlc=\",\r\n \"operationType\": \"Create\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/9b311a13-8f51-4339-a8ad-52d80d508d90/restorableMongodbCollections/53574883-a727-4b27-9999-5e72cdfac818\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"53574883-a727-4b27-9999-5e72cdfac818\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"7Dn7awAAAA==\",\r\n \"eventTimestamp\": \"2022-05-12T12:17:20Z\",\r\n \"ownerId\": \"collectionName\",\r\n \"ownerResourceId\": \"0rYqAPaCakI=\",\r\n \"operationType\": \"Create\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestRestoreFromNewAccountCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestRestoreFromNewAccountCmdlets.json index 50a21ec4e3dd..cecc0b7c15aa 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestRestoreFromNewAccountCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestRestoreFromNewAccountCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "55e498e1-2b8d-4b35-b762-bae21cf75eb2" + "0755f4fa-fd8c-476d-a57f-4824239838d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-request-id": [ - "188082a6-0105-4e4f-83e7-cd2bfc825162" + "cf57efb1-4f06-4b5b-96be-45db1c640e54" ], "x-ms-correlation-request-id": [ - "188082a6-0105-4e4f-83e7-cd2bfc825162" + "cf57efb1-4f06-4b5b-96be-45db1c640e54" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162524Z:188082a6-0105-4e4f-83e7-cd2bfc825162" + "CENTRALINDIA:20220512T115445Z:cf57efb1-4f06-4b5b-96be-45db1c640e54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:25:24 GMT" + "Thu, 12 May 2022 11:54:44 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d254bdb-6a77-41c5-a08c-f084206537d7" + "3388d203-0a08-4466-bf44-faafebdbac86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "b9e8890c-d0db-4bee-a68d-1f7e852454a6" + "dba2ca14-eb5d-4844-aa92-54eac3db5edd" ], "x-ms-correlation-request-id": [ - "b9e8890c-d0db-4bee-a68d-1f7e852454a6" + "dba2ca14-eb5d-4844-aa92-54eac3db5edd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162527Z:b9e8890c-d0db-4bee-a68d-1f7e852454a6" + "JIOINDIACENTRAL:20220512T115449Z:dba2ca14-eb5d-4844-aa92-54eac3db5edd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:25:26 GMT" + "Thu, 12 May 2022 11:54:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d254bdb-6a77-41c5-a08c-f084206537d7" + "3388d203-0a08-4466-bf44-faafebdbac86" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -162,47 +162,47 @@ "11994" ], "x-ms-request-id": [ - "2b26541f-6d76-4787-80a9-7c453ef5bab6" + "5bbbb26a-6427-4594-a14d-dd617fe9fd35" ], "x-ms-correlation-request-id": [ - "2b26541f-6d76-4787-80a9-7c453ef5bab6" + "5bbbb26a-6427-4594-a14d-dd617fe9fd35" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162742Z:2b26541f-6d76-4787-80a9-7c453ef5bab6" + "JIOINDIACENTRAL:20220512T115709Z:5bbbb26a-6427-4594-a14d-dd617fe9fd35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:27:41 GMT" + "Thu, 12 May 2022 11:57:09 GMT" ], "Content-Length": [ - "2228" + "2284" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:27:36.300875Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a050e2e7-bffb-4658-907b-daab429f02b1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:56:57.5258126Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"8110cd92-ac4e-46a3-a255-9c29b8c18cec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31375b39-778f-4bf2-8347-92e2c149135f" + "d6705553-2eba-4424-b309-0928b6071ff3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,50 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "e8d78df0-ffca-4f8b-8650-012f14dfbb09" + "e7cc4944-b510-4426-8471-496dbd8bd511" ], "x-ms-correlation-request-id": [ - "e8d78df0-ffca-4f8b-8650-012f14dfbb09" + "e7cc4944-b510-4426-8471-496dbd8bd511" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162847Z:e8d78df0-ffca-4f8b-8650-012f14dfbb09" + "CENTRALINDIA:20220512T115829Z:e7cc4944-b510-4426-8471-496dbd8bd511" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:47 GMT" + "Thu, 12 May 2022 11:58:28 GMT" ], "Content-Length": [ - "2228" + "2284" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:27:36.300875Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a050e2e7-bffb-4658-907b-daab429f02b1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:56:57.5258126Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"8110cd92-ac4e-46a3-a255-9c29b8c18cec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"West Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d254bdb-6a77-41c5-a08c-f084206537d7" + "3388d203-0a08-4466-bf44-faafebdbac86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/operationResults/403213e3-a695-4aaa-8bd9-fc382f570ec0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/operationResults/ed3066f2-bd68-4db0-8d7b-edb873d2860b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "403213e3-a695-4aaa-8bd9-fc382f570ec0" + "ed3066f2-bd68-4db0-8d7b-edb873d2860b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/403213e3-a695-4aaa-8bd9-fc382f570ec0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed3066f2-bd68-4db0-8d7b-edb873d2860b?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,41 +303,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "eea2f46c-11c4-47a7-a2ad-dcd04b1afef6" + "a59ff256-7b96-431c-af37-6dbad6e64613" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162540Z:eea2f46c-11c4-47a7-a2ad-dcd04b1afef6" + "JIOINDIACENTRAL:20220512T115505Z:a59ff256-7b96-431c-af37-6dbad6e64613" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:25:39 GMT" + "Thu, 12 May 2022 11:55:05 GMT" ], "Content-Length": [ - "1914" + "1969" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:25:36.6451338Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a050e2e7-bffb-4658-907b-daab429f02b1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:55:01.7861509Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"8110cd92-ac4e-46a3-a255-9c29b8c18cec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/403213e3-a695-4aaa-8bd9-fc382f570ec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDAzMjEzZTMtYTY5NS00YWFhLThiZDktZmMzODJmNTcwZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed3066f2-bd68-4db0-8d7b-edb873d2860b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQzMDY2ZjItYmQ2OC00ZGIwLThkN2ItZWRiODczZDI4NjBiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d254bdb-6a77-41c5-a08c-f084206537d7" + "3388d203-0a08-4466-bf44-faafebdbac86" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -360,19 +360,19 @@ "11998" ], "x-ms-request-id": [ - "7956e5c0-ad92-4b48-9f59-fdce439876de" + "29511d96-ce6a-49cf-9753-f83c788b64c9" ], "x-ms-correlation-request-id": [ - "7956e5c0-ad92-4b48-9f59-fdce439876de" + "29511d96-ce6a-49cf-9753-f83c788b64c9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162610Z:7956e5c0-ad92-4b48-9f59-fdce439876de" + "JIOINDIACENTRAL:20220512T115536Z:29511d96-ce6a-49cf-9753-f83c788b64c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:26:10 GMT" + "Thu, 12 May 2022 11:55:36 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/403213e3-a695-4aaa-8bd9-fc382f570ec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDAzMjEzZTMtYTY5NS00YWFhLThiZDktZmMzODJmNTcwZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed3066f2-bd68-4db0-8d7b-edb873d2860b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQzMDY2ZjItYmQ2OC00ZGIwLThkN2ItZWRiODczZDI4NjBiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d254bdb-6a77-41c5-a08c-f084206537d7" + "3388d203-0a08-4466-bf44-faafebdbac86" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -420,19 +420,19 @@ "11997" ], "x-ms-request-id": [ - "4dba6670-4329-4d57-94a7-c269d4b7d2b4" + "35aac5d2-6e45-409e-98a7-e036e7ed1997" ], "x-ms-correlation-request-id": [ - "4dba6670-4329-4d57-94a7-c269d4b7d2b4" + "35aac5d2-6e45-409e-98a7-e036e7ed1997" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162640Z:4dba6670-4329-4d57-94a7-c269d4b7d2b4" + "JIOINDIACENTRAL:20220512T115607Z:35aac5d2-6e45-409e-98a7-e036e7ed1997" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:26:40 GMT" + "Thu, 12 May 2022 11:56:06 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/403213e3-a695-4aaa-8bd9-fc382f570ec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDAzMjEzZTMtYTY5NS00YWFhLThiZDktZmMzODJmNTcwZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed3066f2-bd68-4db0-8d7b-edb873d2860b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQzMDY2ZjItYmQ2OC00ZGIwLThkN2ItZWRiODczZDI4NjBiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d254bdb-6a77-41c5-a08c-f084206537d7" + "3388d203-0a08-4466-bf44-faafebdbac86" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -480,19 +480,19 @@ "11996" ], "x-ms-request-id": [ - "67a69656-dafa-44cc-be40-6572728bbfe6" + "586ed5c8-add8-4ffc-a916-8e633dc9d211" ], "x-ms-correlation-request-id": [ - "67a69656-dafa-44cc-be40-6572728bbfe6" + "586ed5c8-add8-4ffc-a916-8e633dc9d211" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162710Z:67a69656-dafa-44cc-be40-6572728bbfe6" + "JIOINDIACENTRAL:20220512T115638Z:586ed5c8-add8-4ffc-a916-8e633dc9d211" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:27:10 GMT" + "Thu, 12 May 2022 11:56:38 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/403213e3-a695-4aaa-8bd9-fc382f570ec0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDAzMjEzZTMtYTY5NS00YWFhLThiZDktZmMzODJmNTcwZWMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed3066f2-bd68-4db0-8d7b-edb873d2860b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQzMDY2ZjItYmQ2OC00ZGIwLThkN2ItZWRiODczZDI4NjBiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d254bdb-6a77-41c5-a08c-f084206537d7" + "3388d203-0a08-4466-bf44-faafebdbac86" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -540,19 +540,19 @@ "11995" ], "x-ms-request-id": [ - "9f05c4a7-8ee8-4218-82b7-76cfa053996a" + "bf39af81-1975-4317-859d-4ba534449b57" ], "x-ms-correlation-request-id": [ - "9f05c4a7-8ee8-4218-82b7-76cfa053996a" + "bf39af81-1975-4317-859d-4ba534449b57" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162741Z:9f05c4a7-8ee8-4218-82b7-76cfa053996a" + "JIOINDIACENTRAL:20220512T115708Z:bf39af81-1975-4317-859d-4ba534449b57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:27:41 GMT" + "Thu, 12 May 2022 11:57:07 GMT" ], "Content-Length": [ "22" @@ -565,22 +565,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b43598c0-2b48-40b8-9e86-4d600b3ceef9" + "437a7564-a992-4baa-8a81-0476afe0ec7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -600,47 +600,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "c3f0165f-f4ac-4bd0-a378-509ab5f114fc" + "fa5aaddb-5b34-4e5e-84ba-66b461feb988" ], "x-ms-correlation-request-id": [ - "c3f0165f-f4ac-4bd0-a378-509ab5f114fc" + "fa5aaddb-5b34-4e5e-84ba-66b461feb988" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162743Z:c3f0165f-f4ac-4bd0-a378-509ab5f114fc" + "JIOINDIACENTRAL:20220512T115713Z:fa5aaddb-5b34-4e5e-84ba-66b461feb988" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:27:42 GMT" + "Thu, 12 May 2022 11:57:13 GMT" ], "Content-Length": [ - "5582" + "6291" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: b43598c0-2b48-40b8-9e86-4d600b3ceef9, Request URI: /apps/9ad07acb-72c6-4b31-8c49-91702d4d8156/services/0d61dc7f-76fe-49a8-a38b-62e132472265/partitions/dec37145-6879-44ea-a96a-ce5625adb55f/replicas/132909144107184314s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T16:27:42.8227790Z, RequestEndTime: 2022-03-08T16:27:42.8227790Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:26:44.5601865Z\\\\\\\",\\\\\\\"cpu\\\\\\\":13.443,\\\\\\\"memory\\\\\\\":129008376.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0177,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:26:54.5706132Z\\\\\\\",\\\\\\\"cpu\\\\\\\":12.865,\\\\\\\"memory\\\\\\\":128673988.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0185,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:27:04.5810846Z\\\\\\\",\\\\\\\"cpu\\\\\\\":13.040,\\\\\\\"memory\\\\\\\":128571116.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0216,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:27:14.5915173Z\\\\\\\",\\\\\\\"cpu\\\\\\\":12.189,\\\\\\\"memory\\\\\\\":127998156.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0197,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:27:24.6019649Z\\\\\\\",\\\\\\\"cpu\\\\\\\":9.381,\\\\\\\"memory\\\\\\\":127890260.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0152,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:27:34.6124215Z\\\\\\\",\\\\\\\"cpu\\\\\\\":7.384,\\\\\\\"memory\\\\\\\":129932244.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0318,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T16:27:42.8227790Z; ResponseTime: 2022-03-08T16:27:42.8227790Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/9ad07acb-72c6-4b31-8c49-91702d4d8156/services/0d61dc7f-76fe-49a8-a38b-62e132472265/partitions/dec37145-6879-44ea-a96a-ce5625adb55f/replicas/132909144107184314s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.13, ActivityId: b43598c0-2b48-40b8-9e86-4d600b3ceef9, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8227790Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0128},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8227918Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0044},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8227962Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1369},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8229331Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8831},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8248162Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1069},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8249231Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":462,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T16:27:42.8227790Z; ResponseTime: 2022-03-08T16:27:42.8227790Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/9ad07acb-72c6-4b31-8c49-91702d4d8156/services/0d61dc7f-76fe-49a8-a38b-62e132472265/partitions/dec37145-6879-44ea-a96a-ce5625adb55f/replicas/132909144107184312s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.287, ActivityId: b43598c0-2b48-40b8-9e86-4d600b3ceef9, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8227790Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0063},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8227853Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8227886Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0883},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8228769Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.929},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8248059Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0795},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:27:42.8248854Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":462,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TestDB1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 437a7564-a992-4baa-8a81-0476afe0ec7d, Request URI: /apps/9f01fc1f-8f71-4132-a229-7f0e3f7a56df/services/54653f61-ae69-49c4-a9d2-3be9d77b97b6/partitions/e43ae5af-9e31-4e6f-80e5-6410db6edea2/replicas/132963105192978800s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:57:13.2144385Z, RequestEndTime: 2022-05-12T11:57:13.2244256Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:56:14.7942157Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.123,\\\\\\\"memory\\\\\\\":121250688.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0155,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:56:24.8042569Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.734,\\\\\\\"memory\\\\\\\":121151460.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0172,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:56:34.8242997Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.734,\\\\\\\"memory\\\\\\\":121030244.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0167,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:56:44.8343530Z\\\\\\\",\\\\\\\"cpu\\\\\\\":8.164,\\\\\\\"memory\\\\\\\":120774656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0196,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:56:54.8443471Z\\\\\\\",\\\\\\\"cpu\\\\\\\":6.257,\\\\\\\"memory\\\\\\\":120625488.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.014,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:57:04.8543597Z\\\\\\\",\\\\\\\"cpu\\\\\\\":9.646,\\\\\\\"memory\\\\\\\":120438488.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0244,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:57:13.2144385Z; ResponseTime: 2022-05-12T11:57:13.2244256Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.37:11000/apps/9f01fc1f-8f71-4132-a229-7f0e3f7a56df/services/54653f61-ae69-49c4-a9d2-3be9d77b97b6/partitions/e43ae5af-9e31-4e6f-80e5-6410db6edea2/replicas/132963105192978800s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.089, ActivityId: 437a7564-a992-4baa-8a81-0476afe0ec7d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2144385Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0144},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2144529Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0037},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2144566Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2014},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2146580Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4309},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2160889Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1523},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2162412Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:57:13.0743958Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:57:13.0743958Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:57:13.1343975Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:57:13.2144385Z; ResponseTime: 2022-05-12T11:57:13.2244256Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.32:11300/apps/9f01fc1f-8f71-4132-a229-7f0e3f7a56df/services/54653f61-ae69-49c4-a9d2-3be9d77b97b6/partitions/e43ae5af-9e31-4e6f-80e5-6410db6edea2/replicas/132963105192978801s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.166, ActivityId: 437a7564-a992-4baa-8a81-0476afe0ec7d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2144385Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0074},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2144459Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0035},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2144494Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1256},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2145750Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6557},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2162307Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0821},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:13.2163128Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:57:12.9243816Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:57:12.9243816Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:57:12.9844061Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TestDB1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b43598c0-2b48-40b8-9e86-4d600b3ceef9" + "437a7564-a992-4baa-8a81-0476afe0ec7d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -660,22 +660,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-request-id": [ - "b716265b-214c-4e30-b881-f62d8c3ef515" + "21249a14-f217-4fdd-8c5e-5a86f7d07109" ], "x-ms-correlation-request-id": [ - "b716265b-214c-4e30-b881-f62d8c3ef515" + "21249a14-f217-4fdd-8c5e-5a86f7d07109" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162814Z:b716265b-214c-4e30-b881-f62d8c3ef515" + "JIOINDIACENTRAL:20220512T115747Z:21249a14-f217-4fdd-8c5e-5a86f7d07109" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:13 GMT" + "Thu, 12 May 2022 11:57:46 GMT" ], "Content-Length": [ "448" @@ -684,26 +684,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"TestDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\",\r\n \"_rid\": \"XNw9AA==\",\r\n \"_self\": \"dbs/XNw9AA==/\",\r\n \"_etag\": \"\\\"00009503-0000-0700-0000-622784040000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646756868\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"TestDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\",\r\n \"_rid\": \"p287AA==\",\r\n \"_self\": \"dbs/p287AA==/\",\r\n \"_etag\": \"\\\"0000d802-0000-0700-0000-627cf6210000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652356641\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b43598c0-2b48-40b8-9e86-4d600b3ceef9" + "437a7564-a992-4baa-8a81-0476afe0ec7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,13 +720,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/operationResults/69917587-a5e6-4d31-886f-0a141f680e20?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/operationResults/36901978-d5ee-4dbc-a57c-c3c96bb9cd2e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/69917587-a5e6-4d31-886f-0a141f680e20?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/36901978-d5ee-4dbc-a57c-c3c96bb9cd2e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "69917587-a5e6-4d31-886f-0a141f680e20" + "36901978-d5ee-4dbc-a57c-c3c96bb9cd2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,19 +738,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "f914a885-debf-4713-80f1-de45d79364aa" + "8e5404f2-e87a-4e5a-9c17-d03fa7fc80e6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162743Z:f914a885-debf-4713-80f1-de45d79364aa" + "JIOINDIACENTRAL:20220512T115716Z:8e5404f2-e87a-4e5a-9c17-d03fa7fc80e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:27:43 GMT" + "Thu, 12 May 2022 11:57:16 GMT" ], "Content-Length": [ "21" @@ -763,19 +763,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/69917587-a5e6-4d31-886f-0a141f680e20?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjk5MTc1ODctYTVlNi00ZDMxLTg4NmYtMGExNDFmNjgwZTIwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/36901978-d5ee-4dbc-a57c-c3c96bb9cd2e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzY5MDE5NzgtZDVlZS00ZGJjLWE1N2MtYzNjOTZiYjljZDJlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b43598c0-2b48-40b8-9e86-4d600b3ceef9" + "437a7564-a992-4baa-8a81-0476afe0ec7d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -795,22 +795,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-request-id": [ - "49b6190d-f0da-43e9-be15-fb264dbb04be" + "e33656e6-1721-4aec-bad7-e664267afaa9" ], "x-ms-correlation-request-id": [ - "49b6190d-f0da-43e9-be15-fb264dbb04be" + "e33656e6-1721-4aec-bad7-e664267afaa9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162813Z:49b6190d-f0da-43e9-be15-fb264dbb04be" + "JIOINDIACENTRAL:20220512T115746Z:e33656e6-1721-4aec-bad7-e664267afaa9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:13 GMT" + "Thu, 12 May 2022 11:57:46 GMT" ], "Content-Length": [ "22" @@ -823,22 +823,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a456e5a-6edc-4481-bd28-ecea824c64c1" + "68f8bbf7-52ad-46dc-8be9-566e29a288c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -858,47 +858,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "971fd045-db76-46fd-9a7a-f32acb9db853" + "8e2815f9-332c-49ff-9a9a-00af809e4ca6" ], "x-ms-correlation-request-id": [ - "971fd045-db76-46fd-9a7a-f32acb9db853" + "8e2815f9-332c-49ff-9a9a-00af809e4ca6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162814Z:971fd045-db76-46fd-9a7a-f32acb9db853" + "CENTRALINDIA:20220512T115751Z:8e2815f9-332c-49ff-9a9a-00af809e4ca6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:14 GMT" + "Thu, 12 May 2022 11:57:51 GMT" ], "Content-Length": [ - "5616" + "6328" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 6a456e5a-6edc-4481-bd28-ecea824c64c1, Request URI: /apps/9ad07acb-72c6-4b31-8c49-91702d4d8156/services/0d61dc7f-76fe-49a8-a38b-62e132472265/partitions/dec37145-6879-44ea-a96a-ce5625adb55f/replicas/132909144107184314s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T16:28:14.6842130Z, RequestEndTime: 2022-03-08T16:28:14.6842130Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:27:14.5915173Z\\\\\\\",\\\\\\\"cpu\\\\\\\":12.189,\\\\\\\"memory\\\\\\\":127998156.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0197,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:27:24.6019649Z\\\\\\\",\\\\\\\"cpu\\\\\\\":9.381,\\\\\\\"memory\\\\\\\":127890260.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0152,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:27:34.6124215Z\\\\\\\",\\\\\\\"cpu\\\\\\\":7.384,\\\\\\\"memory\\\\\\\":129932244.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0318,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:27:54.6233118Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.825,\\\\\\\"memory\\\\\\\":129568372.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0078,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:28:04.6337696Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.997,\\\\\\\"memory\\\\\\\":129323004.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T16:28:14.6442034Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.218,\\\\\\\"memory\\\\\\\":128942840.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0212,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T16:28:14.6842130Z; ResponseTime: 2022-03-08T16:28:14.6842130Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/9ad07acb-72c6-4b31-8c49-91702d4d8156/services/0d61dc7f-76fe-49a8-a38b-62e132472265/partitions/dec37145-6879-44ea-a96a-ce5625adb55f/replicas/132909144107184314s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.221, ActivityId: 6a456e5a-6edc-4481-bd28-ecea824c64c1, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6842130Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0505},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6842635Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6842690Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.3166},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6845856Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0494},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6866350Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1043},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6867393Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":488,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T16:28:14.6842130Z; ResponseTime: 2022-03-08T16:28:14.6842130Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/9ad07acb-72c6-4b31-8c49-91702d4d8156/services/0d61dc7f-76fe-49a8-a38b-62e132472265/partitions/dec37145-6879-44ea-a96a-ce5625adb55f/replicas/132909144107184312s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.122, ActivityId: 6a456e5a-6edc-4481-bd28-ecea824c64c1, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6842130Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0073},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6842203Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0038},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6842241Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2367},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6844608Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0106},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6864714Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0755},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T16:28:14.6865469Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":488,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TestDB1/colls/TestCollectionInDB1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 68f8bbf7-52ad-46dc-8be9-566e29a288c5, Request URI: /apps/9f01fc1f-8f71-4132-a229-7f0e3f7a56df/services/54653f61-ae69-49c4-a9d2-3be9d77b97b6/partitions/e43ae5af-9e31-4e6f-80e5-6410db6edea2/replicas/132963105192978801s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:57:51.5105654Z, RequestEndTime: 2022-05-12T11:57:51.5105654Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:56:45.4301786Z\\\\\\\",\\\\\\\"cpu\\\\\\\":10.056,\\\\\\\"memory\\\\\\\":118773188.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0144,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:56:55.4402346Z\\\\\\\",\\\\\\\"cpu\\\\\\\":9.329,\\\\\\\"memory\\\\\\\":118485916.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0222,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:57:05.4502886Z\\\\\\\",\\\\\\\"cpu\\\\\\\":8.938,\\\\\\\"memory\\\\\\\":118398640.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0154,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:57:15.4603630Z\\\\\\\",\\\\\\\"cpu\\\\\\\":7.228,\\\\\\\"memory\\\\\\\":118184132.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0186,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:57:35.4704691Z\\\\\\\",\\\\\\\"cpu\\\\\\\":9.528,\\\\\\\"memory\\\\\\\":117408752.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0185,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:57:45.4805041Z\\\\\\\",\\\\\\\"cpu\\\\\\\":13.898,\\\\\\\"memory\\\\\\\":118605884.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":24,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:57:51.5105654Z; ResponseTime: 2022-05-12T11:57:51.5105654Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.32:11300/apps/9f01fc1f-8f71-4132-a229-7f0e3f7a56df/services/54653f61-ae69-49c4-a9d2-3be9d77b97b6/partitions/e43ae5af-9e31-4e6f-80e5-6410db6edea2/replicas/132963105192978801s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.988, ActivityId: 68f8bbf7-52ad-46dc-8be9-566e29a288c5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5105654Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0186},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5105840Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0042},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5105882Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2611},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5108493Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3619},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5122112Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.111},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5123222Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:57:51.3805349Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:57:51.3805349Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:57:51.4405344Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":494,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:57:51.5105654Z; ResponseTime: 2022-05-12T11:57:51.5105654Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.38:11300/apps/9f01fc1f-8f71-4132-a229-7f0e3f7a56df/services/54653f61-ae69-49c4-a9d2-3be9d77b97b6/partitions/e43ae5af-9e31-4e6f-80e5-6410db6edea2/replicas/132963105192978802s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.028, ActivityId: 68f8bbf7-52ad-46dc-8be9-566e29a288c5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5105654Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0073},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5105727Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5105760Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.212},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5107880Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3229},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5121109Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0654},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:57:51.5121763Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:57:51.3805349Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:57:51.3805349Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:57:51.4405344Z\\\\\\\"},\\\\\\\"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/TestDB1/colls/TestCollectionInDB1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a456e5a-6edc-4481-bd28-ecea824c64c1" + "68f8bbf7-52ad-46dc-8be9-566e29a288c5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -918,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-request-id": [ - "4c6a06b0-62b3-4a91-82ae-ede796aa45bb" + "8b3b4eec-8271-453f-aaa3-f6de4533e625" ], "x-ms-correlation-request-id": [ - "4c6a06b0-62b3-4a91-82ae-ede796aa45bb" + "8b3b4eec-8271-453f-aaa3-f6de4533e625" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162847Z:4c6a06b0-62b3-4a91-82ae-ede796aa45bb" + "CENTRALINDIA:20220512T115825Z:8b3b4eec-8271-453f-aaa3-f6de4533e625" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:46 GMT" + "Thu, 12 May 2022 11:58:24 GMT" ], "Content-Length": [ "1126" @@ -942,26 +942,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"TestCollectionInDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"XNw9AIogZ0Q=\",\r\n \"_ts\": 1646756904,\r\n \"_self\": \"dbs/XNw9AA==/colls/XNw9AIogZ0Q=/\",\r\n \"_etag\": \"\\\"00009803-0000-0700-0000-622784280000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"TestCollectionInDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"p287APrthEY=\",\r\n \"_ts\": 1652356682,\r\n \"_self\": \"dbs/p287AA==/colls/p287APrthEY=/\",\r\n \"_etag\": \"\\\"0000db02-0000-0700-0000-627cf64a0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6a456e5a-6edc-4481-bd28-ecea824c64c1" + "68f8bbf7-52ad-46dc-8be9-566e29a288c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -978,13 +978,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/operationResults/c685be20-5f24-4f76-a222-09638dd6949c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/operationResults/aede69fd-1c08-4474-885b-e5fb453db85c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c685be20-5f24-4f76-a222-09638dd6949c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aede69fd-1c08-4474-885b-e5fb453db85c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c685be20-5f24-4f76-a222-09638dd6949c" + "aede69fd-1c08-4474-885b-e5fb453db85c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,19 +996,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "d19afb7e-bf27-4143-8842-fbec102a3683" + "e6c5f8b6-0fa5-4da0-95de-dc4e9338e601" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162815Z:d19afb7e-bf27-4143-8842-fbec102a3683" + "CENTRALINDIA:20220512T115754Z:e6c5f8b6-0fa5-4da0-95de-dc4e9338e601" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:14 GMT" + "Thu, 12 May 2022 11:57:53 GMT" ], "Content-Length": [ "21" @@ -1021,19 +1021,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c685be20-5f24-4f76-a222-09638dd6949c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzY4NWJlMjAtNWYyNC00Zjc2LWEyMjItMDk2MzhkZDY5NDljP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aede69fd-1c08-4474-885b-e5fb453db85c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWVkZTY5ZmQtMWMwOC00NDc0LTg4NWItZTVmYjQ1M2RiODVjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a456e5a-6edc-4481-bd28-ecea824c64c1" + "68f8bbf7-52ad-46dc-8be9-566e29a288c5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1053,22 +1053,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "d9dcd00a-e587-44cb-a841-6567d8489a60" + "dcd354d3-3eb8-465f-ba8d-dbb715044ff8" ], "x-ms-correlation-request-id": [ - "d9dcd00a-e587-44cb-a841-6567d8489a60" + "dcd354d3-3eb8-465f-ba8d-dbb715044ff8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162846Z:d9dcd00a-e587-44cb-a841-6567d8489a60" + "CENTRALINDIA:20220512T115824Z:dcd354d3-3eb8-465f-ba8d-dbb715044ff8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:46 GMT" + "Thu, 12 May 2022 11:58:23 GMT" ], "Content-Length": [ "22" @@ -1081,22 +1081,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2EwNTBlMmU3LWJmZmItNDY1OC05MDdiLWRhYWI0MjlmMDJiMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzgxMTBjZDkyLWFjNGUtNDZhMy1hMjU1LTljMjliOGMxOGNlYz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74f7ba23-1a74-498a-b22a-13fd244240b4" + "db587adf-7092-4d91-9144-bcfae7d764ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1116,50 +1116,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "263d6b46-3d64-448a-b5d5-07ceeae06bdc" + "ea42f8c4-59ff-4ec5-a5c2-dd29306a4a5a" ], "x-ms-correlation-request-id": [ - "263d6b46-3d64-448a-b5d5-07ceeae06bdc" + "ea42f8c4-59ff-4ec5-a5c2-dd29306a4a5a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162847Z:263d6b46-3d64-448a-b5d5-07ceeae06bdc" + "CENTRALINDIA:20220512T115830Z:ea42f8c4-59ff-4ec5-a5c2-dd29306a4a5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:47 GMT" + "Thu, 12 May 2022 11:58:29 GMT" ], "Content-Length": [ - "569" + "615" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"name\": \"a050e2e7-bffb-4658-907b-daab429f02b1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-03-08T16:27:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8fb886f0-28c2-4f90-a71a-0a62039073f7\",\r\n \"creationTime\": \"2022-03-08T16:27:38Z\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"8110cd92-ac4e-46a3-a255-9c29b8c18cec\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-12T11:56:58Z\",\r\n \"oldestRestorableTime\": \"2022-05-12T11:56:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17a007d9-9446-43c7-9915-34ccf413d53a\",\r\n \"creationTime\": \"2022-05-12T11:56:59Z\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1/restorableSqlDatabases?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2EwNTBlMmU3LWJmZmItNDY1OC05MDdiLWRhYWI0MjlmMDJiMS9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec/restorableSqlDatabases?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzgxMTBjZDkyLWFjNGUtNDZhMy1hMjU1LTljMjliOGMxOGNlYy9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d017366-1e8e-46a8-a1bc-dad4b64c63ca" + "30d9b8dc-648b-4d9f-9886-83eb3a2bc6fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1179,22 +1179,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-request-id": [ - "31b19307-4d9a-4bf8-976a-68b0de7d39a2" + "7f69a2c8-135b-4e0b-a73f-490c5a5305a8" ], "x-ms-correlation-request-id": [ - "31b19307-4d9a-4bf8-976a-68b0de7d39a2" + "7f69a2c8-135b-4e0b-a73f-490c5a5305a8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162848Z:31b19307-4d9a-4bf8-976a-68b0de7d39a2" + "CENTRALINDIA:20220512T115831Z:7f69a2c8-135b-4e0b-a73f-490c5a5305a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:48 GMT" + "Thu, 12 May 2022 11:58:31 GMT" ], "Content-Length": [ "704" @@ -1203,26 +1203,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1/restorableSqlDatabases/9b92357d-0e8f-41f8-8d35-b5118cb2583f\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"9b92357d-0e8f-41f8-8d35-b5118cb2583f\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fuO5AQAAAA==\",\r\n \"eventTimestamp\": \"2022-03-08T16:27:48Z\",\r\n \"ownerId\": \"TestDB1\",\r\n \"ownerResourceId\": \"XNw9AA==\",\r\n \"operationType\": \"Create\",\r\n \"database\": {\r\n \"id\": \"TestDB1\",\r\n \"_rid\": \"XNw9AA==\",\r\n \"_self\": \"dbs/XNw9AA==/\",\r\n \"_etag\": \"\\\"00009503-0000-0700-0000-622784040000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec/restorableSqlDatabases/3c960fc8-e2ef-47b1-b81c-d191e1c0355f\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"3c960fc8-e2ef-47b1-b81c-d191e1c0355f\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"FWu-JgAAAA==\",\r\n \"eventTimestamp\": \"2022-05-12T11:57:21Z\",\r\n \"ownerId\": \"TestDB1\",\r\n \"ownerResourceId\": \"p287AA==\",\r\n \"operationType\": \"Create\",\r\n \"database\": {\r\n \"id\": \"TestDB1\",\r\n \"_rid\": \"p287AA==\",\r\n \"_self\": \"dbs/p287AA==/\",\r\n \"_etag\": \"\\\"0000d802-0000-0700-0000-627cf6210000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1/restorableSqlContainers?api-version=2021-11-15-preview&restorableSqlDatabaseRid=XNw9AA%3D%3D", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2EwNTBlMmU3LWJmZmItNDY1OC05MDdiLWRhYWI0MjlmMDJiMS9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXcmcmVzdG9yYWJsZVNxbERhdGFiYXNlUmlkPVhOdzlBQSUzRCUzRA==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec/restorableSqlContainers?api-version=2022-02-15-preview&restorableSqlDatabaseRid=p287AA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzgxMTBjZDkyLWFjNGUtNDZhMy1hMjU1LTljMjliOGMxOGNlYy9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXcmcmVzdG9yYWJsZVNxbERhdGFiYXNlUmlkPXAyODdBQSUzRCUzRA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90ed9f32-ae16-4997-83b5-1825dc6c4df3" + "26b584f0-9b8d-4319-acfe-2cfab3e259cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1242,50 +1242,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "0732371a-9732-4b8a-a858-6f28247a1a0e" + "067922fa-14db-41e3-ab18-a923e3cc80af" ], "x-ms-correlation-request-id": [ - "0732371a-9732-4b8a-a858-6f28247a1a0e" + "067922fa-14db-41e3-ab18-a923e3cc80af" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162849Z:0732371a-9732-4b8a-a858-6f28247a1a0e" + "CENTRALINDIA:20220512T115832Z:067922fa-14db-41e3-ab18-a923e3cc80af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:48 GMT" + "Thu, 12 May 2022 11:58:31 GMT" ], "Content-Length": [ - "1653" + "1584" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1/restorableSqlContainers/2f4dd5b8-5cf7-45a5-b397-cbad6c09dbac\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"2f4dd5b8-5cf7-45a5-b397-cbad6c09dbac\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"+xEulgAAAA==\",\r\n \"eventTimestamp\": \"2022-03-08T16:28:24Z\",\r\n \"ownerId\": \"TestCollectionInDB1\",\r\n \"ownerResourceId\": \"XNw9AIogZ0Q=\",\r\n \"operationType\": \"Create\",\r\n \"container\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"internalStoreProperties\": {\r\n \"allowEnableLocalStoreCompression\": false\r\n },\r\n \"_idxpolicyver\": 2,\r\n \"_rid\": \"XNw9AIogZ0Q=\",\r\n \"_self\": \"dbs/XNw9AA==/colls/XNw9AIogZ0Q=/\",\r\n \"_etag\": \"\\\"00009803-0000-0700-0000-622784280000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec/restorableSqlContainers/43948b18-5077-4eee-bc33-894a09390372\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"43948b18-5077-4eee-bc33-894a09390372\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"ynSyvgAAAA==\",\r\n \"eventTimestamp\": \"2022-05-12T11:58:02Z\",\r\n \"ownerId\": \"TestCollectionInDB1\",\r\n \"ownerResourceId\": \"p287APrthEY=\",\r\n \"operationType\": \"Create\",\r\n \"container\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"_idxpolicyver\": 2,\r\n \"_rid\": \"p287APrthEY=\",\r\n \"_self\": \"dbs/p287AA==/colls/p287APrthEY=/\",\r\n \"_etag\": \"\\\"0000db02-0000-0700-0000-627cf64a0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3Jlc3RvcmVkLWNvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3Jlc3RvcmVkLWNvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1299,13 +1299,13 @@ "gateway" ], "x-ms-request-id": [ - "8e675609-43e5-4f7a-a399-939eb7f7747a" + "421fa50e-365f-4d6c-867d-03d10f5881e6" ], "x-ms-correlation-request-id": [ - "8e675609-43e5-4f7a-a399-939eb7f7747a" + "421fa50e-365f-4d6c-867d-03d10f5881e6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162849Z:8e675609-43e5-4f7a-a399-939eb7f7747a" + "CENTRALINDIA:20220512T115835Z:421fa50e-365f-4d6c-867d-03d10f5881e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,7 +1314,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:49 GMT" + "Thu, 12 May 2022 11:58:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1330,19 +1330,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3Jlc3RvcmVkLWNvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3Jlc3RvcmVkLWNvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1362,50 +1362,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11967" ], "x-ms-request-id": [ - "f801d4b5-fada-4121-9cf8-ba9ce2e396a8" + "0eb5598e-0675-422e-974a-b7bb206f1738" ], "x-ms-correlation-request-id": [ - "f801d4b5-fada-4121-9cf8-ba9ce2e396a8" + "0eb5598e-0675-422e-974a-b7bb206f1738" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T164210Z:f801d4b5-fada-4121-9cf8-ba9ce2e396a8" + "CENTRALINDIA:20220512T121301Z:0eb5598e-0675-422e-974a-b7bb206f1738" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:42:10 GMT" + "Thu, 12 May 2022 12:13:00 GMT" ], "Content-Length": [ - "2683" + "2738" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214\",\r\n \"name\": \"restored-cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:42:00.3264794Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://restored-cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {},\r\n \"instanceId\": \"9e18b4bd-965b-49e4-90cb-b62fc2645da6\",\r\n \"createMode\": \"Restore\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://restored-cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://restored-cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://restored-cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"restoreParameters\": {\r\n \"restoreMode\": \"PointInTime\",\r\n \"restoreSource\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1\",\r\n \"restoreTimestampInUtc\": \"2022-03-08T16:28:47Z\",\r\n \"databasesToRestore\": [\r\n {\r\n \"databaseName\": \"TestDB1\",\r\n \"collectionNames\": [\r\n \"TestCollectionInDB1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n },\r\n \"capacity\": {\r\n \"totalThroughputLimit\": -1\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214\",\r\n \"name\": \"restored-cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:12:21.1968142Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://restored-cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {},\r\n \"instanceId\": \"7ef64915-ff01-43d0-9212-7192f1cce488\",\r\n \"createMode\": \"Restore\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://restored-cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://restored-cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://restored-cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"restoreParameters\": {\r\n \"restoreMode\": \"PointInTime\",\r\n \"restoreSource\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec\",\r\n \"restoreTimestampInUtc\": \"2022-05-12T11:58:25Z\",\r\n \"databasesToRestore\": [\r\n {\r\n \"databaseName\": \"TestDB1\",\r\n \"collectionNames\": [\r\n \"TestCollectionInDB1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n },\r\n \"capacity\": {\r\n \"totalThroughputLimit\": -1\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3Jlc3RvcmVkLWNvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3Jlc3RvcmVkLWNvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"createMode\": \"Restore\",\r\n \"networkAclBypassResourceIds\": [],\r\n \"restoreParameters\": {\r\n \"restoreMode\": \"PointInTime\",\r\n \"restoreSource\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1\",\r\n \"restoreTimestampInUtc\": \"2022-03-08T16:28:47Z\",\r\n \"databasesToRestore\": [\r\n {\r\n \"databaseName\": \"TestDB1\",\r\n \"collectionNames\": [\r\n \"TestCollectionInDB1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"createMode\": \"Restore\",\r\n \"networkAclBypassResourceIds\": [],\r\n \"restoreParameters\": {\r\n \"restoreMode\": \"PointInTime\",\r\n \"restoreSource\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec\",\r\n \"restoreTimestampInUtc\": \"2022-05-12T11:58:25Z\",\r\n \"databasesToRestore\": [\r\n {\r\n \"databaseName\": \"TestDB1\",\r\n \"collectionNames\": [\r\n \"TestCollectionInDB1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1422,13 +1422,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214/operationResults/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214/operationResults/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "35e1de8a-6b6e-4f16-8b7d-2df19808a442" + "446b167f-dbec-4a4f-8411-89febb03e0ad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1440,44 +1440,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "1fb07657-43f8-414a-aa34-edebbc7eb821" + "07d8b747-a409-4347-a070-933105ba2feb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162857Z:1fb07657-43f8-414a-aa34-edebbc7eb821" + "CENTRALINDIA:20220512T115848Z:07d8b747-a409-4347-a070-933105ba2feb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:28:56 GMT" + "Thu, 12 May 2022 11:58:48 GMT" ], "Content-Length": [ - "2575" + "2629" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214\",\r\n \"name\": \"restored-cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:28:53.6046017Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {},\r\n \"instanceId\": \"9e18b4bd-965b-49e4-90cb-b62fc2645da6\",\r\n \"createMode\": \"Restore\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"restoreParameters\": {\r\n \"restoreMode\": \"PointInTime\",\r\n \"restoreSource\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a050e2e7-bffb-4658-907b-daab429f02b1\",\r\n \"restoreTimestampInUtc\": \"2022-03-08T16:28:47Z\",\r\n \"databasesToRestore\": [\r\n {\r\n \"databaseName\": \"TestDB1\",\r\n \"collectionNames\": [\r\n \"TestCollectionInDB1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n },\r\n \"capacity\": {\r\n \"totalThroughputLimit\": -1\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup13/providers/Microsoft.DocumentDB/databaseAccounts/restored-cosmosdb-1214\",\r\n \"name\": \"restored-cosmosdb-1214\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:58:44.502548Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {},\r\n \"instanceId\": \"7ef64915-ff01-43d0-9212-7192f1cce488\",\r\n \"createMode\": \"Restore\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"restored-cosmosdb-1214-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"restoreParameters\": {\r\n \"restoreMode\": \"PointInTime\",\r\n \"restoreSource\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8110cd92-ac4e-46a3-a255-9c29b8c18cec\",\r\n \"restoreTimestampInUtc\": \"2022-05-12T11:58:25Z\",\r\n \"databasesToRestore\": [\r\n {\r\n \"databaseName\": \"TestDB1\",\r\n \"collectionNames\": [\r\n \"TestCollectionInDB1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n },\r\n \"capacity\": {\r\n \"totalThroughputLimit\": -1\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1497,22 +1497,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11995" ], "x-ms-request-id": [ - "938815f7-7812-4c5c-a8c2-2cfd8c375920" + "b6dc5481-0ce0-40f0-9332-d626a6858608" ], "x-ms-correlation-request-id": [ - "938815f7-7812-4c5c-a8c2-2cfd8c375920" + "b6dc5481-0ce0-40f0-9332-d626a6858608" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162927Z:938815f7-7812-4c5c-a8c2-2cfd8c375920" + "CENTRALINDIA:20220512T115918Z:b6dc5481-0ce0-40f0-9332-d626a6858608" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:29:27 GMT" + "Thu, 12 May 2022 11:59:18 GMT" ], "Content-Length": [ "21" @@ -1525,19 +1525,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1557,22 +1557,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11994" ], "x-ms-request-id": [ - "ceb74291-a8dd-4fea-b478-3a30181a4bc4" + "95eaf217-7477-4755-9130-f8a6678a16b6" ], "x-ms-correlation-request-id": [ - "ceb74291-a8dd-4fea-b478-3a30181a4bc4" + "95eaf217-7477-4755-9130-f8a6678a16b6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T162958Z:ceb74291-a8dd-4fea-b478-3a30181a4bc4" + "CENTRALINDIA:20220512T115949Z:95eaf217-7477-4755-9130-f8a6678a16b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:29:58 GMT" + "Thu, 12 May 2022 11:59:49 GMT" ], "Content-Length": [ "21" @@ -1585,19 +1585,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1617,22 +1617,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11993" ], "x-ms-request-id": [ - "86b8b419-5eaa-410c-8011-dde7685083f5" + "4744bb40-e550-4299-aee3-92617ad26514" ], "x-ms-correlation-request-id": [ - "86b8b419-5eaa-410c-8011-dde7685083f5" + "4744bb40-e550-4299-aee3-92617ad26514" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163028Z:86b8b419-5eaa-410c-8011-dde7685083f5" + "CENTRALINDIA:20220512T120019Z:4744bb40-e550-4299-aee3-92617ad26514" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:30:28 GMT" + "Thu, 12 May 2022 12:00:19 GMT" ], "Content-Length": [ "21" @@ -1645,19 +1645,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1677,22 +1677,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11992" ], "x-ms-request-id": [ - "2a845a8e-d501-4578-9adc-6ed9e2efd06a" + "5c40791c-32ba-411c-9ae6-84142ea6d24f" ], "x-ms-correlation-request-id": [ - "2a845a8e-d501-4578-9adc-6ed9e2efd06a" + "5c40791c-32ba-411c-9ae6-84142ea6d24f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163059Z:2a845a8e-d501-4578-9adc-6ed9e2efd06a" + "CENTRALINDIA:20220512T120049Z:5c40791c-32ba-411c-9ae6-84142ea6d24f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:30:59 GMT" + "Thu, 12 May 2022 12:00:49 GMT" ], "Content-Length": [ "21" @@ -1705,19 +1705,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1737,22 +1737,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11991" ], "x-ms-request-id": [ - "da088e3b-a377-44f5-aef5-c14746f962a4" + "2858cdcf-077b-4991-b194-dd721bcfb192" ], "x-ms-correlation-request-id": [ - "da088e3b-a377-44f5-aef5-c14746f962a4" + "2858cdcf-077b-4991-b194-dd721bcfb192" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163130Z:da088e3b-a377-44f5-aef5-c14746f962a4" + "CENTRALINDIA:20220512T120120Z:2858cdcf-077b-4991-b194-dd721bcfb192" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:31:29 GMT" + "Thu, 12 May 2022 12:01:19 GMT" ], "Content-Length": [ "21" @@ -1765,19 +1765,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1797,22 +1797,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11990" ], "x-ms-request-id": [ - "5efdbe72-31c6-483b-a01b-1a0b52a13764" + "a6cad295-0e43-4e4f-9820-44a4015e5ceb" ], "x-ms-correlation-request-id": [ - "5efdbe72-31c6-483b-a01b-1a0b52a13764" + "a6cad295-0e43-4e4f-9820-44a4015e5ceb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163201Z:5efdbe72-31c6-483b-a01b-1a0b52a13764" + "CENTRALINDIA:20220512T120150Z:a6cad295-0e43-4e4f-9820-44a4015e5ceb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:32:00 GMT" + "Thu, 12 May 2022 12:01:50 GMT" ], "Content-Length": [ "21" @@ -1825,19 +1825,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1857,22 +1857,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11989" ], "x-ms-request-id": [ - "c313e6b6-4084-43ee-a344-82395c15db9f" + "7e1d8712-0907-4ce8-8931-190d5af784a2" ], "x-ms-correlation-request-id": [ - "c313e6b6-4084-43ee-a344-82395c15db9f" + "7e1d8712-0907-4ce8-8931-190d5af784a2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163231Z:c313e6b6-4084-43ee-a344-82395c15db9f" + "CENTRALINDIA:20220512T120220Z:7e1d8712-0907-4ce8-8931-190d5af784a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:32:31 GMT" + "Thu, 12 May 2022 12:02:20 GMT" ], "Content-Length": [ "21" @@ -1885,19 +1885,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1917,22 +1917,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11988" ], "x-ms-request-id": [ - "9e46d00d-e261-47e8-8413-cb6976c1d49d" + "18be20c7-74bf-4997-99ee-ff3766cdea4c" ], "x-ms-correlation-request-id": [ - "9e46d00d-e261-47e8-8413-cb6976c1d49d" + "18be20c7-74bf-4997-99ee-ff3766cdea4c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163302Z:9e46d00d-e261-47e8-8413-cb6976c1d49d" + "CENTRALINDIA:20220512T120250Z:18be20c7-74bf-4997-99ee-ff3766cdea4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:33:02 GMT" + "Thu, 12 May 2022 12:02:50 GMT" ], "Content-Length": [ "21" @@ -1945,19 +1945,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1977,22 +1977,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11987" ], "x-ms-request-id": [ - "e0eb8dae-68e2-4d19-a3dc-fba422e358bb" + "426252fc-5d1d-40ef-9ba4-af2f362d41c2" ], "x-ms-correlation-request-id": [ - "e0eb8dae-68e2-4d19-a3dc-fba422e358bb" + "426252fc-5d1d-40ef-9ba4-af2f362d41c2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163333Z:e0eb8dae-68e2-4d19-a3dc-fba422e358bb" + "CENTRALINDIA:20220512T120321Z:426252fc-5d1d-40ef-9ba4-af2f362d41c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:33:32 GMT" + "Thu, 12 May 2022 12:03:20 GMT" ], "Content-Length": [ "21" @@ -2005,19 +2005,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2037,22 +2037,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11986" ], "x-ms-request-id": [ - "6be1e27b-1a81-4b63-b921-5ecaaa23cded" + "1311d828-4166-4c8c-83a3-53a6491429f9" ], "x-ms-correlation-request-id": [ - "6be1e27b-1a81-4b63-b921-5ecaaa23cded" + "1311d828-4166-4c8c-83a3-53a6491429f9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163403Z:6be1e27b-1a81-4b63-b921-5ecaaa23cded" + "CENTRALINDIA:20220512T120352Z:1311d828-4166-4c8c-83a3-53a6491429f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:34:03 GMT" + "Thu, 12 May 2022 12:03:51 GMT" ], "Content-Length": [ "21" @@ -2065,19 +2065,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2097,22 +2097,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11985" ], "x-ms-request-id": [ - "51988a53-33b6-4d73-9f1c-62fcca1d36d0" + "fa3dcbe2-6445-47bf-8b9c-a5048bce3b02" ], "x-ms-correlation-request-id": [ - "51988a53-33b6-4d73-9f1c-62fcca1d36d0" + "fa3dcbe2-6445-47bf-8b9c-a5048bce3b02" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163434Z:51988a53-33b6-4d73-9f1c-62fcca1d36d0" + "CENTRALINDIA:20220512T120422Z:fa3dcbe2-6445-47bf-8b9c-a5048bce3b02" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:34:33 GMT" + "Thu, 12 May 2022 12:04:22 GMT" ], "Content-Length": [ "21" @@ -2125,19 +2125,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2157,22 +2157,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11984" ], "x-ms-request-id": [ - "7e3f1557-8c6a-47da-bceb-b1e47dcc1d3c" + "b7265ec6-f4e2-4c1d-95c3-75bfb57c9067" ], "x-ms-correlation-request-id": [ - "7e3f1557-8c6a-47da-bceb-b1e47dcc1d3c" + "b7265ec6-f4e2-4c1d-95c3-75bfb57c9067" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163504Z:7e3f1557-8c6a-47da-bceb-b1e47dcc1d3c" + "CENTRALINDIA:20220512T120452Z:b7265ec6-f4e2-4c1d-95c3-75bfb57c9067" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:35:04 GMT" + "Thu, 12 May 2022 12:04:52 GMT" ], "Content-Length": [ "21" @@ -2185,19 +2185,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2217,22 +2217,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11983" ], "x-ms-request-id": [ - "354e43b2-3108-4f42-b317-e4f536f86a94" + "4eac3af7-56a0-4932-be06-8063b7ba5d4b" ], "x-ms-correlation-request-id": [ - "354e43b2-3108-4f42-b317-e4f536f86a94" + "4eac3af7-56a0-4932-be06-8063b7ba5d4b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163535Z:354e43b2-3108-4f42-b317-e4f536f86a94" + "CENTRALINDIA:20220512T120523Z:4eac3af7-56a0-4932-be06-8063b7ba5d4b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:35:35 GMT" + "Thu, 12 May 2022 12:05:22 GMT" ], "Content-Length": [ "21" @@ -2245,19 +2245,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2277,22 +2277,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11982" ], "x-ms-request-id": [ - "b4fb0543-306e-42e9-93b8-ccbde37ed46e" + "32021064-c040-4b81-8569-52ca678e20c8" ], "x-ms-correlation-request-id": [ - "b4fb0543-306e-42e9-93b8-ccbde37ed46e" + "32021064-c040-4b81-8569-52ca678e20c8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163606Z:b4fb0543-306e-42e9-93b8-ccbde37ed46e" + "CENTRALINDIA:20220512T120553Z:32021064-c040-4b81-8569-52ca678e20c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:36:05 GMT" + "Thu, 12 May 2022 12:05:52 GMT" ], "Content-Length": [ "21" @@ -2305,19 +2305,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2337,22 +2337,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11981" ], "x-ms-request-id": [ - "0abc5ecb-91da-4b92-9ab1-b427739aca18" + "0a77149a-44a4-4634-9acd-9f43bea7bdb4" ], "x-ms-correlation-request-id": [ - "0abc5ecb-91da-4b92-9ab1-b427739aca18" + "0a77149a-44a4-4634-9acd-9f43bea7bdb4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163637Z:0abc5ecb-91da-4b92-9ab1-b427739aca18" + "CENTRALINDIA:20220512T120623Z:0a77149a-44a4-4634-9acd-9f43bea7bdb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:36:36 GMT" + "Thu, 12 May 2022 12:06:23 GMT" ], "Content-Length": [ "21" @@ -2365,19 +2365,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2397,22 +2397,82 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11980" + ], + "x-ms-request-id": [ + "a6bb9dc9-55fd-4090-ab75-8291138426f5" + ], + "x-ms-correlation-request-id": [ + "a6bb9dc9-55fd-4090-ab75-8291138426f5" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T120653Z:a6bb9dc9-55fd-4090-ab75-8291138426f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 12:06:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adccea08-2f6a-4efc-b4ba-e413315c981e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" ], "x-ms-request-id": [ - "3b37bec0-1f2b-4a7c-a3b5-d7bb6d53a51e" + "5392b3d5-742c-49a7-bb25-588fd87855bb" ], "x-ms-correlation-request-id": [ - "3b37bec0-1f2b-4a7c-a3b5-d7bb6d53a51e" + "5392b3d5-742c-49a7-bb25-588fd87855bb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163707Z:3b37bec0-1f2b-4a7c-a3b5-d7bb6d53a51e" + "CENTRALINDIA:20220512T120724Z:5392b3d5-742c-49a7-bb25-588fd87855bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:37:06 GMT" + "Thu, 12 May 2022 12:07:23 GMT" ], "Content-Length": [ "21" @@ -2425,19 +2485,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2457,22 +2517,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11978" ], "x-ms-request-id": [ - "cf4eda6a-7c3d-44aa-89a7-67c72321b366" + "d21bf4f2-8fc8-4a75-863a-3de1d2dca20f" ], "x-ms-correlation-request-id": [ - "cf4eda6a-7c3d-44aa-89a7-67c72321b366" + "d21bf4f2-8fc8-4a75-863a-3de1d2dca20f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163738Z:cf4eda6a-7c3d-44aa-89a7-67c72321b366" + "CENTRALINDIA:20220512T120754Z:d21bf4f2-8fc8-4a75-863a-3de1d2dca20f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:37:37 GMT" + "Thu, 12 May 2022 12:07:54 GMT" ], "Content-Length": [ "21" @@ -2485,19 +2545,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2517,22 +2577,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11977" ], "x-ms-request-id": [ - "084f7b50-ca34-4a88-a50f-45062c2518a4" + "8634bc62-7318-4a02-a584-42163af47d58" ], "x-ms-correlation-request-id": [ - "084f7b50-ca34-4a88-a50f-45062c2518a4" + "8634bc62-7318-4a02-a584-42163af47d58" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163808Z:084f7b50-ca34-4a88-a50f-45062c2518a4" + "CENTRALINDIA:20220512T120824Z:8634bc62-7318-4a02-a584-42163af47d58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:38:08 GMT" + "Thu, 12 May 2022 12:08:24 GMT" ], "Content-Length": [ "21" @@ -2545,19 +2605,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2577,22 +2637,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11976" ], "x-ms-request-id": [ - "a38dec47-68f9-44bb-ad3c-6a35caa5af51" + "58145641-aaec-491a-9d41-7c40ec5109ba" ], "x-ms-correlation-request-id": [ - "a38dec47-68f9-44bb-ad3c-6a35caa5af51" + "58145641-aaec-491a-9d41-7c40ec5109ba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163838Z:a38dec47-68f9-44bb-ad3c-6a35caa5af51" + "CENTRALINDIA:20220512T120855Z:58145641-aaec-491a-9d41-7c40ec5109ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:38:38 GMT" + "Thu, 12 May 2022 12:08:54 GMT" ], "Content-Length": [ "21" @@ -2605,19 +2665,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2637,22 +2697,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11975" ], "x-ms-request-id": [ - "de0befbd-72bf-4d5d-b4c3-3cbafa137f47" + "cb69b6bd-87c1-4caa-8941-d0b8d15253cd" ], "x-ms-correlation-request-id": [ - "de0befbd-72bf-4d5d-b4c3-3cbafa137f47" + "cb69b6bd-87c1-4caa-8941-d0b8d15253cd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163909Z:de0befbd-72bf-4d5d-b4c3-3cbafa137f47" + "CENTRALINDIA:20220512T120926Z:cb69b6bd-87c1-4caa-8941-d0b8d15253cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:39:08 GMT" + "Thu, 12 May 2022 12:09:25 GMT" ], "Content-Length": [ "21" @@ -2665,19 +2725,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2697,22 +2757,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11974" ], "x-ms-request-id": [ - "fd5e9813-bf88-49e7-96e6-02441cd75bff" + "70533c72-6e81-4a07-9a90-50f2f013acf8" ], "x-ms-correlation-request-id": [ - "fd5e9813-bf88-49e7-96e6-02441cd75bff" + "70533c72-6e81-4a07-9a90-50f2f013acf8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T163939Z:fd5e9813-bf88-49e7-96e6-02441cd75bff" + "CENTRALINDIA:20220512T120956Z:70533c72-6e81-4a07-9a90-50f2f013acf8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:39:38 GMT" + "Thu, 12 May 2022 12:09:56 GMT" ], "Content-Length": [ "21" @@ -2725,19 +2785,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2757,22 +2817,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11973" ], "x-ms-request-id": [ - "7737ff3b-2f97-47af-a2df-6d7ec95cf7d2" + "43ce5541-83dd-472d-a95f-a29fbd96e898" ], "x-ms-correlation-request-id": [ - "7737ff3b-2f97-47af-a2df-6d7ec95cf7d2" + "43ce5541-83dd-472d-a95f-a29fbd96e898" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T164009Z:7737ff3b-2f97-47af-a2df-6d7ec95cf7d2" + "CENTRALINDIA:20220512T121026Z:43ce5541-83dd-472d-a95f-a29fbd96e898" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:40:09 GMT" + "Thu, 12 May 2022 12:10:26 GMT" ], "Content-Length": [ "21" @@ -2785,19 +2845,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2817,22 +2877,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11972" ], "x-ms-request-id": [ - "954ae8c6-8743-483e-85c0-bbae8440d167" + "9cc117c9-6613-4326-8601-263ff68acbd9" ], "x-ms-correlation-request-id": [ - "954ae8c6-8743-483e-85c0-bbae8440d167" + "9cc117c9-6613-4326-8601-263ff68acbd9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T164039Z:954ae8c6-8743-483e-85c0-bbae8440d167" + "CENTRALINDIA:20220512T121056Z:9cc117c9-6613-4326-8601-263ff68acbd9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:40:39 GMT" + "Thu, 12 May 2022 12:10:56 GMT" ], "Content-Length": [ "21" @@ -2845,19 +2905,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2877,22 +2937,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11971" ], "x-ms-request-id": [ - "b4f17bde-0889-45aa-8eeb-6802f3984f8d" + "30adb0f2-a4c8-4f65-92a5-24c3cac1e8bb" ], "x-ms-correlation-request-id": [ - "b4f17bde-0889-45aa-8eeb-6802f3984f8d" + "30adb0f2-a4c8-4f65-92a5-24c3cac1e8bb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T164110Z:b4f17bde-0889-45aa-8eeb-6802f3984f8d" + "CENTRALINDIA:20220512T121127Z:30adb0f2-a4c8-4f65-92a5-24c3cac1e8bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:41:09 GMT" + "Thu, 12 May 2022 12:11:26 GMT" ], "Content-Length": [ "21" @@ -2905,19 +2965,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2937,22 +2997,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11970" ], "x-ms-request-id": [ - "a5aec7ec-cb59-4803-be1e-6e92c74ac821" + "1550d678-02ab-4f5f-9e3c-979b4648868f" ], "x-ms-correlation-request-id": [ - "a5aec7ec-cb59-4803-be1e-6e92c74ac821" + "1550d678-02ab-4f5f-9e3c-979b4648868f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T164140Z:a5aec7ec-cb59-4803-be1e-6e92c74ac821" + "CENTRALINDIA:20220512T121157Z:1550d678-02ab-4f5f-9e3c-979b4648868f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:41:39 GMT" + "Thu, 12 May 2022 12:11:57 GMT" ], "Content-Length": [ "21" @@ -2965,19 +3025,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/35e1de8a-6b6e-4f16-8b7d-2df19808a442?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVlMWRlOGEtNmI2ZS00ZjE2LThiN2QtMmRmMTk4MDhhNDQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df263a6b-3c48-4f23-81da-957bc3e2337f" + "adccea08-2f6a-4efc-b4ba-e413315c981e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2997,22 +3057,82 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11969" + ], + "x-ms-request-id": [ + "c8d55a4d-851a-4106-a750-e40c8cab85ec" + ], + "x-ms-correlation-request-id": [ + "c8d55a4d-851a-4106-a750-e40c8cab85ec" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T121227Z:c8d55a4d-851a-4106-a750-e40c8cab85ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 12:12:26 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/446b167f-dbec-4a4f-8411-89febb03e0ad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDQ2YjE2N2YtZGJlYy00YTRmLTg0MTEtODlmZWJiMDNlMGFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adccea08-2f6a-4efc-b4ba-e413315c981e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" ], "x-ms-request-id": [ - "4a5476f2-986c-4a90-bb8b-b0f2d2a6ea97" + "cd7b6ea1-9e55-4013-b941-8c7fba14b524" ], "x-ms-correlation-request-id": [ - "4a5476f2-986c-4a90-bb8b-b0f2d2a6ea97" + "cd7b6ea1-9e55-4013-b941-8c7fba14b524" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T164210Z:4a5476f2-986c-4a90-bb8b-b0f2d2a6ea97" + "CENTRALINDIA:20220512T121258Z:cd7b6ea1-9e55-4013-b941-8c7fba14b524" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:42:09 GMT" + "Thu, 12 May 2022 12:12:58 GMT" ], "Content-Length": [ "22" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestSqlContainerBackupInformationCmdLets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestSqlContainerBackupInformationCmdLets.json index a202be70bff4..03c4e8c7347a 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestSqlContainerBackupInformationCmdLets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestSqlContainerBackupInformationCmdLets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "df9b2604-418c-47c0-a377-0e66f511e686" + "acc6e8e8-87a6-47bc-8523-b8a342b5c9c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-request-id": [ - "78c39eb1-154d-4ca1-b448-19f1dcb08139" + "99f2a57c-3de9-4fdb-948e-17344a158bdf" ], "x-ms-correlation-request-id": [ - "78c39eb1-154d-4ca1-b448-19f1dcb08139" + "99f2a57c-3de9-4fdb-948e-17344a158bdf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002635Z:78c39eb1-154d-4ca1-b448-19f1dcb08139" + "JIOINDIACENTRAL:20220512T122722Z:99f2a57c-3de9-4fdb-948e-17344a158bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:26:35 GMT" + "Thu, 12 May 2022 12:27:22 GMT" ], "Content-Length": [ "202" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fde4443-621e-4b57-a68f-512c9c433fbf" + "c15400a0-eb66-429a-9fe6-ee04f01203f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "9562c652-220c-45f1-aaa8-362251d0850a" + "2f024346-252a-41bb-986e-c6a2ff1d205c" ], "x-ms-correlation-request-id": [ - "9562c652-220c-45f1-aaa8-362251d0850a" + "2f024346-252a-41bb-986e-c6a2ff1d205c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002637Z:9562c652-220c-45f1-aaa8-362251d0850a" + "JIOINDIACENTRAL:20220512T122724Z:2f024346-252a-41bb-986e-c6a2ff1d205c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:26:36 GMT" + "Thu, 12 May 2022 12:27:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fde4443-621e-4b57-a68f-512c9c433fbf" + "c15400a0-eb66-429a-9fe6-ee04f01203f3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11987" ], "x-ms-request-id": [ - "0a88cf63-77c9-4346-bbe2-e0a9982df5be" + "e9e9afd9-0a98-41ff-9c90-73a5027f227d" ], "x-ms-correlation-request-id": [ - "0a88cf63-77c9-4346-bbe2-e0a9982df5be" + "e9e9afd9-0a98-41ff-9c90-73a5027f227d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002925Z:0a88cf63-77c9-4346-bbe2-e0a9982df5be" + "JIOINDIACENTRAL:20220512T123012Z:e9e9afd9-0a98-41ff-9c90-73a5027f227d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:29:24 GMT" + "Thu, 12 May 2022 12:30:11 GMT" ], "Content-Length": [ - "2265" + "2320" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:28:51.4511215Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"56a9912b-ba95-4e34-9fdf-ceb7e7423c2f\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:29:31.1376533Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a649c1ac-3dbe-44fe-b434-e043bdb4c462\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da0c5af2-36d9-444f-987f-e11ef8438878" + "1138420f-29dc-40f2-8b97-5c886f0f14a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,50 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-request-id": [ - "c9dd1283-e4c4-48b5-b930-a51dbe41480f" + "e2f9ab2c-417e-46b4-976f-1653e15fce79" ], "x-ms-correlation-request-id": [ - "c9dd1283-e4c4-48b5-b930-a51dbe41480f" + "e2f9ab2c-417e-46b4-976f-1653e15fce79" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003029Z:c9dd1283-e4c4-48b5-b930-a51dbe41480f" + "JIOINDIACENTRAL:20220512T123134Z:e2f9ab2c-417e-46b4-976f-1653e15fce79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:30:29 GMT" + "Thu, 12 May 2022 12:31:33 GMT" ], "Content-Length": [ - "2265" + "2320" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:28:51.4511215Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"56a9912b-ba95-4e34-9fdf-ceb7e7423c2f\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:29:31.1376533Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a649c1ac-3dbe-44fe-b434-e043bdb4c462\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1214-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1fde4443-621e-4b57-a68f-512c9c433fbf" + "c15400a0-eb66-429a-9fe6-ee04f01203f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/operationResults/643a033b-38d3-41d5-851c-fd8ae678ebff?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/operationResults/0eaf86cf-0f50-4be4-838e-e5f5134e97fb?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "643a033b-38d3-41d5-851c-fd8ae678ebff" + "0eaf86cf-0f50-4be4-838e-e5f5134e97fb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/643a033b-38d3-41d5-851c-fd8ae678ebff?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/0eaf86cf-0f50-4be4-838e-e5f5134e97fb?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,44 +300,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "d80cd44d-3ddc-4c7e-b35c-c706826b2102" + "1019a379-b401-41a4-81f1-1b22bd6f44e2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002653Z:d80cd44d-3ddc-4c7e-b35c-c706826b2102" + "JIOINDIACENTRAL:20220512T122739Z:1019a379-b401-41a4-81f1-1b22bd6f44e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:26:52 GMT" + "Thu, 12 May 2022 12:27:39 GMT" ], "Content-Length": [ - "1941" + "1995" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-09T00:26:49.7215082Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"56a9912b-ba95-4e34-9fdf-ceb7e7423c2f\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214\",\r\n \"name\": \"cosmosdb-1214\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:27:36.341393Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a649c1ac-3dbe-44fe-b434-e043bdb4c462\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1214-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/643a033b-38d3-41d5-851c-fd8ae678ebff?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjQzYTAzM2ItMzhkMy00MWQ1LTg1MWMtZmQ4YWU2NzhlYmZmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/0eaf86cf-0f50-4be4-838e-e5f5134e97fb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMGVhZjg2Y2YtMGY1MC00YmU0LTgzOGUtZTVmNTEzNGU5N2ZiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fde4443-621e-4b57-a68f-512c9c433fbf" + "c15400a0-eb66-429a-9fe6-ee04f01203f3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -357,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-request-id": [ - "46ea20a1-d427-4296-a01b-2b3275c2a729" + "41ce3240-d231-4fc2-9f5e-f790445615e3" ], "x-ms-correlation-request-id": [ - "46ea20a1-d427-4296-a01b-2b3275c2a729" + "41ce3240-d231-4fc2-9f5e-f790445615e3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002723Z:46ea20a1-d427-4296-a01b-2b3275c2a729" + "JIOINDIACENTRAL:20220512T122810Z:41ce3240-d231-4fc2-9f5e-f790445615e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:27:23 GMT" + "Thu, 12 May 2022 12:28:09 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/643a033b-38d3-41d5-851c-fd8ae678ebff?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjQzYTAzM2ItMzhkMy00MWQ1LTg1MWMtZmQ4YWU2NzhlYmZmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/0eaf86cf-0f50-4be4-838e-e5f5134e97fb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMGVhZjg2Y2YtMGY1MC00YmU0LTgzOGUtZTVmNTEzNGU5N2ZiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fde4443-621e-4b57-a68f-512c9c433fbf" + "c15400a0-eb66-429a-9fe6-ee04f01203f3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-request-id": [ - "dc57da18-c6a9-4060-b7e2-22d406318235" + "75655d3d-256f-4655-86be-dd783d323718" ], "x-ms-correlation-request-id": [ - "dc57da18-c6a9-4060-b7e2-22d406318235" + "75655d3d-256f-4655-86be-dd783d323718" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002754Z:dc57da18-c6a9-4060-b7e2-22d406318235" + "JIOINDIACENTRAL:20220512T122840Z:75655d3d-256f-4655-86be-dd783d323718" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:27:54 GMT" + "Thu, 12 May 2022 12:28:39 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/643a033b-38d3-41d5-851c-fd8ae678ebff?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjQzYTAzM2ItMzhkMy00MWQ1LTg1MWMtZmQ4YWU2NzhlYmZmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/0eaf86cf-0f50-4be4-838e-e5f5134e97fb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMGVhZjg2Y2YtMGY1MC00YmU0LTgzOGUtZTVmNTEzNGU5N2ZiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fde4443-621e-4b57-a68f-512c9c433fbf" + "c15400a0-eb66-429a-9fe6-ee04f01203f3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-request-id": [ - "8648dd59-36e0-4815-a1ef-d613619ad6ae" + "949a5d10-56a4-4db9-a961-e71fa0ff43b3" ], "x-ms-correlation-request-id": [ - "8648dd59-36e0-4815-a1ef-d613619ad6ae" + "949a5d10-56a4-4db9-a961-e71fa0ff43b3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002824Z:8648dd59-36e0-4815-a1ef-d613619ad6ae" + "JIOINDIACENTRAL:20220512T122910Z:949a5d10-56a4-4db9-a961-e71fa0ff43b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:28:23 GMT" + "Thu, 12 May 2022 12:29:10 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/643a033b-38d3-41d5-851c-fd8ae678ebff?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjQzYTAzM2ItMzhkMy00MWQ1LTg1MWMtZmQ4YWU2NzhlYmZmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/0eaf86cf-0f50-4be4-838e-e5f5134e97fb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMGVhZjg2Y2YtMGY1MC00YmU0LTgzOGUtZTVmNTEzNGU5N2ZiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fde4443-621e-4b57-a68f-512c9c433fbf" + "c15400a0-eb66-429a-9fe6-ee04f01203f3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11989" ], "x-ms-request-id": [ - "1baa33e1-4ce7-4e04-b455-b7bfd423b402" + "da10ffcc-e729-4585-a829-798367862294" ], "x-ms-correlation-request-id": [ - "1baa33e1-4ce7-4e04-b455-b7bfd423b402" + "da10ffcc-e729-4585-a829-798367862294" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002854Z:1baa33e1-4ce7-4e04-b455-b7bfd423b402" + "JIOINDIACENTRAL:20220512T122941Z:da10ffcc-e729-4585-a829-798367862294" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:28:54 GMT" + "Thu, 12 May 2022 12:29:40 GMT" ], "Content-Length": [ "21" @@ -565,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/643a033b-38d3-41d5-851c-fd8ae678ebff?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNjQzYTAzM2ItMzhkMy00MWQ1LTg1MWMtZmQ4YWU2NzhlYmZmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/0eaf86cf-0f50-4be4-838e-e5f5134e97fb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMGVhZjg2Y2YtMGY1MC00YmU0LTgzOGUtZTVmNTEzNGU5N2ZiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fde4443-621e-4b57-a68f-512c9c433fbf" + "c15400a0-eb66-429a-9fe6-ee04f01203f3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11988" ], "x-ms-request-id": [ - "6fae6a4e-0de2-45f2-99e7-147b339c8aee" + "881418dc-0fdd-4bcb-9986-1509e716588d" ], "x-ms-correlation-request-id": [ - "6fae6a4e-0de2-45f2-99e7-147b339c8aee" + "881418dc-0fdd-4bcb-9986-1509e716588d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002924Z:6fae6a4e-0de2-45f2-99e7-147b339c8aee" + "JIOINDIACENTRAL:20220512T123011Z:881418dc-0fdd-4bcb-9986-1509e716588d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:29:24 GMT" + "Thu, 12 May 2022 12:30:11 GMT" ], "Content-Length": [ "22" @@ -625,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ec72619-eceb-4430-8bb1-d50f6c32a4b5" + "3e5c42ca-38d0-4b89-9aca-c9574e5af655" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -663,44 +663,44 @@ "11992" ], "x-ms-request-id": [ - "7a4c53e8-4ea2-471d-9f02-dcbca0a75286" + "d8739413-34ab-4c3e-8616-62f2ebfb4bb6" ], "x-ms-correlation-request-id": [ - "7a4c53e8-4ea2-471d-9f02-dcbca0a75286" + "d8739413-34ab-4c3e-8616-62f2ebfb4bb6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002926Z:7a4c53e8-4ea2-471d-9f02-dcbca0a75286" + "JIOINDIACENTRAL:20220512T123016Z:d8739413-34ab-4c3e-8616-62f2ebfb4bb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:29:25 GMT" + "Thu, 12 May 2022 12:30:15 GMT" ], "Content-Length": [ - "5578" + "6292" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 2ec72619-eceb-4430-8bb1-d50f6c32a4b5, Request URI: /apps/23c3f32c-598a-4f2f-a9c2-7242d1510eb4/services/88178e0a-621d-44b5-a867-b18888e22433/partitions/23bb1ab9-40cc-4672-8abe-6a9d82ba385c/replicas/132901689018934605s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-09T00:29:26.2693335Z, RequestEndTime: 2022-03-09T00:29:26.2793387Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:28:31.6491900Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.483,\\\\\\\"memory\\\\\\\":418655572.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0166,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:28:41.6592130Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.680,\\\\\\\"memory\\\\\\\":418410380.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0295,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:28:51.6692328Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.769,\\\\\\\"memory\\\\\\\":417960944.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0161,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:01.6792782Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.663,\\\\\\\"memory\\\\\\\":417707144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0111,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:11.7792835Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.141,\\\\\\\"memory\\\\\\\":418512976.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0144,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:21.7893070Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.071,\\\\\\\"memory\\\\\\\":419296984.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0152,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-09T00:29:26.2693335Z; ResponseTime: 2022-03-09T00:29:26.2793387Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11000/apps/23c3f32c-598a-4f2f-a9c2-7242d1510eb4/services/88178e0a-621d-44b5-a867-b18888e22433/partitions/23bb1ab9-40cc-4672-8abe-6a9d82ba385c/replicas/132901689018934605s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.354, ActivityId: 2ec72619-eceb-4430-8bb1-d50f6c32a4b5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2693335Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0167},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2693502Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0173},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2693675Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.196},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2695635Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9952},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2715587Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1454},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2717041Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-09T00:29:26.2693335Z; ResponseTime: 2022-03-09T00:29:26.2793387Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/23c3f32c-598a-4f2f-a9c2-7242d1510eb4/services/88178e0a-621d-44b5-a867-b18888e22433/partitions/23bb1ab9-40cc-4672-8abe-6a9d82ba385c/replicas/132901689067842324s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.156, ActivityId: 2ec72619-eceb-4430-8bb1-d50f6c32a4b5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2693335Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0069},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2693404Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2693432Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0985},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2694417Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9114},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2713531Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.153},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:26.2715061Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TestDB1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 3e5c42ca-38d0-4b89-9aca-c9574e5af655, Request URI: /apps/6c57c1f6-3c0b-4bb1-b29e-89fe8262ed3d/services/3dd555bb-eae1-4c12-959f-ae734bf95d55/partitions/afad79da-a752-40e8-88f8-26913b003968/replicas/132965886052885669s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T12:30:16.3732208Z, RequestEndTime: 2022-05-12T12:30:16.3832970Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:29:21.9525798Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.553,\\\\\\\"memory\\\\\\\":485976916.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:29:31.9626534Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.108,\\\\\\\"memory\\\\\\\":485982920.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0107,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:29:41.9728518Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.243,\\\\\\\"memory\\\\\\\":485672696.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0148,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:29:51.9829097Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.414,\\\\\\\"memory\\\\\\\":485093620.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0141,\\\\\\\"availableThreads\\\\\\\":32745,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:30:01.9931042Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.375,\\\\\\\"memory\\\\\\\":484721548.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0462,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:30:12.0032313Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.630,\\\\\\\"memory\\\\\\\":484212784.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0143,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T12:30:16.3732208Z; ResponseTime: 2022-05-12T12:30:16.3832970Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/6c57c1f6-3c0b-4bb1-b29e-89fe8262ed3d/services/3dd555bb-eae1-4c12-959f-ae734bf95d55/partitions/afad79da-a752-40e8-88f8-26913b003968/replicas/132965886052885669s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.243, ActivityId: 3e5c42ca-38d0-4b89-9aca-c9574e5af655, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3732208Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0087},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3732295Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3732326Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1507},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3733833Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0039},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3753872Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0281},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3754153Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:30:16.2932250Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:30:16.2932250Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:30:16.3232701Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T12:30:16.3732208Z; ResponseTime: 2022-05-12T12:30:16.3832970Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/6c57c1f6-3c0b-4bb1-b29e-89fe8262ed3d/services/3dd555bb-eae1-4c12-959f-ae734bf95d55/partitions/afad79da-a752-40e8-88f8-26913b003968/replicas/132965886052885668s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.857, ActivityId: 3e5c42ca-38d0-4b89-9aca-c9574e5af655, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3732208Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0045},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3732253Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0017},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3732270Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1443},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3733713Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2673},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3746386Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0624},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:16.3747010Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:30:16.1732178Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:30:16.1732178Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:30:16.2132692Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TestDB1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ec72619-eceb-4430-8bb1-d50f6c32a4b5" + "3e5c42ca-38d0-4b89-9aca-c9574e5af655" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -723,19 +723,19 @@ "11990" ], "x-ms-request-id": [ - "9240368e-a7b1-4fa3-a75f-94c21d0bc1a5" + "eb2f8cef-7e22-4b54-983c-6cb73ae349c5" ], "x-ms-correlation-request-id": [ - "9240368e-a7b1-4fa3-a75f-94c21d0bc1a5" + "eb2f8cef-7e22-4b54-983c-6cb73ae349c5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002957Z:9240368e-a7b1-4fa3-a75f-94c21d0bc1a5" + "JIOINDIACENTRAL:20220512T123050Z:eb2f8cef-7e22-4b54-983c-6cb73ae349c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:29:57 GMT" + "Thu, 12 May 2022 12:30:50 GMT" ], "Content-Length": [ "448" @@ -744,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"TestDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\",\r\n \"_rid\": \"aMNDAA==\",\r\n \"_self\": \"dbs/aMNDAA==/\",\r\n \"_etag\": \"\\\"00005400-0000-0300-0000-6227f4ee0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646785774\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"TestDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\",\r\n \"_rid\": \"pShZAA==\",\r\n \"_self\": \"dbs/pShZAA==/\",\r\n \"_etag\": \"\\\"0000d205-0000-0300-0000-627cfde00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652358624\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da0c5af2-36d9-444f-987f-e11ef8438878" + "1138420f-29dc-40f2-8b97-5c886f0f14a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -783,22 +783,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-request-id": [ - "45673755-9fec-4657-bab3-498a16ee0337" + "11fbbd5c-1b8e-41f1-b5ba-59ea565e9c89" ], "x-ms-correlation-request-id": [ - "45673755-9fec-4657-bab3-498a16ee0337" + "11fbbd5c-1b8e-41f1-b5ba-59ea565e9c89" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003030Z:45673755-9fec-4657-bab3-498a16ee0337" + "JIOINDIACENTRAL:20220512T123135Z:11fbbd5c-1b8e-41f1-b5ba-59ea565e9c89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:30:29 GMT" + "Thu, 12 May 2022 12:31:34 GMT" ], "Content-Length": [ "448" @@ -807,26 +807,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"TestDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\",\r\n \"_rid\": \"aMNDAA==\",\r\n \"_self\": \"dbs/aMNDAA==/\",\r\n \"_etag\": \"\\\"00005400-0000-0300-0000-6227f4ee0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646785774\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"TestDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\",\r\n \"_rid\": \"pShZAA==\",\r\n \"_self\": \"dbs/pShZAA==/\",\r\n \"_etag\": \"\\\"0000d205-0000-0300-0000-627cfde00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652358624\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestDB1\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2ec72619-eceb-4430-8bb1-d50f6c32a4b5" + "3e5c42ca-38d0-4b89-9aca-c9574e5af655" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -843,13 +843,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/operationResults/57c90c0d-1bcc-49c4-bbe2-8ef35b6d0d83?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/operationResults/3a175b2b-9418-40cc-95e7-a0129ece57a2?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/57c90c0d-1bcc-49c4-bbe2-8ef35b6d0d83?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/3a175b2b-9418-40cc-95e7-a0129ece57a2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "57c90c0d-1bcc-49c4-bbe2-8ef35b6d0d83" + "3a175b2b-9418-40cc-95e7-a0129ece57a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,19 +861,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "a58af6f4-177f-41f1-877f-a24c6c1c73f8" + "eed459a9-1b26-4291-b72d-244123ff49ff" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002927Z:a58af6f4-177f-41f1-877f-a24c6c1c73f8" + "JIOINDIACENTRAL:20220512T123019Z:eed459a9-1b26-4291-b72d-244123ff49ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:29:26 GMT" + "Thu, 12 May 2022 12:30:19 GMT" ], "Content-Length": [ "21" @@ -886,19 +886,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/57c90c0d-1bcc-49c4-bbe2-8ef35b6d0d83?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTdjOTBjMGQtMWJjYy00OWM0LWJiZTItOGVmMzViNmQwZDgzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/3a175b2b-9418-40cc-95e7-a0129ece57a2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvM2ExNzViMmItOTQxOC00MGNjLTk1ZTctYTAxMjllY2U1N2EyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ec72619-eceb-4430-8bb1-d50f6c32a4b5" + "3e5c42ca-38d0-4b89-9aca-c9574e5af655" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -921,19 +921,19 @@ "11991" ], "x-ms-request-id": [ - "c518c28f-fb3d-4317-b30d-3b3cc8fe5db7" + "41f3541d-6b4b-4ef4-9d17-371f6dfe87c5" ], "x-ms-correlation-request-id": [ - "c518c28f-fb3d-4317-b30d-3b3cc8fe5db7" + "41f3541d-6b4b-4ef4-9d17-371f6dfe87c5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002957Z:c518c28f-fb3d-4317-b30d-3b3cc8fe5db7" + "JIOINDIACENTRAL:20220512T123050Z:41f3541d-6b4b-4ef4-9d17-371f6dfe87c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:29:57 GMT" + "Thu, 12 May 2022 12:30:49 GMT" ], "Content-Length": [ "22" @@ -946,22 +946,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bf9e34a-c0ad-4929-9fc8-2e6530630ef8" + "25a43ef3-32b6-4b18-82b0-948c2805e907" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -981,47 +981,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-request-id": [ - "c333102a-839c-47b8-adad-ad5ec337c546" + "7e1c311e-502b-44f0-a649-58995259534f" ], "x-ms-correlation-request-id": [ - "c333102a-839c-47b8-adad-ad5ec337c546" + "7e1c311e-502b-44f0-a649-58995259534f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002958Z:c333102a-839c-47b8-adad-ad5ec337c546" + "JIOINDIACENTRAL:20220512T123055Z:7e1c311e-502b-44f0-a649-58995259534f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:29:58 GMT" + "Thu, 12 May 2022 12:30:55 GMT" ], "Content-Length": [ - "5615" + "6327" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 5bf9e34a-c0ad-4929-9fc8-2e6530630ef8, Request URI: /apps/23c3f32c-598a-4f2f-a9c2-7242d1510eb4/services/88178e0a-621d-44b5-a867-b18888e22433/partitions/23bb1ab9-40cc-4672-8abe-6a9d82ba385c/replicas/132901689067842322s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-09T00:29:58.0793855Z, RequestEndTime: 2022-03-09T00:29:58.0793855Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:01.6792782Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.663,\\\\\\\"memory\\\\\\\":417707144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0111,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:11.7792835Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.141,\\\\\\\"memory\\\\\\\":418512976.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0144,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:21.7893070Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.071,\\\\\\\"memory\\\\\\\":419296984.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0152,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:31.7993382Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.903,\\\\\\\"memory\\\\\\\":419827376.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0197,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:41.8093498Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.429,\\\\\\\"memory\\\\\\\":420135596.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0099,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-09T00:29:51.8193884Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.723,\\\\\\\"memory\\\\\\\":420389164.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0117,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-09T00:29:58.0793855Z; ResponseTime: 2022-03-09T00:29:58.0793855Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/23c3f32c-598a-4f2f-a9c2-7242d1510eb4/services/88178e0a-621d-44b5-a867-b18888e22433/partitions/23bb1ab9-40cc-4672-8abe-6a9d82ba385c/replicas/132901689067842322s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.321, ActivityId: 5bf9e34a-c0ad-4929-9fc8-2e6530630ef8, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0793855Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0172},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0794027Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0794057Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2892},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0796949Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0136},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0817085Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2513},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0819598Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":490,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-09T00:29:58.0793855Z; ResponseTime: 2022-03-09T00:29:58.0793855Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/23c3f32c-598a-4f2f-a9c2-7242d1510eb4/services/88178e0a-621d-44b5-a867-b18888e22433/partitions/23bb1ab9-40cc-4672-8abe-6a9d82ba385c/replicas/132901689067842324s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.389, ActivityId: 5bf9e34a-c0ad-4929-9fc8-2e6530630ef8, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0793855Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0064},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0793919Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0793938Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1869},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0795807Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.2028},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0817835Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0514},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-09T00:29:58.0818349Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"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/TestDB1/colls/TestCollectionInDB1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 25a43ef3-32b6-4b18-82b0-948c2805e907, Request URI: /apps/6c57c1f6-3c0b-4bb1-b29e-89fe8262ed3d/services/3dd555bb-eae1-4c12-959f-ae734bf95d55/partitions/afad79da-a752-40e8-88f8-26913b003968/replicas/132965886052885670s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T12:30:55.6908027Z, RequestEndTime: 2022-05-12T12:30:55.6908027Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:29:57.3204754Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.360,\\\\\\\"memory\\\\\\\":480258368.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0239,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:30:07.3306477Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.372,\\\\\\\"memory\\\\\\\":479936696.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0106,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:30:17.3406052Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.516,\\\\\\\"memory\\\\\\\":479677672.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0137,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:30:27.3506902Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.095,\\\\\\\"memory\\\\\\\":481986892.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0119,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:30:37.3607512Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.615,\\\\\\\"memory\\\\\\\":481438384.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0181,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:30:47.3708046Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.617,\\\\\\\"memory\\\\\\\":480899088.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0209,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T12:30:55.6908027Z; ResponseTime: 2022-05-12T12:30:55.6908027Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/6c57c1f6-3c0b-4bb1-b29e-89fe8262ed3d/services/3dd555bb-eae1-4c12-959f-ae734bf95d55/partitions/afad79da-a752-40e8-88f8-26913b003968/replicas/132965886052885670s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.18, ActivityId: 25a43ef3-32b6-4b18-82b0-948c2805e907, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6908027Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0084},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6908111Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6908137Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2505},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6910642Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6752},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6927394Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1627},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6929021Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:30:55.5908120Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:30:55.5908120Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:30:55.6308733Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T12:30:55.6908027Z; ResponseTime: 2022-05-12T12:30:55.6908027Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/6c57c1f6-3c0b-4bb1-b29e-89fe8262ed3d/services/3dd555bb-eae1-4c12-959f-ae734bf95d55/partitions/afad79da-a752-40e8-88f8-26913b003968/replicas/132965886052885668s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.097, ActivityId: 25a43ef3-32b6-4b18-82b0-948c2805e907, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6908027Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0042},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6908069Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0177},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6908246Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1726},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6909972Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.7456},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6927428Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0598},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:30:55.6928026Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:30:55.4708107Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:30:55.4708107Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:30:55.5108722Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TestDB1/colls/TestCollectionInDB1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bf9e34a-c0ad-4929-9fc8-2e6530630ef8" + "25a43ef3-32b6-4b18-82b0-948c2805e907" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1041,22 +1041,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-request-id": [ - "a273a1b6-5796-42c4-aaa3-52715570aaf8" + "0e8985ab-4c17-44dc-84d8-f14a7f7631a6" ], "x-ms-correlation-request-id": [ - "a273a1b6-5796-42c4-aaa3-52715570aaf8" + "0e8985ab-4c17-44dc-84d8-f14a7f7631a6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003029Z:a273a1b6-5796-42c4-aaa3-52715570aaf8" + "JIOINDIACENTRAL:20220512T123131Z:0e8985ab-4c17-44dc-84d8-f14a7f7631a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:30:29 GMT" + "Thu, 12 May 2022 12:31:30 GMT" ], "Content-Length": [ "1224" @@ -1065,26 +1065,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"TestCollectionInDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"aMNDAIGw2EA=\",\r\n \"_ts\": 1646785808,\r\n \"_self\": \"dbs/aMNDAA==/colls/aMNDAIGw2EA=/\",\r\n \"_etag\": \"\\\"00005700-0000-0300-0000-6227f5100000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"1\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n },\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"TestCollectionInDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"pShZAOTdOr8=\",\r\n \"_ts\": 1652358668,\r\n \"_self\": \"dbs/pShZAA==/colls/pShZAOTdOr8=/\",\r\n \"_etag\": \"\\\"0000d505-0000-0300-0000-627cfe0c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n },\r\n {\r\n \"id\": \"1\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da0c5af2-36d9-444f-987f-e11ef8438878" + "1138420f-29dc-40f2-8b97-5c886f0f14a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1104,22 +1104,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-request-id": [ - "d3c6642e-8156-4ddd-a675-8ed3e76e4645" + "34e018fe-3772-4252-ae00-857f77345b0c" ], "x-ms-correlation-request-id": [ - "d3c6642e-8156-4ddd-a675-8ed3e76e4645" + "34e018fe-3772-4252-ae00-857f77345b0c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003030Z:d3c6642e-8156-4ddd-a675-8ed3e76e4645" + "JIOINDIACENTRAL:20220512T123137Z:34e018fe-3772-4252-ae00-857f77345b0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:30:30 GMT" + "Thu, 12 May 2022 12:31:36 GMT" ], "Content-Length": [ "1224" @@ -1128,26 +1128,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"TestCollectionInDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"aMNDAIGw2EA=\",\r\n \"_ts\": 1646785808,\r\n \"_self\": \"dbs/aMNDAA==/colls/aMNDAIGw2EA=/\",\r\n \"_etag\": \"\\\"00005700-0000-0300-0000-6227f5100000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"1\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n },\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"TestCollectionInDB1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"pShZAOTdOr8=\",\r\n \"_ts\": 1652358668,\r\n \"_self\": \"dbs/pShZAA==/colls/pShZAOTdOr8=/\",\r\n \"_etag\": \"\\\"0000d505-0000-0300-0000-627cfe0c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"1\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n },\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"TestCollectionInDB1\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 10000\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5bf9e34a-c0ad-4929-9fc8-2e6530630ef8" + "25a43ef3-32b6-4b18-82b0-948c2805e907" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1164,13 +1164,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/operationResults/50957b3a-c265-47e5-bf70-fc279ab6dbfb?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/operationResults/71720975-33d0-4d60-9c43-263d0d0c7d97?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/50957b3a-c265-47e5-bf70-fc279ab6dbfb?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/71720975-33d0-4d60-9c43-263d0d0c7d97?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "50957b3a-c265-47e5-bf70-fc279ab6dbfb" + "71720975-33d0-4d60-9c43-263d0d0c7d97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1185,16 +1185,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "0aa7a997-d601-418f-a859-3b15d78de133" + "1f526193-adae-407e-99a8-c4b31eb81387" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T002958Z:0aa7a997-d601-418f-a859-3b15d78de133" + "JIOINDIACENTRAL:20220512T123059Z:1f526193-adae-407e-99a8-c4b31eb81387" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:29:58 GMT" + "Thu, 12 May 2022 12:30:59 GMT" ], "Content-Length": [ "21" @@ -1207,19 +1207,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/50957b3a-c265-47e5-bf70-fc279ab6dbfb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTA5NTdiM2EtYzI2NS00N2U1LWJmNzAtZmMyNzlhYjZkYmZiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/71720975-33d0-4d60-9c43-263d0d0c7d97?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzE3MjA5NzUtMzNkMC00ZDYwLTljNDMtMjYzZDBkMGM3ZDk3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bf9e34a-c0ad-4929-9fc8-2e6530630ef8" + "25a43ef3-32b6-4b18-82b0-948c2805e907" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1239,22 +1239,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-request-id": [ - "a5f019c7-00ef-4cb3-9b34-96038e83b2b5" + "b3b79b6b-da53-4984-a9e5-e4d508fd0842" ], "x-ms-correlation-request-id": [ - "a5f019c7-00ef-4cb3-9b34-96038e83b2b5" + "b3b79b6b-da53-4984-a9e5-e4d508fd0842" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003029Z:a5f019c7-00ef-4cb3-9b34-96038e83b2b5" + "JIOINDIACENTRAL:20220512T123130Z:b3b79b6b-da53-4984-a9e5-e4d508fd0842" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:30:28 GMT" + "Thu, 12 May 2022 12:31:29 GMT" ], "Content-Length": [ "22" @@ -1267,22 +1267,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/retrieveContinuousBackupInformation?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxL3JldHJpZXZlQ29udGludW91c0JhY2t1cEluZm9ybWF0aW9uP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/retrieveContinuousBackupInformation?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxL3JldHJpZXZlQ29udGludW91c0JhY2t1cEluZm9ybWF0aW9uP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "da0c5af2-36d9-444f-987f-e11ef8438878" + "1138420f-29dc-40f2-8b97-5c886f0f14a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,10 +1299,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/b52ded9e-c3be-4639-a6a7-253d2f7eb6cd?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/9f2a769d-77b7-43e4-b1f7-59e118187842?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b52ded9e-c3be-4639-a6a7-253d2f7eb6cd" + "9f2a769d-77b7-43e4-b1f7-59e118187842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,16 +1317,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "2f77fea7-6280-4113-83fd-7d650e592a13" + "70a7acf5-623b-4329-8601-a5aa7a1ad7cd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003031Z:2f77fea7-6280-4113-83fd-7d650e592a13" + "JIOINDIACENTRAL:20220512T123138Z:70a7acf5-623b-4329-8601-a5aa7a1ad7cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:30:30 GMT" + "Thu, 12 May 2022 12:31:37 GMT" ], "Content-Length": [ "21" @@ -1339,19 +1339,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/b52ded9e-c3be-4639-a6a7-253d2f7eb6cd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxL3JldHJpZXZlQ29udGludW91c0JhY2t1cEluZm9ybWF0aW9uL29wZXJhdGlvblJlc3VsdHMvYjUyZGVkOWUtYzNiZS00NjM5LWE2YTctMjUzZDJmN2ViNmNkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/9f2a769d-77b7-43e4-b1f7-59e118187842?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxL3JldHJpZXZlQ29udGludW91c0JhY2t1cEluZm9ybWF0aW9uL29wZXJhdGlvblJlc3VsdHMvOWYyYTc2OWQtNzdiNy00M2U0LWIxZjctNTllMTE4MTg3ODQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da0c5af2-36d9-444f-987f-e11ef8438878" + "1138420f-29dc-40f2-8b97-5c886f0f14a0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1371,47 +1371,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11991" ], "x-ms-request-id": [ - "5a9273a8-44b5-450d-819a-70edcd4ccb3f" + "ad950ce0-c6f7-46e6-a294-59a9a751edf9" ], "x-ms-correlation-request-id": [ - "5a9273a8-44b5-450d-819a-70edcd4ccb3f" + "ad950ce0-c6f7-46e6-a294-59a9a751edf9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003101Z:5a9273a8-44b5-450d-819a-70edcd4ccb3f" + "JIOINDIACENTRAL:20220512T123209Z:ad950ce0-c6f7-46e6-a294-59a9a751edf9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:31:01 GMT" + "Thu, 12 May 2022 12:32:09 GMT" ], "Content-Length": [ - "84" + "85" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"continuousBackupInformation\": {\r\n \"latestRestorableTimestamp\": \"3/9/2022 12:30:36 AM\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"continuousBackupInformation\": {\r\n \"latestRestorableTimestamp\": \"5/12/2022 12:31:44 PM\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/b52ded9e-c3be-4639-a6a7-253d2f7eb6cd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxL3JldHJpZXZlQ29udGludW91c0JhY2t1cEluZm9ybWF0aW9uL29wZXJhdGlvblJlc3VsdHMvYjUyZGVkOWUtYzNiZS00NjM5LWE2YTctMjUzZDJmN2ViNmNkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup14/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1214/sqlDatabases/TestDB1/containers/TestCollectionInDB1/retrieveContinuousBackupInformation/operationResults/9f2a769d-77b7-43e4-b1f7-59e118187842?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMTQvc3FsRGF0YWJhc2VzL1Rlc3REQjEvY29udGFpbmVycy9UZXN0Q29sbGVjdGlvbkluREIxL3JldHJpZXZlQ29udGludW91c0JhY2t1cEluZm9ybWF0aW9uL29wZXJhdGlvblJlc3VsdHMvOWYyYTc2OWQtNzdiNy00M2U0LWIxZjctNTllMTE4MTg3ODQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da0c5af2-36d9-444f-987f-e11ef8438878" + "1138420f-29dc-40f2-8b97-5c886f0f14a0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1431,31 +1431,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11990" ], "x-ms-request-id": [ - "7371e5a8-8c2a-4fea-b5bc-7a1e6c4c7f05" + "ec47c7a5-52b0-4ca9-a51f-721ea5230bea" ], "x-ms-correlation-request-id": [ - "7371e5a8-8c2a-4fea-b5bc-7a1e6c4c7f05" + "ec47c7a5-52b0-4ca9-a51f-721ea5230bea" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220309T003102Z:7371e5a8-8c2a-4fea-b5bc-7a1e6c4c7f05" + "JIOINDIACENTRAL:20220512T123210Z:ec47c7a5-52b0-4ca9-a51f-721ea5230bea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Mar 2022 00:31:02 GMT" + "Thu, 12 May 2022 12:32:09 GMT" ], "Content-Length": [ - "84" + "85" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"continuousBackupInformation\": {\r\n \"latestRestorableTimestamp\": \"3/9/2022 12:30:36 AM\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"continuousBackupInformation\": {\r\n \"latestRestorableTimestamp\": \"5/12/2022 12:31:44 PM\"\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestUpdateCosmosDBAccountBackupPolicyCmdLet.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestUpdateCosmosDBAccountBackupPolicyCmdLet.json index 18b18ce8d234..8a353f829ec3 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestUpdateCosmosDBAccountBackupPolicyCmdLet.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.RestoreTests/TestUpdateCosmosDBAccountBackupPolicyCmdLet.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7dea6caf-af08-4a46-bee5-914da1c20771" + "b4aed098-9927-4c08-bd6b-4be592d800cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "4dfedb25-980b-42d8-8824-609451dbec82" + "ed82ab80-6685-47a9-b006-f40ef4bb4d92" ], "x-ms-correlation-request-id": [ - "4dfedb25-980b-42d8-8824-609451dbec82" + "ed82ab80-6685-47a9-b006-f40ef4bb4d92" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161609Z:4dfedb25-980b-42d8-8824-609451dbec82" + "CENTRALINDIA:20220512T114515Z:ed82ab80-6685-47a9-b006-f40ef4bb4d92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:16:08 GMT" + "Thu, 12 May 2022 11:45:15 GMT" ], "Content-Length": [ "202" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76c83717-fdd1-4541-9ca3-467205e5ca40" + "dcab0a1d-7f19-4ac5-8644-d803c8f57a3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "319c1a2e-43e4-4acf-b8fc-0c90824d2cce" + "d342bb85-944f-465b-a766-522475f18c95" ], "x-ms-correlation-request-id": [ - "319c1a2e-43e4-4acf-b8fc-0c90824d2cce" + "d342bb85-944f-465b-a766-522475f18c95" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161611Z:319c1a2e-43e4-4acf-b8fc-0c90824d2cce" + "CENTRALINDIA:20220512T114515Z:d342bb85-944f-465b-a766-522475f18c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:16:11 GMT" + "Thu, 12 May 2022 11:45:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76c83717-fdd1-4541-9ca3-467205e5ca40" + "dcab0a1d-7f19-4ac5-8644-d803c8f57a3f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -162,47 +162,47 @@ "11994" ], "x-ms-request-id": [ - "5fd46a60-4750-435f-aa4a-d039e80f28c0" + "197c69de-37ab-46a6-b986-9b8b700eb8c4" ], "x-ms-correlation-request-id": [ - "5fd46a60-4750-435f-aa4a-d039e80f28c0" + "197c69de-37ab-46a6-b986-9b8b700eb8c4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161828Z:5fd46a60-4750-435f-aa4a-d039e80f28c0" + "CENTRALINDIA:20220512T114732Z:197c69de-37ab-46a6-b986-9b8b700eb8c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:18:28 GMT" + "Thu, 12 May 2022 11:47:31 GMT" ], "Content-Length": [ - "2364" + "2363" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:17:55.2067895Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"91f45b3f-5598-40ba-a1eb-818d56bb9bf1\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:46:50.817332Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c7f62fd3-efd6-4ca3-a4e4-b536680c47e5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cf53a42-295f-49d4-a96a-61b47f7720a4" + "ed299d83-49db-43d5-a40e-f22a42925831" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,47 +222,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "50dcfad9-4240-4126-a76b-c0e2bd401fa2" + "4bd6142d-64b1-454f-bc85-c787991c6db5" ], "x-ms-correlation-request-id": [ - "50dcfad9-4240-4126-a76b-c0e2bd401fa2" + "4bd6142d-64b1-454f-bc85-c787991c6db5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161828Z:50dcfad9-4240-4126-a76b-c0e2bd401fa2" + "CENTRALINDIA:20220512T114734Z:4bd6142d-64b1-454f-bc85-c787991c6db5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:18:28 GMT" + "Thu, 12 May 2022 11:47:34 GMT" ], "Content-Length": [ - "2364" + "2363" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:17:55.2067895Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"91f45b3f-5598-40ba-a1eb-818d56bb9bf1\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:46:50.817332Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c7f62fd3-efd6-4ca3-a4e4-b536680c47e5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cf53a42-295f-49d4-a96a-61b47f7720a4" + "ed299d83-49db-43d5-a40e-f22a42925831" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -282,50 +282,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "6e8e5850-c5d1-49c8-842d-87464283954a" + "150813ec-d9d6-48d9-b908-8f9a5e6c2933" ], "x-ms-correlation-request-id": [ - "6e8e5850-c5d1-49c8-842d-87464283954a" + "150813ec-d9d6-48d9-b908-8f9a5e6c2933" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161834Z:6e8e5850-c5d1-49c8-842d-87464283954a" + "CENTRALINDIA:20220512T114741Z:150813ec-d9d6-48d9-b908-8f9a5e6c2933" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:18:34 GMT" + "Thu, 12 May 2022 11:47:40 GMT" ], "Content-Length": [ - "2364" + "2363" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:17:55.2067895Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"91f45b3f-5598-40ba-a1eb-818d56bb9bf1\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:46:50.817332Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c7f62fd3-efd6-4ca3-a4e4-b536680c47e5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88110f52-d190-482a-bd4b-22da5f9b17c0" + "58efed75-9acf-4ff9-adf8-302280c0ec61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -345,50 +345,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-request-id": [ - "7a8a1ac1-4df4-4060-bc70-7e8b41b2057a" + "732be39d-1701-45f7-b428-0fa0f24ca954" ], "x-ms-correlation-request-id": [ - "7a8a1ac1-4df4-4060-bc70-7e8b41b2057a" + "732be39d-1701-45f7-b428-0fa0f24ca954" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161925Z:7a8a1ac1-4df4-4060-bc70-7e8b41b2057a" + "CENTRALINDIA:20220512T114832Z:732be39d-1701-45f7-b428-0fa0f24ca954" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:19:24 GMT" + "Thu, 12 May 2022 11:48:31 GMT" ], "Content-Length": [ - "2485" + "2493" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:17:55.2067895Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"91f45b3f-5598-40ba-a1eb-818d56bb9bf1\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n },\r\n \"migrationState\": {\r\n \"status\": \"InProgress\",\r\n \"targetType\": \"Continuous\",\r\n \"targetSku\": \"Standard\",\r\n \"startTime\": \"2022-03-08T16:18:29Z\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:46:50.817332Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c7f62fd3-efd6-4ca3-a4e4-b536680c47e5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n },\r\n \"migrationState\": {\r\n \"status\": \"InProgress\",\r\n \"targetType\": \"Continuous\",\r\n \"targetTier\": \"Continuous30Days\",\r\n \"startTime\": \"2022-05-12T11:47:36Z\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "76c83717-fdd1-4541-9ca3-467205e5ca40" + "dcab0a1d-7f19-4ac5-8644-d803c8f57a3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -405,13 +405,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220/operationResults/5861f031-8ab5-4a07-abae-1cc555796a9f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220/operationResults/922f631c-34fd-4769-aab7-b36f11eac148?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "5861f031-8ab5-4a07-abae-1cc555796a9f" + "922f631c-34fd-4769-aab7-b36f11eac148" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/5861f031-8ab5-4a07-abae-1cc555796a9f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/922f631c-34fd-4769-aab7-b36f11eac148?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,16 +426,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "dc34babb-034c-44ac-a802-fa31a6364b2a" + "5c509823-33f5-44da-a54d-91d35566d662" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161627Z:dc34babb-034c-44ac-a802-fa31a6364b2a" + "CENTRALINDIA:20220512T114530Z:5c509823-33f5-44da-a54d-91d35566d662" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:16:26 GMT" + "Thu, 12 May 2022 11:45:30 GMT" ], "Content-Length": [ "2044" @@ -444,23 +444,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:16:23.4885309Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"91f45b3f-5598-40ba-a1eb-818d56bb9bf1\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:45:27.3082535Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c7f62fd3-efd6-4ca3-a4e4-b536680c47e5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/5861f031-8ab5-4a07-abae-1cc555796a9f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTg2MWYwMzEtOGFiNS00YTA3LWFiYWUtMWNjNTU1Nzk2YTlmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/922f631c-34fd-4769-aab7-b36f11eac148?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTIyZjYzMWMtMzRmZC00NzY5LWFhYjctYjM2ZjExZWFjMTQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76c83717-fdd1-4541-9ca3-467205e5ca40" + "dcab0a1d-7f19-4ac5-8644-d803c8f57a3f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -483,19 +483,19 @@ "11998" ], "x-ms-request-id": [ - "72948b8d-1325-481f-bd12-3ad50b2b5165" + "8362bb01-5923-44dd-a1f4-5802dfde0547" ], "x-ms-correlation-request-id": [ - "72948b8d-1325-481f-bd12-3ad50b2b5165" + "8362bb01-5923-44dd-a1f4-5802dfde0547" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161657Z:72948b8d-1325-481f-bd12-3ad50b2b5165" + "CENTRALINDIA:20220512T114601Z:8362bb01-5923-44dd-a1f4-5802dfde0547" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:16:57 GMT" + "Thu, 12 May 2022 11:46:00 GMT" ], "Content-Length": [ "21" @@ -508,19 +508,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/5861f031-8ab5-4a07-abae-1cc555796a9f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTg2MWYwMzEtOGFiNS00YTA3LWFiYWUtMWNjNTU1Nzk2YTlmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/922f631c-34fd-4769-aab7-b36f11eac148?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTIyZjYzMWMtMzRmZC00NzY5LWFhYjctYjM2ZjExZWFjMTQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76c83717-fdd1-4541-9ca3-467205e5ca40" + "dcab0a1d-7f19-4ac5-8644-d803c8f57a3f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -543,19 +543,19 @@ "11997" ], "x-ms-request-id": [ - "fd9ed44e-a57d-45e9-9e0c-fda51664a082" + "2c0e9a34-f154-4743-a54b-01215a9f9f0f" ], "x-ms-correlation-request-id": [ - "fd9ed44e-a57d-45e9-9e0c-fda51664a082" + "2c0e9a34-f154-4743-a54b-01215a9f9f0f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161727Z:fd9ed44e-a57d-45e9-9e0c-fda51664a082" + "CENTRALINDIA:20220512T114631Z:2c0e9a34-f154-4743-a54b-01215a9f9f0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:17:27 GMT" + "Thu, 12 May 2022 11:46:30 GMT" ], "Content-Length": [ "21" @@ -568,19 +568,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/5861f031-8ab5-4a07-abae-1cc555796a9f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTg2MWYwMzEtOGFiNS00YTA3LWFiYWUtMWNjNTU1Nzk2YTlmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/922f631c-34fd-4769-aab7-b36f11eac148?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTIyZjYzMWMtMzRmZC00NzY5LWFhYjctYjM2ZjExZWFjMTQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76c83717-fdd1-4541-9ca3-467205e5ca40" + "dcab0a1d-7f19-4ac5-8644-d803c8f57a3f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -603,19 +603,19 @@ "11996" ], "x-ms-request-id": [ - "0bcf0f1e-ce03-4eed-ba11-0dac7fd70d43" + "5c0a57ae-161d-4b43-9183-aa9be6b82914" ], "x-ms-correlation-request-id": [ - "0bcf0f1e-ce03-4eed-ba11-0dac7fd70d43" + "5c0a57ae-161d-4b43-9183-aa9be6b82914" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161757Z:0bcf0f1e-ce03-4eed-ba11-0dac7fd70d43" + "CENTRALINDIA:20220512T114701Z:5c0a57ae-161d-4b43-9183-aa9be6b82914" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:17:57 GMT" + "Thu, 12 May 2022 11:47:01 GMT" ], "Content-Length": [ "21" @@ -628,19 +628,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/5861f031-8ab5-4a07-abae-1cc555796a9f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNTg2MWYwMzEtOGFiNS00YTA3LWFiYWUtMWNjNTU1Nzk2YTlmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/922f631c-34fd-4769-aab7-b36f11eac148?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOTIyZjYzMWMtMzRmZC00NzY5LWFhYjctYjM2ZjExZWFjMTQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76c83717-fdd1-4541-9ca3-467205e5ca40" + "dcab0a1d-7f19-4ac5-8644-d803c8f57a3f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -663,19 +663,19 @@ "11995" ], "x-ms-request-id": [ - "afb6d26b-c5a4-47b0-b2f9-735b88ac6f22" + "b66bb246-92b4-430f-b961-7d9e663a6ec9" ], "x-ms-correlation-request-id": [ - "afb6d26b-c5a4-47b0-b2f9-735b88ac6f22" + "b66bb246-92b4-430f-b961-7d9e663a6ec9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161828Z:afb6d26b-c5a4-47b0-b2f9-735b88ac6f22" + "CENTRALINDIA:20220512T114732Z:b66bb246-92b4-430f-b961-7d9e663a6ec9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:18:28 GMT" + "Thu, 12 May 2022 11:47:31 GMT" ], "Content-Length": [ "22" @@ -688,22 +688,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiLTEyMjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6cf53a42-295f-49d4-a96a-61b47f7720a4" + "ed299d83-49db-43d5-a40e-f22a42925831" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,13 +720,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220/operationResults/c231f1e3-6c32-4d6f-86b6-ce1f1e73862f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220/operationResults/b630620a-c63b-44cc-9b86-2cebb6ea6eb6?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c231f1e3-6c32-4d6f-86b6-ce1f1e73862f" + "b630620a-c63b-44cc-9b86-2cebb6ea6eb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/c231f1e3-6c32-4d6f-86b6-ce1f1e73862f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/centralus/operationsStatus/b630620a-c63b-44cc-9b86-2cebb6ea6eb6?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,28 +738,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "9817df76-b0a6-414b-9ec6-fcbc7db55592" + "cbf4ce26-1258-487f-aa86-1175c1ebe374" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T161834Z:9817df76-b0a6-414b-9ec6-fcbc7db55592" + "CENTRALINDIA:20220512T114740Z:cbf4ce26-1258-487f-aa86-1175c1ebe374" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 16:18:33 GMT" + "Thu, 12 May 2022 11:47:39 GMT" ], "Content-Length": [ - "2364" + "2363" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T16:17:55.2067895Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"91f45b3f-5598-40ba-a1eb-818d56bb9bf1\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup20/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb-1220\",\r\n \"name\": \"cosmosdb-1220\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:46:50.817332Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c7f62fd3-efd6-4ca3-a4e4-b536680c47e5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb-1220-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb-1220-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestClientEncryptionKeyCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestClientEncryptionKeyCmdlets.json new file mode 100644 index 000000000000..639d87b8bae6 --- /dev/null +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestClientEncryptionKeyCmdlets.json @@ -0,0 +1,2778 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourcegroups/CosmosDBClientEncryptionRg60-14?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bdca7786-4729-49f3-a4f0-54869994c859" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a258f470-1895-4f20-abe1-30813b343f4e" + ], + "x-ms-correlation-request-id": [ + "a258f470-1895-4f20-abe1-30813b343f4e" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T073801Z:a258f470-1895-4f20-abe1-30813b343f4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:38:01 GMT" + ], + "Content-Length": [ + "215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14\",\r\n \"name\": \"CosmosDBClientEncryptionRg60-14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY2xpZW50ZW5jcnlwdGlvbmRiYWNjb3VudDYwMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8dc613-4c9a-400f-bde3-b9dd61818f73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "01c9f5bb-48b7-4614-bda9-74544bf05be6" + ], + "x-ms-correlation-request-id": [ + "01c9f5bb-48b7-4614-bda9-74544bf05be6" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T073803Z:01c9f5bb-48b7-4614-bda9-74544bf05be6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:38:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "270" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014' under resource group 'CosmosDBClientEncryptionRg60-14' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY2xpZW50ZW5jcnlwdGlvbmRiYWNjb3VudDYwMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8dc613-4c9a-400f-bde3-b9dd61818f73" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "0b21a0ca-bc24-4746-b16c-e853ffd4348b" + ], + "x-ms-correlation-request-id": [ + "0b21a0ca-bc24-4746-b16c-e853ffd4348b" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074016Z:0b21a0ca-bc24-4746-b16c-e853ffd4348b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:40:16 GMT" + ], + "Content-Length": [ + "2505" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014\",\r\n \"name\": \"clientencryptiondbaccount6014\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T07:39:23.5332451Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://clientencryptiondbaccount6014.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a99210ac-73c3-4584-aa04-328bf248ad23\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"clientencryptiondbaccount6014-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://clientencryptiondbaccount6014-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"clientencryptiondbaccount6014-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://clientencryptiondbaccount6014-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"clientencryptiondbaccount6014-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://clientencryptiondbaccount6014-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"clientencryptiondbaccount6014-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY2xpZW50ZW5jcnlwdGlvbmRiYWNjb3VudDYwMTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8dc613-4c9a-400f-bde3-b9dd61818f73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "600" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014/operationResults/6cba5f99-fa95-481f-bdc1-49d0d89de17b?api-version=2022-02-15-preview" + ], + "x-ms-request-id": [ + "6cba5f99-fa95-481f-bdc1-49d0d89de17b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6cba5f99-fa95-481f-bdc1-49d0d89de17b?api-version=2022-02-15-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3bc376d6-38cd-4e26-92a8-8f586c914216" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T073813Z:3bc376d6-38cd-4e26-92a8-8f586c914216" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:38:13 GMT" + ], + "Content-Length": [ + "2130" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014\",\r\n \"name\": \"clientencryptiondbaccount6014\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T07:38:11.0833175Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a99210ac-73c3-4584-aa04-328bf248ad23\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"clientencryptiondbaccount6014-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"clientencryptiondbaccount6014-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"clientencryptiondbaccount6014-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"clientencryptiondbaccount6014-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6cba5f99-fa95-481f-bdc1-49d0d89de17b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmNiYTVmOTktZmE5NS00ODFmLWJkYzEtNDlkMGQ4OWRlMTdiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8dc613-4c9a-400f-bde3-b9dd61818f73" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "009d637b-ab32-4f3a-8239-25d5987d8cda" + ], + "x-ms-correlation-request-id": [ + "009d637b-ab32-4f3a-8239-25d5987d8cda" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T073844Z:009d637b-ab32-4f3a-8239-25d5987d8cda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:38:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6cba5f99-fa95-481f-bdc1-49d0d89de17b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmNiYTVmOTktZmE5NS00ODFmLWJkYzEtNDlkMGQ4OWRlMTdiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8dc613-4c9a-400f-bde3-b9dd61818f73" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "f37346db-cc46-473b-aef3-786103a720b4" + ], + "x-ms-correlation-request-id": [ + "f37346db-cc46-473b-aef3-786103a720b4" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T073915Z:f37346db-cc46-473b-aef3-786103a720b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:39:14 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6cba5f99-fa95-481f-bdc1-49d0d89de17b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmNiYTVmOTktZmE5NS00ODFmLWJkYzEtNDlkMGQ4OWRlMTdiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8dc613-4c9a-400f-bde3-b9dd61818f73" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "af1ebf47-427d-4db6-82cc-cc4524182db6" + ], + "x-ms-correlation-request-id": [ + "af1ebf47-427d-4db6-82cc-cc4524182db6" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T073945Z:af1ebf47-427d-4db6-82cc-cc4524182db6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:39:45 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6cba5f99-fa95-481f-bdc1-49d0d89de17b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmNiYTVmOTktZmE5NS00ODFmLWJkYzEtNDlkMGQ4OWRlMTdiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8dc613-4c9a-400f-bde3-b9dd61818f73" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "a9bf5f67-4464-4210-b96b-7013e9d5b911" + ], + "x-ms-correlation-request-id": [ + "a9bf5f67-4464-4210-b96b-7013e9d5b911" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074016Z:a9bf5f67-4464-4210-b96b-7013e9d5b911" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:40:16 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/East%20US/deletedVaults/CosmosDBAeAkv60/purge?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUy9kZWxldGVkVmF1bHRzL0Nvc21vc0RCQWVBa3Y2MC9wdXJnZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "4c8da1a2-b03e-4ec0-a3a7-581218f7c707" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b114825b-4c9c-470b-bfbc-bc2e955ec2da" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074019Z:b114825b-4c9c-470b-bfbc-bc2e955ec2da" + ], + "Date": [ + "Thu, 12 May 2022 07:40:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/East%20US/deletedVaults/CosmosDBAeAkv60/purge?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUy9kZWxldGVkVmF1bHRzL0Nvc21vc0RCQWVBa3Y2MC9wdXJnZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "9ce059d9-d3ed-4f31-a8b0-fa99b45b384a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2697ebe0-ac62-4ded-a289-97f0f014ecb8" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074231Z:2697ebe0-ac62-4ded-a289-97f0f014ecb8" + ], + "Date": [ + "Thu, 12 May 2022 07:42:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNREl3TVRneE1UTTRPSHhHTmtJMU56SkNOMEl5UXprMFJVWTJPREpETlRSRlFUUTFRalF3UmprNFFnP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "c21d9699-7859-4a4b-8bee-64b1f2964774" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d1384f0b-639b-494b-a9f4-4d42b1175e45" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074024Z:d1384f0b-639b-494b-a9f4-4d42b1175e45" + ], + "Date": [ + "Thu, 12 May 2022 07:40:23 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:40:19Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNREl3TVRneE1UTTRPSHhHTmtJMU56SkNOMEl5UXprMFJVWTJPREpETlRSRlFUUTFRalF3UmprNFFnP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "b619a01a-0dfe-46d2-b32e-2e12d1629095" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "3af96c40-f9ee-4d72-b8a8-3244463c034d" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074030Z:3af96c40-f9ee-4d72-b8a8-3244463c034d" + ], + "Date": [ + "Thu, 12 May 2022 07:40:29 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:40:19Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNREl3TVRneE1UTTRPSHhHTmtJMU56SkNOMEl5UXprMFJVWTJPREpETlRSRlFUUTFRalF3UmprNFFnP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "add904a4-469e-4d30-b17a-c2c9416410c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "65ec2ef1-4c32-4d1f-8843-1212a77ebdde" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074035Z:65ec2ef1-4c32-4d1f-8843-1212a77ebdde" + ], + "Date": [ + "Thu, 12 May 2022 07:40:34 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:40:19Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNREl3TVRneE1UTTRPSHhHTmtJMU56SkNOMEl5UXprMFJVWTJPREpETlRSRlFUUTFRalF3UmprNFFnP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "72dc03b5-d8ef-4f9a-9e11-af79494cce38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "0ae0e41c-9b43-41d4-ab57-f4b490c5ad39" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074040Z:0ae0e41c-9b43-41d4-ab57-f4b490c5ad39" + ], + "Date": [ + "Thu, 12 May 2022 07:40:39 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:40:19Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNREl3TVRneE1UTTRPSHhHTmtJMU56SkNOMEl5UXprMFJVWTJPREpETlRSRlFUUTFRalF3UmprNFFnP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "2156e16e-c491-4dd3-be66-678eb44ef116" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "71fb4a7e-9739-4a72-be0a-f510bbbd8397" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074045Z:71fb4a7e-9739-4a72-be0a-f510bbbd8397" + ], + "Date": [ + "Thu, 12 May 2022 07:40:45 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:40:19Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNREl3TVRneE1UTTRPSHhHTmtJMU56SkNOMEl5UXprMFJVWTJPREpETlRSRlFUUTFRalF3UmprNFFnP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "4266e136-24fa-4d33-8a00-855c7535c844" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "0b54fe1c-9a34-41d2-86a1-d6c6f54a3ca5" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074051Z:0b54fe1c-9a34-41d2-86a1-d6c6f54a3ca5" + ], + "Date": [ + "Thu, 12 May 2022 07:40:50 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:40:19Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNREl3TVRneE1UTTRPSHhHTmtJMU56SkNOMEl5UXprMFJVWTJPREpETlRSRlFUUTFRalF3UmprNFFnP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "97b66c60-0409-442a-9cbe-37568b0b786f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "6d643e65-98b3-4e0a-8058-800921a1d95a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074056Z:6d643e65-98b3-4e0a-8058-800921a1d95a" + ], + "Date": [ + "Thu, 12 May 2022 07:40:55 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:40:19Z\",\r\n \"lastActionDateTime\": \"2022-05-12 07:40:54Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MDIwMTgxMTM4OHxGNkI1NzJCN0IyQzk0RUY2ODJDNTRFQTQ1QjQwRjk4Qg?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNREl3TVRneE1UTTRPSHhHTmtJMU56SkNOMEl5UXprMFJVWTJPREpETlRSRlFUUTFRalF3UmprNFFnP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "b69fef42-723f-49b0-8d62-7a7f4fadc7ea" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "260283dd-b9c7-4f1f-a326-08d2bf816ddf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "b0fb1ffa-b57e-46c0-a3cc-feee605f40e4" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074056Z:b0fb1ffa-b57e-46c0-a3cc-feee605f40e4" + ], + "Date": [ + "Thu, 12 May 2022 07:40:56 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:40:19Z\",\r\n \"lastActionDateTime\": \"2022-05-12 07:40:54Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a353de91-41d9-4684-abe5-f8f9553c1697" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "db49a200-8f2d-40c9-95d4-452efdbce63d" + ], + "x-ms-correlation-request-id": [ + "db49a200-8f2d-40c9-95d4-452efdbce63d" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074056Z:db49a200-8f2d-40c9-95d4-452efdbce63d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:40:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20aba468-d1be-4e9c-8f3d-a78807f1caa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "7164c740-a984-45e7-afeb-57eaa4aef97f" + ], + "x-ms-correlation-request-id": [ + "7164c740-a984-45e7-afeb-57eaa4aef97f" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074142Z:7164c740-a984-45e7-afeb-57eaa4aef97f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:41:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "261" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60\",\r\n \"name\": \"CosmosDBAeAkv60\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1.0/me", + "EncodedRequestUri": "L3YxLjAvbWU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a353de91-41d9-4684-abe5-f8f9553c1697" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Commands.Common.MSGraph.Version1.0.MicrosoftGraphClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0750db3e-a562-4f6f-bf91-b367cfd62c4e" + ], + "x-ms-correlation-request-id": [ + "0750db3e-a562-4f6f-bf91-b367cfd62c4e" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074057Z:0750db3e-a562-4f6f-bf91-b367cfd62c4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:40:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "137" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"MissingApiVersionParameter\",\r\n \"message\": \"The api-version query parameter (?api-version=) is required for all requests.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvQ29zbW9zREJBZUFrdjYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a353de91-41d9-4684-abe5-f8f9553c1697" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "521" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "a353de91-41d9-4684-abe5-f8f9553c1697" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "6d077d37-a01b-44bb-9e84-42f877ed9806" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "013171be-260a-4b66-b736-947e6db0836e" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074112Z:013171be-260a-4b66-b736-947e6db0836e" + ], + "Date": [ + "Thu, 12 May 2022 07:41:12 GMT" + ], + "Content-Length": [ + "950" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60\",\r\n \"name\": \"CosmosDBAeAkv60\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"12cf6822-3980-4ea6-855d-d4df52cfa39f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-05-12T07:41:08.69Z\",\r\n \"lastModifiedBy\": \"12cf6822-3980-4ea6-855d-d4df52cfa39f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-05-12T07:41:08.69Z\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://CosmosDBAeAkv60.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvQ29zbW9zREJBZUFrdjYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"2074c615-9df8-454e-bd1a-740480f3ddda\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\",\r\n \"sign\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": [],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://cosmosdbaeakv60.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20aba468-d1be-4e9c-8f3d-a78807f1caa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1154" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "20aba468-d1be-4e9c-8f3d-a78807f1caa5" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "203121b4-0414-4eef-9dd1-8bc899f04b24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d9a2d363-b7dc-4827-8415-fea748c707ff" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074146Z:d9a2d363-b7dc-4827-8415-fea748c707ff" + ], + "Date": [ + "Thu, 12 May 2022 07:41:46 GMT" + ], + "Content-Length": [ + "1160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60\",\r\n \"name\": \"CosmosDBAeAkv60\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"12cf6822-3980-4ea6-855d-d4df52cfa39f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-05-12T07:41:08.69Z\",\r\n \"lastModifiedBy\": \"12cf6822-3980-4ea6-855d-d4df52cfa39f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-05-12T07:41:46.22Z\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"2074c615-9df8-454e-bd1a-740480f3ddda\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\",\r\n \"sign\"\r\n ],\r\n \"secrets\": [],\r\n \"certificates\": [],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://cosmosdbaeakv60.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvQ29zbW9zREJBZUFrdjYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a353de91-41d9-4684-abe5-f8f9553c1697" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "a353de91-41d9-4684-abe5-f8f9553c1697" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "34acbc4b-1a2f-4818-8f6b-677b9f93a479" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d78e274e-d706-4ef8-a31f-427ede3476cb" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074142Z:d78e274e-d706-4ef8-a31f-427ede3476cb" + ], + "Date": [ + "Thu, 12 May 2022 07:41:41 GMT" + ], + "Content-Length": [ + "946" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60\",\r\n \"name\": \"CosmosDBAeAkv60\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"12cf6822-3980-4ea6-855d-d4df52cfa39f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-05-12T07:41:08.69Z\",\r\n \"lastModifiedBy\": \"12cf6822-3980-4ea6-855d-d4df52cfa39f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-05-12T07:41:08.69Z\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://cosmosdbaeakv60.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvQ29zbW9zREJBZUFrdjYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20aba468-d1be-4e9c-8f3d-a78807f1caa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "20aba468-d1be-4e9c-8f3d-a78807f1caa5" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "53725981-5a29-41e1-a426-f9cd27ca70a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5ad1bbea-1f59-4a55-8972-4a78b0da44d2" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074145Z:5ad1bbea-1f59-4a55-8972-4a78b0da44d2" + ], + "Date": [ + "Thu, 12 May 2022 07:41:45 GMT" + ], + "Content-Length": [ + "946" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60\",\r\n \"name\": \"CosmosDBAeAkv60\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdBy\": \"12cf6822-3980-4ea6-855d-d4df52cfa39f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-05-12T07:41:08.69Z\",\r\n \"lastModifiedBy\": \"12cf6822-3980-4ea6-855d-d4df52cfa39f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-05-12T07:41:08.69Z\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://cosmosdbaeakv60.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/v1.0/directoryObjects/2074c615-9df8-454e-bd1a-740480f3ddda", + "EncodedRequestUri": "L3YxLjAvZGlyZWN0b3J5T2JqZWN0cy8yMDc0YzYxNS05ZGY4LTQ1NGUtYmQxYS03NDA0ODBmM2RkZGE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20aba468-d1be-4e9c-8f3d-a78807f1caa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Commands.Common.MSGraph.Version1.0.MicrosoftGraphClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b131439a-57c9-4a95-bdff-180d9ca56921" + ], + "x-ms-correlation-request-id": [ + "b131439a-57c9-4a95-bdff-180d9ca56921" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074146Z:b131439a-57c9-4a95-bdff-180d9ca56921" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:41:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "137" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"MissingApiVersionParameter\",\r\n \"message\": \"The api-version query parameter (?api-version=) is required for all requests.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014/sqlDatabases/dbNameCdbAE?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY2xpZW50ZW5jcnlwdGlvbmRiYWNjb3VudDYwMTQvc3FsRGF0YWJhc2VzL2RiTmFtZUNkYkFFP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f42d14e0-ab89-425a-917a-94d6814d8c73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014/sqlDatabases/dbNameCdbAE/operationResults/16c13910-c1ec-43fb-bf4b-b948fcc455f4?api-version=2022-02-15-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/16c13910-c1ec-43fb-bf4b-b948fcc455f4?api-version=2022-02-15-preview" + ], + "x-ms-request-id": [ + "16c13910-c1ec-43fb-bf4b-b948fcc455f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "f6f661bf-1c6e-42cd-8c92-16d563a7da11" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074149Z:f6f661bf-1c6e-42cd-8c92-16d563a7da11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:41:49 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/16c13910-c1ec-43fb-bf4b-b948fcc455f4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTZjMTM5MTAtYzFlYy00M2ZiLWJmNGItYjk0OGZjYzQ1NWY0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f42d14e0-ab89-425a-917a-94d6814d8c73" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ea6a7a97-818a-483c-a09e-a5979085616d" + ], + "x-ms-correlation-request-id": [ + "ea6a7a97-818a-483c-a09e-a5979085616d" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074220Z:ea6a7a97-818a-483c-a09e-a5979085616d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:42:19 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.DocumentDB/databaseAccounts/clientencryptiondbaccount6014/sqlDatabases/dbNameCdbAE/operationResults/16c13910-c1ec-43fb-bf4b-b948fcc455f4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY2xpZW50ZW5jcnlwdGlvbmRiYWNjb3VudDYwMTQvc3FsRGF0YWJhc2VzL2RiTmFtZUNkYkFFL29wZXJhdGlvblJlc3VsdHMvMTZjMTM5MTAtYzFlYy00M2ZiLWJmNGItYjk0OGZjYzQ1NWY0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f42d14e0-ab89-425a-917a-94d6814d8c73" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "e4689306-c85c-45c8-b906-2554e7545746" + ], + "x-ms-correlation-request-id": [ + "e4689306-c85c-45c8-b906-2554e7545746" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20220512T074220Z:e4689306-c85c-45c8-b906-2554e7545746" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 12 May 2022 07:42:20 GMT" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBClientEncryptionRg60-14/providers/Microsoft.KeyVault/vaults/CosmosDBAeAkv60?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCQ2xpZW50RW5jcnlwdGlvblJnNjAtMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvQ29zbW9zREJBZUFrdjYwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7df7a58-bd23-4583-852e-6e23cc3ecac5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "f7df7a58-bd23-4583-852e-6e23cc3ecac5" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "4926da6e-ba71-4a33-88e6-1891bcc8293c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "65672f5d-928f-479f-8dc5-6d65d0ee151d" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074229Z:65672f5d-928f-479f-8dc5-6d65d0ee151d" + ], + "Date": [ + "Thu, 12 May 2022 07:42:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "fc459ef3-2bd5-4cd1-a0b2-03fb617f32c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "fdd1c16e-66fa-4150-8f86-a952784c271a" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074236Z:fdd1c16e-66fa-4150-8f86-a952784c271a" + ], + "Date": [ + "Thu, 12 May 2022 07:42:36 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "ef42c442-b0dd-4a6a-a282-1e2bcb3e8a50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "66309a03-6e64-4568-a2d6-cd268dce5699" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074242Z:66309a03-6e64-4568-a2d6-cd268dce5699" + ], + "Date": [ + "Thu, 12 May 2022 07:42:41 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "1ea83d8a-5dc1-421c-bf44-d6608de8d9b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7c02a659-d44d-4c5e-957f-641761c3888e" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074247Z:7c02a659-d44d-4c5e-957f-641761c3888e" + ], + "Date": [ + "Thu, 12 May 2022 07:42:47 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "c8c6721e-3232-4206-8c77-3847da7ea174" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "42b74114-a3c3-4379-90e1-7c60a4118764" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074252Z:42b74114-a3c3-4379-90e1-7c60a4118764" + ], + "Date": [ + "Thu, 12 May 2022 07:42:52 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "7e1f2e55-6773-4804-9d71-b84fb12dcbc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "19cdcb3e-69ae-4928-bb9e-845341fb3858" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074257Z:19cdcb3e-69ae-4928-bb9e-845341fb3858" + ], + "Date": [ + "Thu, 12 May 2022 07:42:57 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "5e63a686-fe6b-4273-9942-f09c72599f66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "55fa318b-cc2b-4101-a8d6-6476dde3fa6e" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074303Z:55fa318b-cc2b-4101-a8d6-6476dde3fa6e" + ], + "Date": [ + "Thu, 12 May 2022 07:43:03 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "d6c4b5c1-39a9-4eff-941e-5ff6031fbd68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "5a6a2062-66f9-41ab-8806-f5973416f5bd" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074308Z:5a6a2062-66f9-41ab-8806-f5973416f5bd" + ], + "Date": [ + "Thu, 12 May 2022 07:43:08 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview" + ], + "Retry-After": [ + "5" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "3031d193-ac0e-433a-852f-ced09a29744b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "4af99d1c-65e5-438e-8fa8-c6f7d9aed6bf" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074313Z:4af99d1c-65e5-438e-8fa8-c6f7d9aed6bf" + ], + "Date": [ + "Thu, 12 May 2022 07:43:13 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "d921d0fc-2142-4af0-b1e4-394a60e9d95d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "f62ba5dd-27af-40c1-863d-f1efe7e1f389" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074319Z:f62ba5dd-27af-40c1-863d-f1efe7e1f389" + ], + "Date": [ + "Thu, 12 May 2022 07:43:19 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"lastActionDateTime\": \"2022-05-12 07:43:18Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.KeyVault/locations/eastus/operationResults/VVR8MDYzNzg3OTM4MTUyMjIyMzUxNXw0REQ5QzM3OTZGQTE0Mzc2OEI5NDRFNDdDNEM3MjlCQw?api-version=2021-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25SZXN1bHRzL1ZWUjhNRFl6TnpnM09UTTRNVFV5TWpJeU16VXhOWHcwUkVRNVF6TTNPVFpHUVRFME16YzJPRUk1TkRSRk5EZERORU0zTWpsQ1F3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "cec9afdb-db1c-41df-87ae-aaef00d626d7" + ], + "x-ms-keyvault-service-version": [ + "1.5.372.0" + ], + "x-ms-request-id": [ + "49e34d99-df17-4115-8218-96bdc0641b48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "3c3e00be-1184-4958-8cb9-3d2716b68abb" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20220512T074319Z:3c3e00be-1184-4958-8cb9-3d2716b68abb" + ], + "Date": [ + "Thu, 12 May 2022 07:43:19 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2022-05-12 07:42:31Z\",\r\n \"lastActionDateTime\": \"2022-05-12 07:43:18Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "12053b8f-cab5-4f5c-9c1a-870580142abd", + "AADClientId": "2074c615-9df8-454e-bd1a-740480f3ddda" + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlMigrateThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlMigrateThroughputCmdlets.json index 609b82e7bd1c..0ec40c7d4494 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlMigrateThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlMigrateThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5acc65dc-c809-4eeb-b9ba-75c7b4982574" + "21d4b59e-6795-456f-aed6-c23d6e45edd3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "0cbd5b7a-fefb-4ed5-9cfa-0da943d9f27a" + "fbd5a93d-2f35-45e5-9ff0-291d4732d245" ], "x-ms-correlation-request-id": [ - "0cbd5b7a-fefb-4ed5-9cfa-0da943d9f27a" + "fbd5a93d-2f35-45e5-9ff0-291d4732d245" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141710Z:0cbd5b7a-fefb-4ed5-9cfa-0da943d9f27a" + "JIOINDIACENTRAL:20220512T105803Z:fbd5a93d-2f35-45e5-9ff0-291d4732d245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:17:09 GMT" + "Thu, 12 May 2022 10:58:03 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7329bcf6-ea5c-4caa-baa4-c29092c92fb7" + "02648094-0fd0-4599-9742-0718384f9210" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "b52a5f55-b586-485a-9e08-8c3982b3fcdd" + "820b3792-fc91-49ea-b97c-1f2abc972bca" ], "x-ms-correlation-request-id": [ - "b52a5f55-b586-485a-9e08-8c3982b3fcdd" + "820b3792-fc91-49ea-b97c-1f2abc972bca" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141710Z:b52a5f55-b586-485a-9e08-8c3982b3fcdd" + "JIOINDIACENTRAL:20220512T105805Z:820b3792-fc91-49ea-b97c-1f2abc972bca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:17:10 GMT" + "Thu, 12 May 2022 10:58:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7329bcf6-ea5c-4caa-baa4-c29092c92fb7" + "02648094-0fd0-4599-9742-0718384f9210" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -162,19 +162,19 @@ "11995" ], "x-ms-request-id": [ - "89419e44-5168-413f-8a8c-4af6358d88f7" + "7fafb327-243a-479e-a4ea-4f2026c3ed90" ], "x-ms-correlation-request-id": [ - "89419e44-5168-413f-8a8c-4af6358d88f7" + "7fafb327-243a-479e-a4ea-4f2026c3ed90" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141853Z:89419e44-5168-413f-8a8c-4af6358d88f7" + "JIOINDIACENTRAL:20220512T105951Z:7fafb327-243a-479e-a4ea-4f2026c3ed90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:18:53 GMT" + "Thu, 12 May 2022 10:59:51 GMT" ], "Content-Length": [ "2337" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:18:31.7994354Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount62-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c921c70c-725c-4c96-9c7b-894ad0d75c06\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:59:29.9881971Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount62-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"1f3c000d-5608-4bc2-8253-e7cb65da78a8\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18db99a2-169e-46b0-a651-bf75e7f471a5" + "abd68521-35e2-453f-a4fe-284ca103074f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11994" ], "x-ms-request-id": [ - "73863ca3-ce1e-4af3-a274-5599209cf9b3" + "56161948-c11d-4a27-aab6-d047fa073f7a" ], "x-ms-correlation-request-id": [ - "73863ca3-ce1e-4af3-a274-5599209cf9b3" + "56161948-c11d-4a27-aab6-d047fa073f7a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141958Z:73863ca3-ce1e-4af3-a274-5599209cf9b3" + "CENTRALINDIA:20220512T110104Z:56161948-c11d-4a27-aab6-d047fa073f7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:19:57 GMT" + "Thu, 12 May 2022 11:01:03 GMT" ], "Content-Length": [ "2337" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:18:31.7994354Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount62-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c921c70c-725c-4c96-9c7b-894ad0d75c06\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:59:29.9881971Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount62-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"1f3c000d-5608-4bc2-8253-e7cb65da78a8\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7329bcf6-ea5c-4caa-baa4-c29092c92fb7" + "02648094-0fd0-4599-9742-0718384f9210" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/operationResults/458f8f8a-658f-4ffb-920b-a5b81599104a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/operationResults/1855b04b-9588-49dd-84bf-2b349a65ceb2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "458f8f8a-658f-4ffb-920b-a5b81599104a" + "1855b04b-9588-49dd-84bf-2b349a65ceb2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/458f8f8a-658f-4ffb-920b-a5b81599104a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1855b04b-9588-49dd-84bf-2b349a65ceb2?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,16 +303,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "18c25fff-015a-435e-ae38-10672a12dc66" + "4bc6ed4e-d51b-4252-9393-7c49b76cfed7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141719Z:18c25fff-015a-435e-ae38-10672a12dc66" + "JIOINDIACENTRAL:20220512T105818Z:4bc6ed4e-d51b-4252-9393-7c49b76cfed7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:17:19 GMT" + "Thu, 12 May 2022 10:58:18 GMT" ], "Content-Length": [ "2026" @@ -321,23 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:17:17.1252983Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"c921c70c-725c-4c96-9c7b-894ad0d75c06\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:58:15.5005056Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"1f3c000d-5608-4bc2-8253-e7cb65da78a8\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/458f8f8a-658f-4ffb-920b-a5b81599104a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDU4ZjhmOGEtNjU4Zi00ZmZiLTkyMGItYTViODE1OTkxMDRhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1855b04b-9588-49dd-84bf-2b349a65ceb2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg1NWIwNGItOTU4OC00OWRkLTg0YmYtMmIzNDlhNjVjZWIyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7329bcf6-ea5c-4caa-baa4-c29092c92fb7" + "02648094-0fd0-4599-9742-0718384f9210" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -360,19 +360,19 @@ "11998" ], "x-ms-request-id": [ - "73af8d55-4e7a-4e5b-b930-6eb61bc780e2" + "327d88bf-57ce-41b6-b2f0-4d6c7cb6b6b5" ], "x-ms-correlation-request-id": [ - "73af8d55-4e7a-4e5b-b930-6eb61bc780e2" + "327d88bf-57ce-41b6-b2f0-4d6c7cb6b6b5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141750Z:73af8d55-4e7a-4e5b-b930-6eb61bc780e2" + "JIOINDIACENTRAL:20220512T105849Z:327d88bf-57ce-41b6-b2f0-4d6c7cb6b6b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:17:50 GMT" + "Thu, 12 May 2022 10:58:49 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/458f8f8a-658f-4ffb-920b-a5b81599104a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDU4ZjhmOGEtNjU4Zi00ZmZiLTkyMGItYTViODE1OTkxMDRhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1855b04b-9588-49dd-84bf-2b349a65ceb2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg1NWIwNGItOTU4OC00OWRkLTg0YmYtMmIzNDlhNjVjZWIyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7329bcf6-ea5c-4caa-baa4-c29092c92fb7" + "02648094-0fd0-4599-9742-0718384f9210" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -420,19 +420,19 @@ "11997" ], "x-ms-request-id": [ - "c43d838f-33f4-4f57-ab3b-f7ba2cfa555d" + "17d7e9df-bd48-4a3b-a57a-3997bd61c944" ], "x-ms-correlation-request-id": [ - "c43d838f-33f4-4f57-ab3b-f7ba2cfa555d" + "17d7e9df-bd48-4a3b-a57a-3997bd61c944" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141821Z:c43d838f-33f4-4f57-ab3b-f7ba2cfa555d" + "JIOINDIACENTRAL:20220512T105920Z:17d7e9df-bd48-4a3b-a57a-3997bd61c944" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:18:21 GMT" + "Thu, 12 May 2022 10:59:19 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/458f8f8a-658f-4ffb-920b-a5b81599104a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDU4ZjhmOGEtNjU4Zi00ZmZiLTkyMGItYTViODE1OTkxMDRhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1855b04b-9588-49dd-84bf-2b349a65ceb2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg1NWIwNGItOTU4OC00OWRkLTg0YmYtMmIzNDlhNjVjZWIyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7329bcf6-ea5c-4caa-baa4-c29092c92fb7" + "02648094-0fd0-4599-9742-0718384f9210" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -480,19 +480,19 @@ "11996" ], "x-ms-request-id": [ - "fe4cfcdd-3c5f-4d61-84de-14834038e444" + "210547c9-f37a-46a7-86f3-3f321b5c5d9f" ], "x-ms-correlation-request-id": [ - "fe4cfcdd-3c5f-4d61-84de-14834038e444" + "210547c9-f37a-46a7-86f3-3f321b5c5d9f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141852Z:fe4cfcdd-3c5f-4d61-84de-14834038e444" + "JIOINDIACENTRAL:20220512T105950Z:210547c9-f37a-46a7-86f3-3f321b5c5d9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:18:52 GMT" + "Thu, 12 May 2022 10:59:50 GMT" ], "Content-Length": [ "22" @@ -505,22 +505,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4bc2024-f96e-4c83-bf1a-ad4d3b954a37" + "bd10b357-db5b-4e72-9052-66442710787d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -540,47 +540,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "d8dc2277-f630-42b6-a8a1-3f562631b05c" + "c7154fd2-32f2-4d48-b255-a99d6f2a4fdc" ], "x-ms-correlation-request-id": [ - "d8dc2277-f630-42b6-a8a1-3f562631b05c" + "c7154fd2-32f2-4d48-b255-a99d6f2a4fdc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141853Z:d8dc2277-f630-42b6-a8a1-3f562631b05c" + "JIOINDIACENTRAL:20220512T105954Z:c7154fd2-32f2-4d48-b255-a99d6f2a4fdc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:18:53 GMT" + "Thu, 12 May 2022 10:59:53 GMT" ], "Content-Length": [ - "5578" + "6290" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: c4bc2024-f96e-4c83-bf1a-ad4d3b954a37, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/acff4feb-1026-4c08-8ecc-e2253014a475/partitions/3aa2fc64-f157-4c81-b23c-40967a2a792b/replicas/132912186347598820s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:18:53.4981568Z, RequestEndTime: 2022-03-08T14:18:53.4981568Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:17:43.4879793Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.449,\\\\\\\"memory\\\\\\\":628225668.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0072,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:17:53.4980055Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.537,\\\\\\\"memory\\\\\\\":635536272.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0135,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:18:13.5080583Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.966,\\\\\\\"memory\\\\\\\":634317924.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.005,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:18:23.5180809Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.071,\\\\\\\"memory\\\\\\\":636168976.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0123,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:18:33.5281143Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.664,\\\\\\\"memory\\\\\\\":635299872.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0353,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:18:43.5381318Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.478,\\\\\\\"memory\\\\\\\":635010248.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0103,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:18:53.4981568Z; ResponseTime: 2022-03-08T14:18:53.4981568Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/c897d528-9633-429d-a831-44567c908025/services/acff4feb-1026-4c08-8ecc-e2253014a475/partitions/3aa2fc64-f157-4c81-b23c-40967a2a792b/replicas/132912186347598820s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.025, ActivityId: c4bc2024-f96e-4c83-bf1a-ad4d3b954a37, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4981568Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0077},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4981645Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0024},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4981669Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0873},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4982542Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3394},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4995936Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0236},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4996172Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:18:53.4981568Z; ResponseTime: 2022-03-08T14:18:53.4981568Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/c897d528-9633-429d-a831-44567c908025/services/acff4feb-1026-4c08-8ecc-e2253014a475/partitions/3aa2fc64-f157-4c81-b23c-40967a2a792b/replicas/132912186347598818s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.758, ActivityId: c4bc2024-f96e-4c83-bf1a-ad4d3b954a37, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4981568Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4981594Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4981602Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0503},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4982105Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9863},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4991968Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.071},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:18:53.4992678Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: bd10b357-db5b-4e72-9052-66442710787d, Request URI: /apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/ac06f888-8728-4189-a9ba-3ef4f189f007/partitions/c07763ee-271e-4c8b-b177-57b657f42720/replicas/132968199054718450s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:59:53.9797104Z, RequestEndTime: 2022-05-12T10:59:53.9797104Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:58:57.8405902Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.520,\\\\\\\"memory\\\\\\\":657427896.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:59:07.8504170Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.505,\\\\\\\"memory\\\\\\\":657234332.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0169,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:59:17.8602254Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.239,\\\\\\\"memory\\\\\\\":657121700.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0119,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:59:27.8800760Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.239,\\\\\\\"memory\\\\\\\":657117232.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0175,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:59:37.8899372Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.073,\\\\\\\"memory\\\\\\\":657449852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0103,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:59:47.8998076Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.285,\\\\\\\"memory\\\\\\\":657343496.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0078,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:59:53.9797104Z; ResponseTime: 2022-05-12T10:59:53.9797104Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/ac06f888-8728-4189-a9ba-3ef4f189f007/partitions/c07763ee-271e-4c8b-b177-57b657f42720/replicas/132968199054718450s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.104, ActivityId: bd10b357-db5b-4e72-9052-66442710787d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9797104Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.006},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9797164Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9797184Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1842},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9799026Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4295},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9813321Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0238},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9813559Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:59:53.9397059Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:59:53.9397059Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:59:53.9397059Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":454,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:59:53.9797104Z; ResponseTime: 2022-05-12T10:59:53.9797104Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/ac06f888-8728-4189-a9ba-3ef4f189f007/partitions/c07763ee-271e-4c8b-b177-57b657f42720/replicas/132968199054718449s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.785, ActivityId: bd10b357-db5b-4e72-9052-66442710787d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9797104Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9797135Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9797146Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1538},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9798684Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0619},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9809303Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1493},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:59:53.9810796Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:59:53.7697085Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:59:53.7697085Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:59:53.7697085Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":454,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4bc2024-f96e-4c83-bf1a-ad4d3b954a37" + "bd10b357-db5b-4e72-9052-66442710787d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -600,22 +600,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "e0be0428-a7c2-48e4-ad6d-375f80c3b11c" + "268adeca-3d7d-4847-b729-367ad623d466" ], "x-ms-correlation-request-id": [ - "e0be0428-a7c2-48e4-ad6d-375f80c3b11c" + "268adeca-3d7d-4847-b729-367ad623d466" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141925Z:e0be0428-a7c2-48e4-ad6d-375f80c3b11c" + "JIOINDIACENTRAL:20220512T110027Z:268adeca-3d7d-4847-b729-367ad623d466" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:19:25 GMT" + "Thu, 12 May 2022 11:00:27 GMT" ], "Content-Length": [ "448" @@ -624,26 +624,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"9059AA==\",\r\n \"_self\": \"dbs/9059AA==/\",\r\n \"_etag\": \"\\\"00005904-0000-0100-0000-622765d60000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646749142\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"-DISAA==\",\r\n \"_self\": \"dbs/-DISAA==/\",\r\n \"_etag\": \"\\\"0100a782-0000-0100-0000-627ce8b20000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652353202\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4bc2024-f96e-4c83-bf1a-ad4d3b954a37" + "bd10b357-db5b-4e72-9052-66442710787d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,13 +660,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/1640239e-ed2c-4dee-8695-0fd3ef86566f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/d0c36e38-3cc1-48a7-b22e-d2cd788dbbad?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1640239e-ed2c-4dee-8695-0fd3ef86566f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d0c36e38-3cc1-48a7-b22e-d2cd788dbbad?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1640239e-ed2c-4dee-8695-0fd3ef86566f" + "d0c36e38-3cc1-48a7-b22e-d2cd788dbbad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,19 +678,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "bc0612f3-f2b0-4408-be19-386355eff864" + "3c0b4c84-a799-49f0-bbe4-7bbc7130736f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141854Z:bc0612f3-f2b0-4408-be19-386355eff864" + "JIOINDIACENTRAL:20220512T105955Z:3c0b4c84-a799-49f0-bbe4-7bbc7130736f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:18:54 GMT" + "Thu, 12 May 2022 10:59:54 GMT" ], "Content-Length": [ "21" @@ -703,19 +703,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1640239e-ed2c-4dee-8695-0fd3ef86566f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTY0MDIzOWUtZWQyYy00ZGVlLTg2OTUtMGZkM2VmODY1NjZmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d0c36e38-3cc1-48a7-b22e-d2cd788dbbad?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDBjMzZlMzgtM2NjMS00OGE3LWIyMmUtZDJjZDc4OGRiYmFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4bc2024-f96e-4c83-bf1a-ad4d3b954a37" + "bd10b357-db5b-4e72-9052-66442710787d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -735,22 +735,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "fedb45bc-ffa2-4a06-b62c-e17a6980d998" + "9fb00029-926a-4cb0-a2b3-6ed09495cb4c" ], "x-ms-correlation-request-id": [ - "fedb45bc-ffa2-4a06-b62c-e17a6980d998" + "9fb00029-926a-4cb0-a2b3-6ed09495cb4c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141925Z:fedb45bc-ffa2-4a06-b62c-e17a6980d998" + "JIOINDIACENTRAL:20220512T110026Z:9fb00029-926a-4cb0-a2b3-6ed09495cb4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:19:24 GMT" + "Thu, 12 May 2022 11:00:26 GMT" ], "Content-Length": [ "22" @@ -763,22 +763,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a08053b-f5a2-4773-9277-8b41242de22e" + "072307f2-8332-4ee6-9548-2982e9cc2d80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -798,22 +798,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11975" ], "x-ms-request-id": [ - "02cc2900-8e4b-4613-90dc-c9c72728fb4c" + "83a58f7e-ce3b-425a-be85-6bbb4b5533d8" ], "x-ms-correlation-request-id": [ - "02cc2900-8e4b-4613-90dc-c9c72728fb4c" + "83a58f7e-ce3b-425a-be85-6bbb4b5533d8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141926Z:02cc2900-8e4b-4613-90dc-c9c72728fb4c" + "JIOINDIACENTRAL:20220512T110028Z:83a58f7e-ce3b-425a-be85-6bbb4b5533d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:19:25 GMT" + "Thu, 12 May 2022 11:00:28 GMT" ], "Content-Length": [ "374" @@ -822,26 +822,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"bUqQ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"oGVc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a1168d-5d12-444f-8f03-eca36bf22fab" + "e5b32c71-e5ea-4812-928b-22587aa834e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -852,13 +852,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/e8ecdce8-ab9b-40e4-a7d6-38ea9551cae0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/b33a6928-2b5e-41ed-8272-4fe14540fb40?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8ecdce8-ab9b-40e4-a7d6-38ea9551cae0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b33a6928-2b5e-41ed-8272-4fe14540fb40?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e8ecdce8-ab9b-40e4-a7d6-38ea9551cae0" + "b33a6928-2b5e-41ed-8272-4fe14540fb40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -873,16 +873,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0540521f-8908-40b3-808f-a1ca6f654dff" + "8adf14ac-f366-464b-9c6d-8f44f468245a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141926Z:0540521f-8908-40b3-808f-a1ca6f654dff" + "JIOINDIACENTRAL:20220512T110030Z:8adf14ac-f366-464b-9c6d-8f44f468245a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:19:26 GMT" + "Thu, 12 May 2022 11:00:30 GMT" ], "Content-Length": [ "21" @@ -895,19 +895,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8ecdce8-ab9b-40e4-a7d6-38ea9551cae0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZThlY2RjZTgtYWI5Yi00MGU0LWE3ZDYtMzhlYTk1NTFjYWUwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b33a6928-2b5e-41ed-8272-4fe14540fb40?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjMzYTY5MjgtMmI1ZS00MWVkLTgyNzItNGZlMTQ1NDBmYjQwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a1168d-5d12-444f-8f03-eca36bf22fab" + "e5b32c71-e5ea-4812-928b-22587aa834e6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -927,22 +927,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11974" ], "x-ms-request-id": [ - "a56cde7d-63dc-457e-839e-55e5489dc09a" + "c26dd20d-83b9-445d-8ff3-25871e97a0ed" ], "x-ms-correlation-request-id": [ - "a56cde7d-63dc-457e-839e-55e5489dc09a" + "c26dd20d-83b9-445d-8ff3-25871e97a0ed" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141957Z:a56cde7d-63dc-457e-839e-55e5489dc09a" + "JIOINDIACENTRAL:20220512T110101Z:c26dd20d-83b9-445d-8ff3-25871e97a0ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:19:56 GMT" + "Thu, 12 May 2022 11:01:01 GMT" ], "Content-Length": [ "22" @@ -955,19 +955,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/e8ecdce8-ab9b-40e4-a7d6-38ea9551cae0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvZThlY2RjZTgtYWI5Yi00MGU0LWE3ZDYtMzhlYTk1NTFjYWUwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/b33a6928-2b5e-41ed-8272-4fe14540fb40?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvYjMzYTY5MjgtMmI1ZS00MWVkLTgyNzItNGZlMTQ1NDBmYjQwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a1168d-5d12-444f-8f03-eca36bf22fab" + "e5b32c71-e5ea-4812-928b-22587aa834e6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -987,22 +987,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11973" ], "x-ms-request-id": [ - "e5131ad1-c215-486d-b083-24b21fe1c2aa" + "99269358-dcea-4940-bb57-0b066f1d7ced" ], "x-ms-correlation-request-id": [ - "e5131ad1-c215-486d-b083-24b21fe1c2aa" + "99269358-dcea-4940-bb57-0b066f1d7ced" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141958Z:e5131ad1-c215-486d-b083-24b21fe1c2aa" + "JIOINDIACENTRAL:20220512T110101Z:99269358-dcea-4940-bb57-0b066f1d7ced" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:19:57 GMT" + "Thu, 12 May 2022 11:01:01 GMT" ], "Content-Length": [ "455" @@ -1011,26 +1011,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"bUqQ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"oGVc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 200,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 2000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e501e0b-488b-4f82-9892-cc19b04f0e22" + "c7cdf142-559d-4539-8685-440d094e9bf0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1041,13 +1041,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/a117e2a9-aaa2-414b-9a5d-56bdeafcc8ed?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/8dd899d9-2f16-49fa-982d-36d74a580d60?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a117e2a9-aaa2-414b-9a5d-56bdeafcc8ed?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8dd899d9-2f16-49fa-982d-36d74a580d60?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a117e2a9-aaa2-414b-9a5d-56bdeafcc8ed" + "8dd899d9-2f16-49fa-982d-36d74a580d60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1062,16 +1062,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "df35833d-3da5-4c48-92df-e9a87c33e002" + "4bbae058-3677-40b1-bfe3-e95e1b394bf0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141959Z:df35833d-3da5-4c48-92df-e9a87c33e002" + "CENTRALINDIA:20220512T110106Z:4bbae058-3677-40b1-bfe3-e95e1b394bf0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:19:58 GMT" + "Thu, 12 May 2022 11:01:06 GMT" ], "Content-Length": [ "21" @@ -1084,19 +1084,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a117e2a9-aaa2-414b-9a5d-56bdeafcc8ed?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTExN2UyYTktYWFhMi00MTRiLTlhNWQtNTZiZGVhZmNjOGVkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8dd899d9-2f16-49fa-982d-36d74a580d60?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGRkODk5ZDktMmYxNi00OWZhLTk4MmQtMzZkNzRhNTgwZDYwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e501e0b-488b-4f82-9892-cc19b04f0e22" + "c7cdf142-559d-4539-8685-440d094e9bf0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1116,22 +1116,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11989" ], "x-ms-request-id": [ - "ce155fc2-7237-48ac-a634-48ec1c282123" + "fbafb9e9-8986-428f-8e99-137190234230" ], "x-ms-correlation-request-id": [ - "ce155fc2-7237-48ac-a634-48ec1c282123" + "fbafb9e9-8986-428f-8e99-137190234230" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142030Z:ce155fc2-7237-48ac-a634-48ec1c282123" + "CENTRALINDIA:20220512T110137Z:fbafb9e9-8986-428f-8e99-137190234230" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:20:30 GMT" + "Thu, 12 May 2022 11:01:37 GMT" ], "Content-Length": [ "22" @@ -1144,19 +1144,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/a117e2a9-aaa2-414b-9a5d-56bdeafcc8ed?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzL2ExMTdlMmE5LWFhYTItNDE0Yi05YTVkLTU2YmRlYWZjYzhlZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/8dd899d9-2f16-49fa-982d-36d74a580d60?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzLzhkZDg5OWQ5LTJmMTYtNDlmYS05ODJkLTM2ZDc0YTU4MGQ2MD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e501e0b-488b-4f82-9892-cc19b04f0e22" + "c7cdf142-559d-4539-8685-440d094e9bf0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1176,22 +1176,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11988" ], "x-ms-request-id": [ - "08f65218-2672-4013-a96a-380e736aca66" + "bb34c49f-5a88-4272-8662-9e675ad0d281" ], "x-ms-correlation-request-id": [ - "08f65218-2672-4013-a96a-380e736aca66" + "bb34c49f-5a88-4272-8662-9e675ad0d281" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142030Z:08f65218-2672-4013-a96a-380e736aca66" + "CENTRALINDIA:20220512T110137Z:bb34c49f-5a88-4272-8662-9e675ad0d281" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:20:30 GMT" + "Thu, 12 May 2022 11:01:37 GMT" ], "Content-Length": [ "426" @@ -1200,26 +1200,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"bUqQ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"oGVc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 2000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "744ec3b8-b345-439c-a518-9d126588ede3" + "1d882728-783f-48b7-96d2-669b5e6d5872" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1239,47 +1239,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11995" ], "x-ms-request-id": [ - "9cdafc18-b72a-4651-9097-2013aec7ce02" + "afac5543-64b2-4376-b200-1711dc5660cf" ], "x-ms-correlation-request-id": [ - "9cdafc18-b72a-4651-9097-2013aec7ce02" + "afac5543-64b2-4376-b200-1711dc5660cf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142031Z:9cdafc18-b72a-4651-9097-2013aec7ce02" + "CENTRALINDIA:20220512T110139Z:afac5543-64b2-4376-b200-1711dc5660cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:20:30 GMT" + "Thu, 12 May 2022 11:01:39 GMT" ], "Content-Length": [ - "5607" + "6319" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 744ec3b8-b345-439c-a518-9d126588ede3, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/acff4feb-1026-4c08-8ecc-e2253014a475/partitions/3aa2fc64-f157-4c81-b23c-40967a2a792b/replicas/132912186347598820s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:20:30.9252644Z, RequestEndTime: 2022-03-08T14:20:30.9252644Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:19:39.5556475Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.754,\\\\\\\"memory\\\\\\\":637910524.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0131,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:19:49.5655511Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.766,\\\\\\\"memory\\\\\\\":637496360.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0187,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:19:59.5754628Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.634,\\\\\\\"memory\\\\\\\":636900520.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0145,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:20:09.5853860Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.719,\\\\\\\"memory\\\\\\\":636651568.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0226,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:20:19.5953135Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.151,\\\\\\\"memory\\\\\\\":638525652.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0162,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:20:29.6052701Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.650,\\\\\\\"memory\\\\\\\":637905684.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.02,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:20:30.9252644Z; ResponseTime: 2022-03-08T14:20:30.9252644Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/c897d528-9633-429d-a831-44567c908025/services/acff4feb-1026-4c08-8ecc-e2253014a475/partitions/3aa2fc64-f157-4c81-b23c-40967a2a792b/replicas/132912186347598820s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.063, ActivityId: 744ec3b8-b345-439c-a518-9d126588ede3, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9252644Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0174},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9252818Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9252846Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1952},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9254798Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.537},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9270168Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1839},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9272007Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":484,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:20:30.9252644Z; ResponseTime: 2022-03-08T14:20:30.9252644Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/c897d528-9633-429d-a831-44567c908025/services/acff4feb-1026-4c08-8ecc-e2253014a475/partitions/3aa2fc64-f157-4c81-b23c-40967a2a792b/replicas/132912186347598818s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.965, ActivityId: 744ec3b8-b345-439c-a518-9d126588ede3, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9252644Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0036},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9252680Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9252692Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1473},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9254165Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5354},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9269519Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0608},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:20:30.9270127Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"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/dbName4/colls/containerName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 1d882728-783f-48b7-96d2-669b5e6d5872, Request URI: /apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/ac06f888-8728-4189-a9ba-3ef4f189f007/partitions/c07763ee-271e-4c8b-b177-57b657f42720/replicas/132968199054718449s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:01:39.6616085Z, RequestEndTime: 2022-05-12T11:01:39.6616085Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:00:31.6229487Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.742,\\\\\\\"memory\\\\\\\":658098100.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0179,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:00:41.6227506Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.871,\\\\\\\"memory\\\\\\\":658062044.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0188,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:01:01.6323651Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.116,\\\\\\\"memory\\\\\\\":658147208.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0111,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:01:11.6421569Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.278,\\\\\\\"memory\\\\\\\":658135372.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.015,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:01:21.6519342Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.410,\\\\\\\"memory\\\\\\\":657780908.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0208,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:01:31.6617186Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.326,\\\\\\\"memory\\\\\\\":657778932.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0089,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:01:39.6616085Z; ResponseTime: 2022-05-12T11:01:39.6616085Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/ac06f888-8728-4189-a9ba-3ef4f189f007/partitions/c07763ee-271e-4c8b-b177-57b657f42720/replicas/132968199054718449s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.656, ActivityId: 1d882728-783f-48b7-96d2-669b5e6d5872, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6616085Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0069},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6616154Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6616174Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1446},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6617620Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.845},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6626070Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0684},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6626754Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:01:39.6616085Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:01:39.6616085Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:01:39.6616085Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:01:39.6616085Z; ResponseTime: 2022-05-12T11:01:39.6616085Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/ac06f888-8728-4189-a9ba-3ef4f189f007/partitions/c07763ee-271e-4c8b-b177-57b657f42720/replicas/132968199054718450s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.786, ActivityId: 1d882728-783f-48b7-96d2-669b5e6d5872, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6616085Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6616113Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6616121Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1169},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6617290Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9452},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6626742Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0233},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:01:39.6626975Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:01:39.6616085Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:01:39.6616085Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:01:39.6616085Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4/colls/containerName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "744ec3b8-b345-439c-a518-9d126588ede3" + "1d882728-783f-48b7-96d2-669b5e6d5872" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1299,22 +1299,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11993" ], "x-ms-request-id": [ - "389d81fd-88ef-4ace-aebe-64bba162f728" + "d60e3099-d910-476c-9050-817aa26c3ca7" ], "x-ms-correlation-request-id": [ - "389d81fd-88ef-4ace-aebe-64bba162f728" + "d60e3099-d910-476c-9050-817aa26c3ca7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142102Z:389d81fd-88ef-4ace-aebe-64bba162f728" + "CENTRALINDIA:20220512T110212Z:d60e3099-d910-476c-9050-817aa26c3ca7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:21:01 GMT" + "Thu, 12 May 2022 11:02:11 GMT" ], "Content-Length": [ "1082" @@ -1323,26 +1323,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"containerName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"9059AKLdkdg=\",\r\n \"_ts\": 1646749239,\r\n \"_self\": \"dbs/9059AA==/colls/9059AKLdkdg=/\",\r\n \"_etag\": \"\\\"00005f04-0000-0100-0000-622766370000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"containerName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"-DISANXzNcI=\",\r\n \"_ts\": 1652353308,\r\n \"_self\": \"dbs/-DISAA==/colls/-DISANXzNcI=/\",\r\n \"_etag\": \"\\\"0100ae82-0000-0100-0000-627ce91c0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "744ec3b8-b345-439c-a518-9d126588ede3" + "1d882728-783f-48b7-96d2-669b5e6d5872" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1359,13 +1359,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/91dafe9f-e6af-43e6-be04-2709084415d1?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/42036c36-4450-440a-a6fd-ba576ed4c33a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/91dafe9f-e6af-43e6-be04-2709084415d1?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/42036c36-4450-440a-a6fd-ba576ed4c33a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "91dafe9f-e6af-43e6-be04-2709084415d1" + "42036c36-4450-440a-a6fd-ba576ed4c33a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,19 +1377,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "0add5e9c-fc71-44bc-97e4-487bab2c6ba1" + "fcf37b3e-913e-4568-9424-524f437b7038" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142031Z:0add5e9c-fc71-44bc-97e4-487bab2c6ba1" + "CENTRALINDIA:20220512T110140Z:fcf37b3e-913e-4568-9424-524f437b7038" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:20:31 GMT" + "Thu, 12 May 2022 11:01:40 GMT" ], "Content-Length": [ "21" @@ -1402,19 +1402,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/91dafe9f-e6af-43e6-be04-2709084415d1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTFkYWZlOWYtZTZhZi00M2U2LWJlMDQtMjcwOTA4NDQxNWQxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/42036c36-4450-440a-a6fd-ba576ed4c33a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDIwMzZjMzYtNDQ1MC00NDBhLWE2ZmQtYmE1NzZlZDRjMzNhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "744ec3b8-b345-439c-a518-9d126588ede3" + "1d882728-783f-48b7-96d2-669b5e6d5872" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1434,22 +1434,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11994" ], "x-ms-request-id": [ - "1f76c5b6-3083-4e4a-b098-859145a21036" + "38153019-b7b1-4f36-911d-025f16c8fe18" ], "x-ms-correlation-request-id": [ - "1f76c5b6-3083-4e4a-b098-859145a21036" + "38153019-b7b1-4f36-911d-025f16c8fe18" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142102Z:1f76c5b6-3083-4e4a-b098-859145a21036" + "CENTRALINDIA:20220512T110211Z:38153019-b7b1-4f36-911d-025f16c8fe18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:21:01 GMT" + "Thu, 12 May 2022 11:02:11 GMT" ], "Content-Length": [ "22" @@ -1462,22 +1462,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "177ce1a6-0737-4c9d-ba39-b2e48bfe9a6d" + "98689c5a-5608-436e-a24c-f44524ed9b53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1497,22 +1497,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11990" ], "x-ms-request-id": [ - "8ee6bfe1-fcf2-4773-8c04-47f273c2ce79" + "6335a733-31a6-46ed-a65c-feab22523e3b" ], "x-ms-correlation-request-id": [ - "8ee6bfe1-fcf2-4773-8c04-47f273c2ce79" + "6335a733-31a6-46ed-a65c-feab22523e3b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142102Z:8ee6bfe1-fcf2-4773-8c04-47f273c2ce79" + "JIOINDIACENTRAL:20220512T110213Z:6335a733-31a6-46ed-a65c-feab22523e3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:21:02 GMT" + "Thu, 12 May 2022 11:02:13 GMT" ], "Content-Length": [ "409" @@ -1521,26 +1521,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"7E-O\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"FKy3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6dae53f-76ae-4b98-bb6d-29e1b99a13b8" + "1b99d331-444d-4267-acf4-64902e39120a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1551,13 +1551,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/9ac0e0f0-c118-4bae-b35b-2bcd59397302?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/227cc55f-937e-46ee-8b11-16ec8bc15b78?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ac0e0f0-c118-4bae-b35b-2bcd59397302?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/227cc55f-937e-46ee-8b11-16ec8bc15b78?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "9ac0e0f0-c118-4bae-b35b-2bcd59397302" + "227cc55f-937e-46ee-8b11-16ec8bc15b78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1569,19 +1569,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "b1a2ee6f-8b74-4b60-b93f-856c3ee9a71d" + "9f0704a0-18d8-49df-9f9a-559086fd43bb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142103Z:b1a2ee6f-8b74-4b60-b93f-856c3ee9a71d" + "JIOINDIACENTRAL:20220512T110215Z:9f0704a0-18d8-49df-9f9a-559086fd43bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:21:02 GMT" + "Thu, 12 May 2022 11:02:15 GMT" ], "Content-Length": [ "21" @@ -1594,19 +1594,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ac0e0f0-c118-4bae-b35b-2bcd59397302?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWFjMGUwZjAtYzExOC00YmFlLWIzNWItMmJjZDU5Mzk3MzAyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/227cc55f-937e-46ee-8b11-16ec8bc15b78?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjI3Y2M1NWYtOTM3ZS00NmVlLThiMTEtMTZlYzhiYzE1Yjc4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6dae53f-76ae-4b98-bb6d-29e1b99a13b8" + "1b99d331-444d-4267-acf4-64902e39120a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1629,19 +1629,19 @@ "11981" ], "x-ms-request-id": [ - "d8c9ea1b-9732-4b8b-a97d-e91c7e825bfb" + "f69ac094-c8b7-4d4a-90a9-96029eb13262" ], "x-ms-correlation-request-id": [ - "d8c9ea1b-9732-4b8b-a97d-e91c7e825bfb" + "f69ac094-c8b7-4d4a-90a9-96029eb13262" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142133Z:d8c9ea1b-9732-4b8b-a97d-e91c7e825bfb" + "JIOINDIACENTRAL:20220512T110245Z:f69ac094-c8b7-4d4a-90a9-96029eb13262" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:21:33 GMT" + "Thu, 12 May 2022 11:02:45 GMT" ], "Content-Length": [ "22" @@ -1654,19 +1654,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/9ac0e0f0-c118-4bae-b35b-2bcd59397302?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzlhYzBlMGYwLWMxMTgtNGJhZS1iMzViLTJiY2Q1OTM5NzMwMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/227cc55f-937e-46ee-8b11-16ec8bc15b78?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzIyN2NjNTVmLTkzN2UtNDZlZS04YjExLTE2ZWM4YmMxNWI3OD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6dae53f-76ae-4b98-bb6d-29e1b99a13b8" + "1b99d331-444d-4267-acf4-64902e39120a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1689,19 +1689,19 @@ "11980" ], "x-ms-request-id": [ - "29386d98-ceb0-4c8a-a171-e67d8dfe96ed" + "580e8bdc-099a-46f2-bab4-582087452c54" ], "x-ms-correlation-request-id": [ - "29386d98-ceb0-4c8a-a171-e67d8dfe96ed" + "580e8bdc-099a-46f2-bab4-582087452c54" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142134Z:29386d98-ceb0-4c8a-a171-e67d8dfe96ed" + "JIOINDIACENTRAL:20220512T110246Z:580e8bdc-099a-46f2-bab4-582087452c54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:21:34 GMT" + "Thu, 12 May 2022 11:02:46 GMT" ], "Content-Length": [ "491" @@ -1710,26 +1710,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"7E-O\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"FKy3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 100,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 1000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a91be1ce-3ed4-4875-b917-4261838f1ac7" + "9a186070-ee63-4f79-a882-f641bd618016" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1740,13 +1740,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/05ebf3f5-0301-4ca7-ae86-9e0f3399a750?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/84eafb16-1721-4250-af18-9401992a5996?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/05ebf3f5-0301-4ca7-ae86-9e0f3399a750?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84eafb16-1721-4250-af18-9401992a5996?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "05ebf3f5-0301-4ca7-ae86-9e0f3399a750" + "84eafb16-1721-4250-af18-9401992a5996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1758,19 +1758,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "c26ddc60-d060-4b42-9019-7519755ea60e" + "5faa1aa4-bc79-4f94-8994-4207b856e745" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142135Z:c26ddc60-d060-4b42-9019-7519755ea60e" + "JIOINDIACENTRAL:20220512T110250Z:5faa1aa4-bc79-4f94-8994-4207b856e745" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:21:34 GMT" + "Thu, 12 May 2022 11:02:50 GMT" ], "Content-Length": [ "21" @@ -1783,19 +1783,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/05ebf3f5-0301-4ca7-ae86-9e0f3399a750?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDVlYmYzZjUtMDMwMS00Y2E3LWFlODYtOWUwZjMzOTlhNzUwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84eafb16-1721-4250-af18-9401992a5996?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRlYWZiMTYtMTcyMS00MjUwLWFmMTgtOTQwMTk5MmE1OTk2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a91be1ce-3ed4-4875-b917-4261838f1ac7" + "9a186070-ee63-4f79-a882-f641bd618016" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1815,22 +1815,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "a35dab23-3830-4c41-9240-aba27c374951" + "4994ffc3-9f68-4162-8e11-26408a8ccb67" ], "x-ms-correlation-request-id": [ - "a35dab23-3830-4c41-9240-aba27c374951" + "4994ffc3-9f68-4162-8e11-26408a8ccb67" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142206Z:a35dab23-3830-4c41-9240-aba27c374951" + "JIOINDIACENTRAL:20220512T110321Z:4994ffc3-9f68-4162-8e11-26408a8ccb67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:22:05 GMT" + "Thu, 12 May 2022 11:03:21 GMT" ], "Content-Length": [ "22" @@ -1843,19 +1843,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/05ebf3f5-0301-4ca7-ae86-9e0f3399a750?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy8wNWViZjNmNS0wMzAxLTRjYTctYWU4Ni05ZTBmMzM5OWE3NTA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/84eafb16-1721-4250-af18-9401992a5996?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy84NGVhZmIxNi0xNzIxLTQyNTAtYWYxOC05NDAxOTkyYTU5OTY/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a91be1ce-3ed4-4875-b917-4261838f1ac7" + "9a186070-ee63-4f79-a882-f641bd618016" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1875,22 +1875,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-request-id": [ - "e96cb033-2c02-46a0-8829-e1c0b90875c4" + "e9c4fbb1-c694-4ecc-851f-90b35275c87f" ], "x-ms-correlation-request-id": [ - "e96cb033-2c02-46a0-8829-e1c0b90875c4" + "e9c4fbb1-c694-4ecc-851f-90b35275c87f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142206Z:e96cb033-2c02-46a0-8829-e1c0b90875c4" + "JIOINDIACENTRAL:20220512T110323Z:e9c4fbb1-c694-4ecc-851f-90b35275c87f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:22:06 GMT" + "Thu, 12 May 2022 11:03:23 GMT" ], "Content-Length": [ "462" @@ -1899,26 +1899,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"7E-O\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"FKy3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1687a30-a801-4495-a061-9a593a615c79" + "f0bc613d-268c-4fae-8d1f-7d2785842c7b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1929,13 +1929,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/e1d7142e-6a5e-4964-b7f3-4104b4772dc2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/5f55fdf8-0404-496c-8943-488586dd4e08?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e1d7142e-6a5e-4964-b7f3-4104b4772dc2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5f55fdf8-0404-496c-8943-488586dd4e08?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e1d7142e-6a5e-4964-b7f3-4104b4772dc2" + "5f55fdf8-0404-496c-8943-488586dd4e08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1950,16 +1950,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "209b3cf2-6801-40a1-94c1-154ca9b89253" + "932bb2d0-fbfa-49cd-a968-f75a9c5f3ec0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142207Z:209b3cf2-6801-40a1-94c1-154ca9b89253" + "JIOINDIACENTRAL:20220512T110324Z:932bb2d0-fbfa-49cd-a968-f75a9c5f3ec0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:22:06 GMT" + "Thu, 12 May 2022 11:03:23 GMT" ], "Content-Length": [ "21" @@ -1972,22 +1972,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83bd1bd0-f461-4526-bb38-403a2af5593b" + "e74775ce-06f5-4219-b6f3-8099f641b32b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1998,13 +1998,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/6bed1999-5acb-4013-a382-1260b84b52b2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/ca7b2aaf-a8ae-4b28-8e1e-79e0cf5e9dc0?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6bed1999-5acb-4013-a382-1260b84b52b2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ca7b2aaf-a8ae-4b28-8e1e-79e0cf5e9dc0?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "6bed1999-5acb-4013-a382-1260b84b52b2" + "ca7b2aaf-a8ae-4b28-8e1e-79e0cf5e9dc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,16 +2019,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "b00e95b5-c765-4929-a082-dc5e4d41c128" + "2fd92b88-3c87-4094-902f-f16a9f0a0c4c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142313Z:b00e95b5-c765-4929-a082-dc5e4d41c128" + "CENTRALINDIA:20220512T110432Z:2fd92b88-3c87-4094-902f-f16a9f0a0c4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:23:13 GMT" + "Thu, 12 May 2022 11:04:31 GMT" ], "Content-Length": [ "21" @@ -2041,19 +2041,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e1d7142e-6a5e-4964-b7f3-4104b4772dc2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTFkNzE0MmUtNmE1ZS00OTY0LWI3ZjMtNDEwNGI0NzcyZGMyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5f55fdf8-0404-496c-8943-488586dd4e08?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWY1NWZkZjgtMDQwNC00OTZjLTg5NDMtNDg4NTg2ZGQ0ZTA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1687a30-a801-4495-a061-9a593a615c79" + "f0bc613d-268c-4fae-8d1f-7d2785842c7b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2073,22 +2073,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11994" ], "x-ms-request-id": [ - "b0e40898-c85d-4610-ad10-4629f148760d" + "eb5b9563-fb94-4e78-9dae-e85e9ca53f80" ], "x-ms-correlation-request-id": [ - "b0e40898-c85d-4610-ad10-4629f148760d" + "eb5b9563-fb94-4e78-9dae-e85e9ca53f80" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142237Z:b0e40898-c85d-4610-ad10-4629f148760d" + "JIOINDIACENTRAL:20220512T110355Z:eb5b9563-fb94-4e78-9dae-e85e9ca53f80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:22:36 GMT" + "Thu, 12 May 2022 11:03:55 GMT" ], "Content-Length": [ "22" @@ -2101,19 +2101,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/e1d7142e-6a5e-4964-b7f3-4104b4772dc2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL29wZXJhdGlvblJlc3VsdHMvZTFkNzE0MmUtNmE1ZS00OTY0LWI3ZjMtNDEwNGI0NzcyZGMyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/5f55fdf8-0404-496c-8943-488586dd4e08?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL29wZXJhdGlvblJlc3VsdHMvNWY1NWZkZjgtMDQwNC00OTZjLTg5NDMtNDg4NTg2ZGQ0ZTA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1687a30-a801-4495-a061-9a593a615c79" + "f0bc613d-268c-4fae-8d1f-7d2785842c7b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2133,22 +2133,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11993" ], "x-ms-request-id": [ - "b95b06f7-3016-4e56-b535-f2fa01c7bfac" + "5dabd97d-9334-4096-8cba-0b70a1f32dd1" ], "x-ms-correlation-request-id": [ - "b95b06f7-3016-4e56-b535-f2fa01c7bfac" + "5dabd97d-9334-4096-8cba-0b70a1f32dd1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142237Z:b95b06f7-3016-4e56-b535-f2fa01c7bfac" + "JIOINDIACENTRAL:20220512T110356Z:5dabd97d-9334-4096-8cba-0b70a1f32dd1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:22:36 GMT" + "Thu, 12 May 2022 11:03:56 GMT" ], "Content-Type": [ "application/json" @@ -2158,22 +2158,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03009c3e-419d-40f1-86bc-65a17a8ca0c0" + "4d2e0cd7-193f-45a1-aaff-8e70a8e12572" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2184,13 +2184,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/896e7c7b-93ba-44c7-a470-3a9bb3dc4902?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/08b44160-1d24-477b-92c4-b3fec29eb85f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/896e7c7b-93ba-44c7-a470-3a9bb3dc4902?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/08b44160-1d24-477b-92c4-b3fec29eb85f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "896e7c7b-93ba-44c7-a470-3a9bb3dc4902" + "08b44160-1d24-477b-92c4-b3fec29eb85f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2205,16 +2205,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "0ecda704-c56c-4f64-a3cd-978ae662a3ed" + "927f3f60-3e28-4657-9948-0d158b42bfb9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142240Z:0ecda704-c56c-4f64-a3cd-978ae662a3ed" + "CENTRALINDIA:20220512T110358Z:927f3f60-3e28-4657-9948-0d158b42bfb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:22:39 GMT" + "Thu, 12 May 2022 11:03:58 GMT" ], "Content-Length": [ "21" @@ -2227,22 +2227,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27cdde85-eb40-4044-aded-d218cec65018" + "77ab97d7-04f0-48f1-b33e-49fcf3f62fda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2253,13 +2253,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/f72741fd-ab17-412b-9f15-c17c19dbb6c7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/bd5afa61-e2d5-4638-9740-09c377623084?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f72741fd-ab17-412b-9f15-c17c19dbb6c7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bd5afa61-e2d5-4638-9740-09c377623084?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f72741fd-ab17-412b-9f15-c17c19dbb6c7" + "bd5afa61-e2d5-4638-9740-09c377623084" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,19 +2271,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "d619637b-75af-46bf-a262-149b859e5886" + "85d21c7d-f125-4f48-8b7f-5714d674d354" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142346Z:d619637b-75af-46bf-a262-149b859e5886" + "JIOINDIACENTRAL:20220512T110505Z:85d21c7d-f125-4f48-8b7f-5714d674d354" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:23:46 GMT" + "Thu, 12 May 2022 11:05:04 GMT" ], "Content-Length": [ "21" @@ -2296,19 +2296,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/896e7c7b-93ba-44c7-a470-3a9bb3dc4902?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODk2ZTdjN2ItOTNiYS00NGM3LWE0NzAtM2E5YmIzZGM0OTAyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/08b44160-1d24-477b-92c4-b3fec29eb85f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDhiNDQxNjAtMWQyNC00NzdiLTkyYzQtYjNmZWMyOWViODVmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03009c3e-419d-40f1-86bc-65a17a8ca0c0" + "4d2e0cd7-193f-45a1-aaff-8e70a8e12572" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2331,19 +2331,19 @@ "11999" ], "x-ms-request-id": [ - "9e9c7b0d-5485-4312-887b-e6e492e0f394" + "43a748c8-6c84-42e9-a20a-f7e05cc1e525" ], "x-ms-correlation-request-id": [ - "9e9c7b0d-5485-4312-887b-e6e492e0f394" + "43a748c8-6c84-42e9-a20a-f7e05cc1e525" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142311Z:9e9c7b0d-5485-4312-887b-e6e492e0f394" + "CENTRALINDIA:20220512T110429Z:43a748c8-6c84-42e9-a20a-f7e05cc1e525" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:23:10 GMT" + "Thu, 12 May 2022 11:04:29 GMT" ], "Content-Length": [ "22" @@ -2356,19 +2356,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/896e7c7b-93ba-44c7-a470-3a9bb3dc4902?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy84OTZlN2M3Yi05M2JhLTQ0YzctYTQ3MC0zYTliYjNkYzQ5MDI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/08b44160-1d24-477b-92c4-b3fec29eb85f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy8wOGI0NDE2MC0xZDI0LTQ3N2ItOTJjNC1iM2ZlYzI5ZWI4NWY/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03009c3e-419d-40f1-86bc-65a17a8ca0c0" + "4d2e0cd7-193f-45a1-aaff-8e70a8e12572" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2391,19 +2391,19 @@ "11998" ], "x-ms-request-id": [ - "99d79a00-42e7-4a71-9338-02b325554466" + "3628e38e-acd5-476e-82d5-be88b4953a7b" ], "x-ms-correlation-request-id": [ - "99d79a00-42e7-4a71-9338-02b325554466" + "3628e38e-acd5-476e-82d5-be88b4953a7b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142311Z:99d79a00-42e7-4a71-9338-02b325554466" + "CENTRALINDIA:20220512T110429Z:3628e38e-acd5-476e-82d5-be88b4953a7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:23:10 GMT" + "Thu, 12 May 2022 11:04:29 GMT" ], "Content-Type": [ "application/json" @@ -2413,19 +2413,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6bed1999-5acb-4013-a382-1260b84b52b2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmJlZDE5OTktNWFjYi00MDEzLWEzODItMTI2MGI4NGI1MmIyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ca7b2aaf-a8ae-4b28-8e1e-79e0cf5e9dc0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2E3YjJhYWYtYThhZS00YjI4LThlMWUtNzllMGNmNWU5ZGMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83bd1bd0-f461-4526-bb38-403a2af5593b" + "e74775ce-06f5-4219-b6f3-8099f641b32b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2448,19 +2448,19 @@ "11998" ], "x-ms-request-id": [ - "64eeddfe-a545-4dba-98ab-0fad704636bd" + "fdfb31da-2184-408f-a28f-5ad15a817541" ], "x-ms-correlation-request-id": [ - "64eeddfe-a545-4dba-98ab-0fad704636bd" + "fdfb31da-2184-408f-a28f-5ad15a817541" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142344Z:64eeddfe-a545-4dba-98ab-0fad704636bd" + "CENTRALINDIA:20220512T110502Z:fdfb31da-2184-408f-a28f-5ad15a817541" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:23:43 GMT" + "Thu, 12 May 2022 11:05:02 GMT" ], "Content-Length": [ "22" @@ -2473,19 +2473,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/6bed1999-5acb-4013-a382-1260b84b52b2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL29wZXJhdGlvblJlc3VsdHMvNmJlZDE5OTktNWFjYi00MDEzLWEzODItMTI2MGI4NGI1MmIyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName/operationResults/ca7b2aaf-a8ae-4b28-8e1e-79e0cf5e9dc0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lL29wZXJhdGlvblJlc3VsdHMvY2E3YjJhYWYtYThhZS00YjI4LThlMWUtNzllMGNmNWU5ZGMwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83bd1bd0-f461-4526-bb38-403a2af5593b" + "e74775ce-06f5-4219-b6f3-8099f641b32b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2508,19 +2508,19 @@ "11997" ], "x-ms-request-id": [ - "e20da664-b2a1-4a6c-9ead-bfffed52294c" + "9242e699-00ab-4c0d-91d1-6fe6e87e4757" ], "x-ms-correlation-request-id": [ - "e20da664-b2a1-4a6c-9ead-bfffed52294c" + "9242e699-00ab-4c0d-91d1-6fe6e87e4757" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T142344Z:e20da664-b2a1-4a6c-9ead-bfffed52294c" + "CENTRALINDIA:20220512T110503Z:9242e699-00ab-4c0d-91d1-6fe6e87e4757" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:23:44 GMT" + "Thu, 12 May 2022 11:05:02 GMT" ], "Content-Type": [ "application/json" @@ -2530,19 +2530,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f72741fd-ab17-412b-9f15-c17c19dbb6c7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjcyNzQxZmQtYWIxNy00MTJiLTlmMTUtYzE3YzE5ZGJiNmM3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bd5afa61-e2d5-4638-9740-09c377623084?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmQ1YWZhNjEtZTJkNS00NjM4LTk3NDAtMDljMzc3NjIzMDg0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27cdde85-eb40-4044-aded-d218cec65018" + "77ab97d7-04f0-48f1-b33e-49fcf3f62fda" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2562,22 +2562,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-request-id": [ - "1cf1bb99-0453-4639-b281-937737dda5a1" + "51e92217-d32b-477b-aa1d-8c49d22b8e42" ], "x-ms-correlation-request-id": [ - "1cf1bb99-0453-4639-b281-937737dda5a1" + "51e92217-d32b-477b-aa1d-8c49d22b8e42" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142417Z:1cf1bb99-0453-4639-b281-937737dda5a1" + "JIOINDIACENTRAL:20220512T110536Z:51e92217-d32b-477b-aa1d-8c49d22b8e42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:24:16 GMT" + "Thu, 12 May 2022 11:05:35 GMT" ], "Content-Length": [ "22" @@ -2590,19 +2590,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/f72741fd-ab17-412b-9f15-c17c19dbb6c7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy9mNzI3NDFmZC1hYjE3LTQxMmItOWYxNS1jMTdjMTlkYmI2Yzc/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/bd5afa61-e2d5-4638-9740-09c377623084?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy9iZDVhZmE2MS1lMmQ1LTQ2MzgtOTc0MC0wOWMzNzc2MjMwODQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27cdde85-eb40-4044-aded-d218cec65018" + "77ab97d7-04f0-48f1-b33e-49fcf3f62fda" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2622,22 +2622,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-request-id": [ - "72a4fca7-ece2-4040-a6eb-d712fa64864a" + "4cbf8bbd-2a8d-402d-ace5-dd1d25c31671" ], "x-ms-correlation-request-id": [ - "72a4fca7-ece2-4040-a6eb-d712fa64864a" + "4cbf8bbd-2a8d-402d-ace5-dd1d25c31671" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142417Z:72a4fca7-ece2-4040-a6eb-d712fa64864a" + "JIOINDIACENTRAL:20220512T110536Z:4cbf8bbd-2a8d-402d-ace5-dd1d25c31671" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:24:17 GMT" + "Thu, 12 May 2022 11:05:35 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlOperationsCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlOperationsCmdlets.json index d334e31cfba2..e2e2d9f6e87b 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlOperationsCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlOperationsCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "45074c52-937a-40a2-94e5-48bbaf3ea196" + "311789a1-bbc6-4d21-93fe-b42d853bab57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "8c74afed-1763-4090-b1dc-c33c6b28ed85" + "51d4d058-2107-48a9-9f10-8219427e8e5a" ], "x-ms-correlation-request-id": [ - "8c74afed-1763-4090-b1dc-c33c6b28ed85" + "51d4d058-2107-48a9-9f10-8219427e8e5a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135100Z:8c74afed-1763-4090-b1dc-c33c6b28ed85" + "JIOINDIACENTRAL:20220512T103042Z:51d4d058-2107-48a9-9f10-8219427e8e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:50:59 GMT" + "Thu, 12 May 2022 10:30:42 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61f14bc-1666-4e71-a308-9e4d89b26201" + "d64431ae-59a6-4338-87e1-a6cc1cd98ba1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "8603a7c4-1711-4489-ab57-3d6e6e26ab3a" + "6d51abb1-51bc-4fc4-8734-282632a4b0b0" ], "x-ms-correlation-request-id": [ - "8603a7c4-1711-4489-ab57-3d6e6e26ab3a" + "6d51abb1-51bc-4fc4-8734-282632a4b0b0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135101Z:8603a7c4-1711-4489-ab57-3d6e6e26ab3a" + "JIOINDIACENTRAL:20220512T103044Z:6d51abb1-51bc-4fc4-8734-282632a4b0b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:51:01 GMT" + "Thu, 12 May 2022 10:30:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61f14bc-1666-4e71-a308-9e4d89b26201" + "d64431ae-59a6-4338-87e1-a6cc1cd98ba1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11987" ], "x-ms-request-id": [ - "12f5d2da-3c6c-427a-8169-9e19a79d6a9c" + "001bc0d6-4852-413e-8801-65d33e7416ad" ], "x-ms-correlation-request-id": [ - "12f5d2da-3c6c-427a-8169-9e19a79d6a9c" + "001bc0d6-4852-413e-8801-65d33e7416ad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135320Z:12f5d2da-3c6c-427a-8169-9e19a79d6a9c" + "JIOINDIACENTRAL:20220512T103257Z:001bc0d6-4852-413e-8801-65d33e7416ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:19 GMT" + "Thu, 12 May 2022 10:32:56 GMT" ], "Content-Length": [ - "2337" + "2336" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1\",\r\n \"name\": \"dbaccount60-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T13:52:53.7508349Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount60-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"4ab336cd-4865-49be-8ead-88d6dc430d1c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount60-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount60-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount60-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1\",\r\n \"name\": \"dbaccount60-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:32:02.222593Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount60-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"84c7d259-1754-4594-9455-86f8535f5f3a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount60-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount60-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount60-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b61f14bc-1666-4e71-a308-9e4d89b26201" + "d64431ae-59a6-4338-87e1-a6cc1cd98ba1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -219,13 +219,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/operationResults/ea2a2233-678c-49ad-9df8-2697e0fc1629?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/operationResults/e3813972-811a-43af-861e-c2a756e2e152?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ea2a2233-678c-49ad-9df8-2697e0fc1629" + "e3813972-811a-43af-861e-c2a756e2e152" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea2a2233-678c-49ad-9df8-2697e0fc1629?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e3813972-811a-43af-861e-c2a756e2e152?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,19 +237,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "95473191-9165-4f27-ad60-b70d684b1cc9" + "a7f6f912-20f1-46dd-84c0-3b32b7e02230" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135116Z:95473191-9165-4f27-ad60-b70d684b1cc9" + "JIOINDIACENTRAL:20220512T103055Z:a7f6f912-20f1-46dd-84c0-3b32b7e02230" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:51:15 GMT" + "Thu, 12 May 2022 10:30:55 GMT" ], "Content-Length": [ "2026" @@ -258,23 +258,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1\",\r\n \"name\": \"dbaccount60-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T13:51:08.4335197Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"4ab336cd-4865-49be-8ead-88d6dc430d1c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1\",\r\n \"name\": \"dbaccount60-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:30:52.6850545Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"84c7d259-1754-4594-9455-86f8535f5f3a\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount60-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea2a2233-678c-49ad-9df8-2697e0fc1629?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWEyYTIyMzMtNjc4Yy00OWFkLTlkZjgtMjY5N2UwZmMxNjI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e3813972-811a-43af-861e-c2a756e2e152?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTM4MTM5NzItODExYS00M2FmLTg2MWUtYzJhNzU2ZTJlMTUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61f14bc-1666-4e71-a308-9e4d89b26201" + "d64431ae-59a6-4338-87e1-a6cc1cd98ba1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -294,22 +294,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-request-id": [ - "9bd9515a-4a18-4671-8b45-0068fdbccdca" + "363118e2-8ee4-4039-aa81-2dad61ce21fe" ], "x-ms-correlation-request-id": [ - "9bd9515a-4a18-4671-8b45-0068fdbccdca" + "363118e2-8ee4-4039-aa81-2dad61ce21fe" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135147Z:9bd9515a-4a18-4671-8b45-0068fdbccdca" + "JIOINDIACENTRAL:20220512T103125Z:363118e2-8ee4-4039-aa81-2dad61ce21fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:51:47 GMT" + "Thu, 12 May 2022 10:31:25 GMT" ], "Content-Length": [ "21" @@ -322,19 +322,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea2a2233-678c-49ad-9df8-2697e0fc1629?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWEyYTIyMzMtNjc4Yy00OWFkLTlkZjgtMjY5N2UwZmMxNjI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e3813972-811a-43af-861e-c2a756e2e152?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTM4MTM5NzItODExYS00M2FmLTg2MWUtYzJhNzU2ZTJlMTUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61f14bc-1666-4e71-a308-9e4d89b26201" + "d64431ae-59a6-4338-87e1-a6cc1cd98ba1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -354,22 +354,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-request-id": [ - "c1f5eb35-42b3-4198-ad2b-8aab9781ddf2" + "d1a20ad3-b1d0-4493-82c7-d6bbc47defcb" ], "x-ms-correlation-request-id": [ - "c1f5eb35-42b3-4198-ad2b-8aab9781ddf2" + "d1a20ad3-b1d0-4493-82c7-d6bbc47defcb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135218Z:c1f5eb35-42b3-4198-ad2b-8aab9781ddf2" + "JIOINDIACENTRAL:20220512T103155Z:d1a20ad3-b1d0-4493-82c7-d6bbc47defcb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:52:17 GMT" + "Thu, 12 May 2022 10:31:55 GMT" ], "Content-Length": [ "21" @@ -382,19 +382,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea2a2233-678c-49ad-9df8-2697e0fc1629?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWEyYTIyMzMtNjc4Yy00OWFkLTlkZjgtMjY5N2UwZmMxNjI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e3813972-811a-43af-861e-c2a756e2e152?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTM4MTM5NzItODExYS00M2FmLTg2MWUtYzJhNzU2ZTJlMTUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61f14bc-1666-4e71-a308-9e4d89b26201" + "d64431ae-59a6-4338-87e1-a6cc1cd98ba1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -414,22 +414,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11989" ], "x-ms-request-id": [ - "df0197af-27f6-4e90-9c36-de1e8ef98b1a" + "01ccc3b5-853a-45b3-9eaf-610024c5a7f6" ], "x-ms-correlation-request-id": [ - "df0197af-27f6-4e90-9c36-de1e8ef98b1a" + "01ccc3b5-853a-45b3-9eaf-610024c5a7f6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135249Z:df0197af-27f6-4e90-9c36-de1e8ef98b1a" + "JIOINDIACENTRAL:20220512T103226Z:01ccc3b5-853a-45b3-9eaf-610024c5a7f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:52:48 GMT" + "Thu, 12 May 2022 10:32:25 GMT" ], "Content-Length": [ "21" @@ -442,19 +442,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea2a2233-678c-49ad-9df8-2697e0fc1629?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWEyYTIyMzMtNjc4Yy00OWFkLTlkZjgtMjY5N2UwZmMxNjI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e3813972-811a-43af-861e-c2a756e2e152?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTM4MTM5NzItODExYS00M2FmLTg2MWUtYzJhNzU2ZTJlMTUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61f14bc-1666-4e71-a308-9e4d89b26201" + "d64431ae-59a6-4338-87e1-a6cc1cd98ba1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -474,22 +474,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11988" ], "x-ms-request-id": [ - "c01f6adf-ada3-403c-972b-b082aa191a39" + "510f9723-5123-4164-b74c-06b902bfe21c" ], "x-ms-correlation-request-id": [ - "c01f6adf-ada3-403c-972b-b082aa191a39" + "510f9723-5123-4164-b74c-06b902bfe21c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135320Z:c01f6adf-ada3-403c-972b-b082aa191a39" + "JIOINDIACENTRAL:20220512T103256Z:510f9723-5123-4164-b74c-06b902bfe21c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:19 GMT" + "Thu, 12 May 2022 10:32:55 GMT" ], "Content-Length": [ "22" @@ -502,22 +502,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12faeeda-7137-438d-a888-d0e397520d4f" + "84ec8f8d-0a53-4038-8559-dafa5910cf60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,47 +537,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "d5012ba2-c908-4708-a0fc-e20a2210f677" + "3b1f1ffe-f04f-40bf-9823-d84fa07b41c2" ], "x-ms-correlation-request-id": [ - "d5012ba2-c908-4708-a0fc-e20a2210f677" + "3b1f1ffe-f04f-40bf-9823-d84fa07b41c2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135320Z:d5012ba2-c908-4708-a0fc-e20a2210f677" + "JIOINDIACENTRAL:20220512T103258Z:3b1f1ffe-f04f-40bf-9823-d84fa07b41c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:20 GMT" + "Thu, 12 May 2022 10:32:58 GMT" ], "Content-Length": [ - "5579" + "6289" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 12faeeda-7137-438d-a888-d0e397520d4f, Request URI: /apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824246s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:53:20.8539868Z, RequestEndTime: 2022-03-08T13:53:20.8539868Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:52:14.1652597Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.331,\\\\\\\"memory\\\\\\\":627990412.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0236,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:52:34.1748763Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.966,\\\\\\\"memory\\\\\\\":626359288.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0139,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:52:44.1846854Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.808,\\\\\\\"memory\\\\\\\":626175784.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:52:54.1944889Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.972,\\\\\\\"memory\\\\\\\":630810160.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0162,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:04.1943011Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.262,\\\\\\\"memory\\\\\\\":630423748.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:14.1941110Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.989,\\\\\\\"memory\\\\\\\":629966708.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0099,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:53:20.8539868Z; ResponseTime: 2022-03-08T13:53:20.8539868Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824246s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.074, ActivityId: 12faeeda-7137-438d-a888-d0e397520d4f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8539868Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0076},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8539944Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8539975Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0955},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8540930Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5519},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8556449Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0432},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8556881Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:53:20.8539868Z; ResponseTime: 2022-03-08T13:53:20.8539868Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824244s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.745, ActivityId: 12faeeda-7137-438d-a888-d0e397520d4f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8539868Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8539899Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8539912Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0535},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8540447Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2621},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8553068Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0778},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:20.8553846Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 84ec8f8d-0a53-4038-8559-dafa5910cf60, Request URI: /apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217047s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:32:58.7220278Z, RequestEndTime: 2022-05-12T10:32:58.7220278Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:31:59.8234151Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.285,\\\\\\\"memory\\\\\\\":651161648.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0154,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:32:09.8331727Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.478,\\\\\\\"memory\\\\\\\":651142328.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0147,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:32:19.8429190Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.212,\\\\\\\"memory\\\\\\\":651066392.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0191,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:32:29.8426960Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.476,\\\\\\\"memory\\\\\\\":650961556.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.013,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:32:39.8524761Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.495,\\\\\\\"memory\\\\\\\":650647736.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0372,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:32:49.8622441Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.464,\\\\\\\"memory\\\\\\\":650539400.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:32:58.7220278Z; ResponseTime: 2022-05-12T10:32:58.7220278Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217047s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.437, ActivityId: 84ec8f8d-0a53-4038-8559-dafa5910cf60, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7220278Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0056},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7220334Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7220353Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0912},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7221265Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9787},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7241052Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0573},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7241625Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:32:58.6720381Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:32:58.6720381Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:32:58.6720381Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":451,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:32:58.7220278Z; ResponseTime: 2022-05-12T10:32:58.7220278Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217045s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.327, ActivityId: 84ec8f8d-0a53-4038-8559-dafa5910cf60, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7220278Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0029},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7220307Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.001},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7220317Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0522},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7220839Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8207},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7239046Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1478},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:32:58.7240524Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:32:58.6720381Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:32:58.6720381Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:32:58.6720381Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":451,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12faeeda-7137-438d-a888-d0e397520d4f" + "84ec8f8d-0a53-4038-8559-dafa5910cf60" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "116f4cf4-3021-48ad-8526-f79e1b90f79c" + "9d5eb01d-f39e-4d2e-89e1-2a2e2e6d9197" ], "x-ms-correlation-request-id": [ - "116f4cf4-3021-48ad-8526-f79e1b90f79c" + "9d5eb01d-f39e-4d2e-89e1-2a2e2e6d9197" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135353Z:116f4cf4-3021-48ad-8526-f79e1b90f79c" + "JIOINDIACENTRAL:20220512T103331Z:9d5eb01d-f39e-4d2e-89e1-2a2e2e6d9197" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:52 GMT" + "Thu, 12 May 2022 10:33:31 GMT" ], "Content-Length": [ "445" @@ -621,26 +621,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"DMQ0AA==\",\r\n \"_self\": \"dbs/DMQ0AA==/\",\r\n \"_etag\": \"\\\"00007608-0000-0100-0000-62275fd50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646747605\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"CMB8AA==\",\r\n \"_self\": \"dbs/CMB8AA==/\",\r\n \"_etag\": \"\\\"0000c930-0000-0100-0000-627ce2610000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652351585\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52922421-b00c-4d02-9f6b-4952afc96c93" + "72bb6d1c-d102-4502-a524-fcb5e29f0931" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -660,22 +660,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "760554dc-a5c6-4baa-b5e4-f726d10bf518" + "7e73e547-4f14-4d18-90df-b1934bfc3f58" ], "x-ms-correlation-request-id": [ - "760554dc-a5c6-4baa-b5e4-f726d10bf518" + "7e73e547-4f14-4d18-90df-b1934bfc3f58" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135353Z:760554dc-a5c6-4baa-b5e4-f726d10bf518" + "JIOINDIACENTRAL:20220512T103334Z:7e73e547-4f14-4d18-90df-b1934bfc3f58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:53 GMT" + "Thu, 12 May 2022 10:33:33 GMT" ], "Content-Length": [ "445" @@ -684,26 +684,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"DMQ0AA==\",\r\n \"_self\": \"dbs/DMQ0AA==/\",\r\n \"_etag\": \"\\\"00007608-0000-0100-0000-62275fd50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646747605\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"CMB8AA==\",\r\n \"_self\": \"dbs/CMB8AA==/\",\r\n \"_etag\": \"\\\"0000c930-0000-0100-0000-627ce2610000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652351585\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76a61d52-4792-4cab-b800-ba11f360d0e1" + "42f6b25e-42bd-4600-a173-20f3b0330483" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -723,22 +723,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11993" ], "x-ms-request-id": [ - "6c27bf69-fb78-4e70-ae50-95fdbdadb29d" + "87320854-8c13-4b14-bbc0-1ef6a656a596" ], "x-ms-correlation-request-id": [ - "6c27bf69-fb78-4e70-ae50-95fdbdadb29d" + "87320854-8c13-4b14-bbc0-1ef6a656a596" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135607Z:6c27bf69-fb78-4e70-ae50-95fdbdadb29d" + "JIOINDIACENTRAL:20220512T103611Z:87320854-8c13-4b14-bbc0-1ef6a656a596" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:06 GMT" + "Thu, 12 May 2022 10:36:11 GMT" ], "Content-Length": [ "445" @@ -747,26 +747,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"DMQ0AA==\",\r\n \"_self\": \"dbs/DMQ0AA==/\",\r\n \"_etag\": \"\\\"00007608-0000-0100-0000-62275fd50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646747605\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"CMB8AA==\",\r\n \"_self\": \"dbs/CMB8AA==/\",\r\n \"_etag\": \"\\\"0000c930-0000-0100-0000-627ce2610000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652351585\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "160ec7d4-f8d2-4efa-bab3-a1b7c32634f4" + "311112d2-290a-4e7a-ad0e-46fa0dba0086" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -786,22 +786,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11991" ], "x-ms-request-id": [ - "cf638601-7e68-4009-86ba-7eaf7b0a43bc" + "cd25124c-2446-4c33-bb0f-3c6818a025aa" ], "x-ms-correlation-request-id": [ - "cf638601-7e68-4009-86ba-7eaf7b0a43bc" + "cd25124c-2446-4c33-bb0f-3c6818a025aa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135608Z:cf638601-7e68-4009-86ba-7eaf7b0a43bc" + "JIOINDIACENTRAL:20220512T103616Z:cd25124c-2446-4c33-bb0f-3c6818a025aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:07 GMT" + "Thu, 12 May 2022 10:36:16 GMT" ], "Content-Length": [ "445" @@ -810,23 +810,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"DMQ0AA==\",\r\n \"_self\": \"dbs/DMQ0AA==/\",\r\n \"_etag\": \"\\\"00007608-0000-0100-0000-62275fd50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646747605\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"CMB8AA==\",\r\n \"_self\": \"dbs/CMB8AA==/\",\r\n \"_etag\": \"\\\"0000c930-0000-0100-0000-627ce2610000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652351585\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "160ec7d4-f8d2-4efa-bab3-a1b7c32634f4" + "311112d2-290a-4e7a-ad0e-46fa0dba0086" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -846,22 +846,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11989" ], "x-ms-request-id": [ - "e2ae554d-40be-4c5e-a186-560cb5a8fb52" + "b0f6f85b-e57b-42f1-b221-61dee6db098c" ], "x-ms-correlation-request-id": [ - "e2ae554d-40be-4c5e-a186-560cb5a8fb52" + "b0f6f85b-e57b-42f1-b221-61dee6db098c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135639Z:e2ae554d-40be-4c5e-a186-560cb5a8fb52" + "JIOINDIACENTRAL:20220512T103650Z:b0f6f85b-e57b-42f1-b221-61dee6db098c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:39 GMT" + "Thu, 12 May 2022 10:36:49 GMT" ], "Content-Length": [ "445" @@ -870,26 +870,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"DMQ0AA==\",\r\n \"_self\": \"dbs/DMQ0AA==/\",\r\n \"_etag\": \"\\\"00007608-0000-0100-0000-62275fd50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646747605\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"CMB8AA==\",\r\n \"_self\": \"dbs/CMB8AA==/\",\r\n \"_etag\": \"\\\"0000c930-0000-0100-0000-627ce2610000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652351585\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12faeeda-7137-438d-a888-d0e397520d4f" + "84ec8f8d-0a53-4038-8559-dafa5910cf60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -906,13 +906,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/b996c2d5-da3e-4598-a729-a12fe118253e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/d7948810-1337-473e-971e-798c4e9c2d08?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b996c2d5-da3e-4598-a729-a12fe118253e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d7948810-1337-473e-971e-798c4e9c2d08?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b996c2d5-da3e-4598-a729-a12fe118253e" + "d7948810-1337-473e-971e-798c4e9c2d08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,19 +924,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "291e00cd-e03a-45da-b827-86bbb4692bb6" + "7f80be1b-dba5-4a38-96d3-46f698672e24" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135321Z:291e00cd-e03a-45da-b827-86bbb4692bb6" + "JIOINDIACENTRAL:20220512T103300Z:7f80be1b-dba5-4a38-96d3-46f698672e24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:20 GMT" + "Thu, 12 May 2022 10:33:00 GMT" ], "Content-Length": [ "21" @@ -949,22 +949,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "160ec7d4-f8d2-4efa-bab3-a1b7c32634f4" + "311112d2-290a-4e7a-ad0e-46fa0dba0086" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,13 +981,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/355e18d7-5fb1-419c-9ffb-f07fcc0b9d96?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/71461831-4031-48df-b63e-09483837c596?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/355e18d7-5fb1-419c-9ffb-f07fcc0b9d96?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/71461831-4031-48df-b63e-09483837c596?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "355e18d7-5fb1-419c-9ffb-f07fcc0b9d96" + "71461831-4031-48df-b63e-09483837c596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,19 +999,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "4fcea84c-3166-4b2a-b849-93f8126385d7" + "cc325644-9d55-4635-84b7-efc9f8fa41c5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135609Z:4fcea84c-3166-4b2a-b849-93f8126385d7" + "JIOINDIACENTRAL:20220512T103618Z:cc325644-9d55-4635-84b7-efc9f8fa41c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:08 GMT" + "Thu, 12 May 2022 10:36:18 GMT" ], "Content-Length": [ "21" @@ -1024,19 +1024,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b996c2d5-da3e-4598-a729-a12fe118253e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjk5NmMyZDUtZGEzZS00NTk4LWE3MjktYTEyZmUxMTgyNTNlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d7948810-1337-473e-971e-798c4e9c2d08?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDc5NDg4MTAtMTMzNy00NzNlLTk3MWUtNzk4YzRlOWMyZDA4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12faeeda-7137-438d-a888-d0e397520d4f" + "84ec8f8d-0a53-4038-8559-dafa5910cf60" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1056,22 +1056,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "e635f9a2-9ce1-467c-88f1-623e389ed0d4" + "350fbb12-008e-47a4-9c00-57334b35652b" ], "x-ms-correlation-request-id": [ - "e635f9a2-9ce1-467c-88f1-623e389ed0d4" + "350fbb12-008e-47a4-9c00-57334b35652b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135352Z:e635f9a2-9ce1-467c-88f1-623e389ed0d4" + "JIOINDIACENTRAL:20220512T103331Z:350fbb12-008e-47a4-9c00-57334b35652b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:52 GMT" + "Thu, 12 May 2022 10:33:30 GMT" ], "Content-Length": [ "22" @@ -1084,22 +1084,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69bd41f3-d19e-412f-9831-265564f677bf" + "3c304238-2acc-4d4f-9637-79b290a038d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1119,47 +1119,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "84750c43-6265-4042-a73f-ef5f07f8e200" + "6824c44e-2bf1-46e4-a31b-e9ce38d17050" ], "x-ms-correlation-request-id": [ - "84750c43-6265-4042-a73f-ef5f07f8e200" + "6824c44e-2bf1-46e4-a31b-e9ce38d17050" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135353Z:84750c43-6265-4042-a73f-ef5f07f8e200" + "JIOINDIACENTRAL:20220512T103335Z:6824c44e-2bf1-46e4-a31b-e9ce38d17050" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:53 GMT" + "Thu, 12 May 2022 10:33:34 GMT" ], "Content-Length": [ - "5599" + "6311" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 69bd41f3-d19e-412f-9831-265564f677bf, Request URI: /apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824245s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:53:53.6046210Z, RequestEndTime: 2022-03-08T13:53:53.6046210Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:00.8054406Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.124,\\\\\\\"memory\\\\\\\":629801676.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0156,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:10.8152921Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.122,\\\\\\\"memory\\\\\\\":629245500.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0166,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:20.8151524Z\\\\\\\",\\\\\\\"cpu\\\\\\\":7.015,\\\\\\\"memory\\\\\\\":631381784.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0199,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:30.8250895Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.509,\\\\\\\"memory\\\\\\\":630568724.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0097,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:40.8348551Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.173,\\\\\\\"memory\\\\\\\":630067352.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0171,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:50.8446701Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.649,\\\\\\\"memory\\\\\\\":629917800.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0114,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:53:53.6046210Z; ResponseTime: 2022-03-08T13:53:53.6046210Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824245s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.802, ActivityId: 69bd41f3-d19e-412f-9831-265564f677bf, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6046210Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0159},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6046369Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0036},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6046405Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2058},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6048463Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0125},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6058588Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0743},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6059331Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:53:53.6046210Z; ResponseTime: 2022-03-08T13:53:53.6046210Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824246s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.13, ActivityId: 69bd41f3-d19e-412f-9831-265564f677bf, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6046210Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0045},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6046255Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0018},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6046273Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1514},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6047787Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3803},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6061590Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0239},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:53:53.6061829Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 3c304238-2acc-4d4f-9637-79b290a038d9, Request URI: /apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217046s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:33:35.0211722Z, RequestEndTime: 2022-05-12T10:33:35.0211722Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:32:39.8524761Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.495,\\\\\\\"memory\\\\\\\":650647736.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0372,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:32:49.8622441Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.464,\\\\\\\"memory\\\\\\\":650539400.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:32:59.8720007Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.458,\\\\\\\"memory\\\\\\\":650443100.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0341,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:09.8817644Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.408,\\\\\\\"memory\\\\\\\":650449668.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0416,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:19.8915359Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.288,\\\\\\\"memory\\\\\\\":650334956.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0162,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:29.9012951Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.077,\\\\\\\"memory\\\\\\\":651118972.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0172,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:33:35.0211722Z; ResponseTime: 2022-05-12T10:33:35.0211722Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217046s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.05, ActivityId: 3c304238-2acc-4d4f-9637-79b290a038d9, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0211722Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0145},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0211867Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0099},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0211966Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1873},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0213839Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4599},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0228438Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0631},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0229069Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":2},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:33:33.0812197Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:33:33.0812197Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:33:33.0812197Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:33:35.0211722Z; ResponseTime: 2022-05-12T10:33:35.0211722Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217045s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.784, ActivityId: 3c304238-2acc-4d4f-9637-79b290a038d9, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0211722Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0039},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0211761Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0211772Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1442},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0213214Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.5075},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0238289Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1877},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:33:35.0240166Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:33:34.9711734Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:33:34.9711734Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:33:34.9711734Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69bd41f3-d19e-412f-9831-265564f677bf" + "3c304238-2acc-4d4f-9637-79b290a038d9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1179,22 +1179,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-request-id": [ - "933ced8f-4c3f-438f-b758-90ae845c35ce" + "3d994b55-12b9-412d-a942-1592654409fb" ], "x-ms-correlation-request-id": [ - "933ced8f-4c3f-438f-b758-90ae845c35ce" + "3d994b55-12b9-412d-a942-1592654409fb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135425Z:933ced8f-4c3f-438f-b758-90ae845c35ce" + "JIOINDIACENTRAL:20220512T103408Z:3d994b55-12b9-412d-a942-1592654409fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:25 GMT" + "Thu, 12 May 2022 10:34:07 GMT" ], "Content-Length": [ "1492" @@ -1203,26 +1203,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"DMQ0AJE2Bt4=\",\r\n \"_ts\": 1646747642,\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/\",\r\n \"_etag\": \"\\\"00007808-0000-0100-0000-62275ffa0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"CMB8APERdUw=\",\r\n \"_ts\": 1652351623,\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/\",\r\n \"_etag\": \"\\\"0000cb30-0000-0100-0000-627ce2870000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1791158d-4250-41f0-a2d8-91351532ea5e" + "13494067-04dd-4f2c-8cf4-0965b9585930" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1242,22 +1242,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11988" ], "x-ms-request-id": [ - "2c04dd5f-3321-4e70-a5e4-8c35e8aca7c5" + "37b4a7ea-cac6-46dc-8e3f-438cd1b60df8" ], "x-ms-correlation-request-id": [ - "2c04dd5f-3321-4e70-a5e4-8c35e8aca7c5" + "37b4a7ea-cac6-46dc-8e3f-438cd1b60df8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135426Z:2c04dd5f-3321-4e70-a5e4-8c35e8aca7c5" + "JIOINDIACENTRAL:20220512T103409Z:37b4a7ea-cac6-46dc-8e3f-438cd1b60df8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:25 GMT" + "Thu, 12 May 2022 10:34:09 GMT" ], "Content-Length": [ "1492" @@ -1266,26 +1266,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"DMQ0AJE2Bt4=\",\r\n \"_ts\": 1646747642,\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/\",\r\n \"_etag\": \"\\\"00007808-0000-0100-0000-62275ffa0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"CMB8APERdUw=\",\r\n \"_ts\": 1652351623,\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/\",\r\n \"_etag\": \"\\\"0000cb30-0000-0100-0000-627ce2870000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9430ffef-2041-4849-868c-73aeca7f1818" + "5258bed2-1ade-412b-b39d-b415104b9070" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1305,22 +1305,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11979" ], "x-ms-request-id": [ - "42eee740-e733-4c2c-b67f-5a6be8df6233" + "200eda2a-18c2-4b72-945e-5a9c4f31b83f" ], "x-ms-correlation-request-id": [ - "42eee740-e733-4c2c-b67f-5a6be8df6233" + "200eda2a-18c2-4b72-945e-5a9c4f31b83f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135607Z:42eee740-e733-4c2c-b67f-5a6be8df6233" + "JIOINDIACENTRAL:20220512T103612Z:200eda2a-18c2-4b72-945e-5a9c4f31b83f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:06 GMT" + "Thu, 12 May 2022 10:36:11 GMT" ], "Content-Length": [ "1494" @@ -1329,26 +1329,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"DMQ0AJE2Bt4=\",\r\n \"_ts\": 1646747642,\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/\",\r\n \"_etag\": \"\\\"00007808-0000-0100-0000-62275ffa0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"CMB8APERdUw=\",\r\n \"_ts\": 1652351623,\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/\",\r\n \"_etag\": \"\\\"0000cb30-0000-0100-0000-627ce2870000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1010ddf5-9b70-4497-993f-b442444afe5c" + "6b8b5b97-f06c-4468-baf1-b3b6463412e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1368,47 +1368,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11999" ], "x-ms-request-id": [ - "13e36753-f1d7-4810-91bb-a676e84cda21" + "248506d2-390e-4851-9cd1-72ed367d6c07" ], "x-ms-correlation-request-id": [ - "13e36753-f1d7-4810-91bb-a676e84cda21" + "248506d2-390e-4851-9cd1-72ed367d6c07" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135640Z:13e36753-f1d7-4810-91bb-a676e84cda21" + "JIOINDIACENTRAL:20220512T103651Z:248506d2-390e-4851-9cd1-72ed367d6c07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:40 GMT" + "Thu, 12 May 2022 10:36:50 GMT" ], "Content-Length": [ - "1494" + "1492" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"DMQ0AJE2Bt4=\",\r\n \"_ts\": 1646747642,\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/\",\r\n \"_etag\": \"\\\"00007808-0000-0100-0000-62275ffa0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"CMB8APERdUw=\",\r\n \"_ts\": 1652351623,\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/\",\r\n \"_etag\": \"\\\"0000cb30-0000-0100-0000-627ce2870000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1010ddf5-9b70-4497-993f-b442444afe5c" + "6b8b5b97-f06c-4468-baf1-b3b6463412e3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1428,22 +1428,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11997" ], "x-ms-request-id": [ - "442224cf-e6ed-4cdb-bce4-0d0ee7e1194b" + "2624c693-7d59-4ad4-9dac-4b7a9ed61511" ], "x-ms-correlation-request-id": [ - "442224cf-e6ed-4cdb-bce4-0d0ee7e1194b" + "2624c693-7d59-4ad4-9dac-4b7a9ed61511" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135711Z:442224cf-e6ed-4cdb-bce4-0d0ee7e1194b" + "JIOINDIACENTRAL:20220512T103724Z:2624c693-7d59-4ad4-9dac-4b7a9ed61511" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:57:10 GMT" + "Thu, 12 May 2022 10:37:24 GMT" ], "Content-Length": [ "1494" @@ -1452,26 +1452,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"DMQ0AJE2Bt4=\",\r\n \"_ts\": 1646747642,\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/\",\r\n \"_etag\": \"\\\"00007808-0000-0100-0000-62275ffa0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"CMB8APERdUw=\",\r\n \"_ts\": 1652351623,\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/\",\r\n \"_etag\": \"\\\"0000cb30-0000-0100-0000-627ce2870000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"Consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\",\r\n \"indexes\": [\r\n {\r\n \"dataType\": \"String\",\r\n \"precision\": -1,\r\n \"kind\": \"Hash\"\r\n },\r\n {\r\n \"dataType\": \"String\",\r\n \"precision\": -1,\r\n \"kind\": \"Hash\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"Ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"Descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"Descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"Ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "69bd41f3-d19e-412f-9831-265564f677bf" + "3c304238-2acc-4d4f-9637-79b290a038d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1488,13 +1488,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/52e71474-436b-48ce-9f1d-1c0891c0df2f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/7c4a69d7-8223-49c6-885f-566100bf3541?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/52e71474-436b-48ce-9f1d-1c0891c0df2f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7c4a69d7-8223-49c6-885f-566100bf3541?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "52e71474-436b-48ce-9f1d-1c0891c0df2f" + "7c4a69d7-8223-49c6-885f-566100bf3541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1506,19 +1506,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "03e1a03c-7af5-495a-8f94-114d3f3f8007" + "42e9306b-28e7-4303-8aa5-d8e0366bb422" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135354Z:03e1a03c-7af5-495a-8f94-114d3f3f8007" + "JIOINDIACENTRAL:20220512T103336Z:42e9306b-28e7-4303-8aa5-d8e0366bb422" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:53:53 GMT" + "Thu, 12 May 2022 10:33:35 GMT" ], "Content-Length": [ "21" @@ -1531,22 +1531,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1010ddf5-9b70-4497-993f-b442444afe5c" + "6b8b5b97-f06c-4468-baf1-b3b6463412e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1563,13 +1563,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/601db817-10e8-4130-8108-a4296cad336c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/9e3d1db7-c532-4d55-9e00-776a356d7135?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/601db817-10e8-4130-8108-a4296cad336c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e3d1db7-c532-4d55-9e00-776a356d7135?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "601db817-10e8-4130-8108-a4296cad336c" + "9e3d1db7-c532-4d55-9e00-776a356d7135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,19 +1581,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "c0de5e8b-068c-4e4b-81fa-6e88669ad5f6" + "d03f0ddd-9ad4-4c9d-be5e-f638fd2a4e08" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135640Z:c0de5e8b-068c-4e4b-81fa-6e88669ad5f6" + "JIOINDIACENTRAL:20220512T103653Z:d03f0ddd-9ad4-4c9d-be5e-f638fd2a4e08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:40 GMT" + "Thu, 12 May 2022 10:36:52 GMT" ], "Content-Length": [ "21" @@ -1606,19 +1606,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/52e71474-436b-48ce-9f1d-1c0891c0df2f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTJlNzE0NzQtNDM2Yi00OGNlLTlmMWQtMWMwODkxYzBkZjJmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7c4a69d7-8223-49c6-885f-566100bf3541?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2M0YTY5ZDctODIyMy00OWM2LTg4NWYtNTY2MTAwYmYzNTQxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69bd41f3-d19e-412f-9831-265564f677bf" + "3c304238-2acc-4d4f-9637-79b290a038d9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1638,22 +1638,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "975d0ae1-fd0c-4c1b-8f2c-3c591a39f936" + "482fe683-8579-4ad8-bcbb-4a09cd86b187" ], "x-ms-correlation-request-id": [ - "975d0ae1-fd0c-4c1b-8f2c-3c591a39f936" + "482fe683-8579-4ad8-bcbb-4a09cd86b187" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135425Z:975d0ae1-fd0c-4c1b-8f2c-3c591a39f936" + "JIOINDIACENTRAL:20220512T103407Z:482fe683-8579-4ad8-bcbb-4a09cd86b187" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:24 GMT" + "Thu, 12 May 2022 10:34:06 GMT" ], "Content-Length": [ "22" @@ -1666,22 +1666,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d2bb43-124d-462c-9377-a8380e208558" + "96188336-291a-4384-b956-dad5176ddc4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1701,47 +1701,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-request-id": [ - "398ef527-69be-4ba6-9c19-b047c4026cdf" + "c168f993-35d6-4642-a008-63586a854a83" ], "x-ms-correlation-request-id": [ - "398ef527-69be-4ba6-9c19-b047c4026cdf" + "c168f993-35d6-4642-a008-63586a854a83" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135426Z:398ef527-69be-4ba6-9c19-b047c4026cdf" + "JIOINDIACENTRAL:20220512T103412Z:c168f993-35d6-4642-a008-63586a854a83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:26 GMT" + "Thu, 12 May 2022 10:34:11 GMT" ], "Content-Length": [ - "5704" + "6415" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: c1d2bb43-124d-462c-9377-a8380e208558, Request URI: /apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109037s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:54:26.5090475Z, RequestEndTime: 2022-03-08T13:54:26.5090475Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:35.7294573Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.007,\\\\\\\"memory\\\\\\\":629363520.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0114,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:45.7393340Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.483,\\\\\\\"memory\\\\\\\":629060532.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0455,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:53:55.7492100Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.803,\\\\\\\"memory\\\\\\\":628093912.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0168,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:05.7590764Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.717,\\\\\\\"memory\\\\\\\":627857836.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0149,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:15.7689616Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.559,\\\\\\\"memory\\\\\\\":627607744.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:25.7688311Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.193,\\\\\\\"memory\\\\\\\":626928484.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0171,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:54:26.5090475Z; ResponseTime: 2022-03-08T13:54:26.5090475Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14120/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109037s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.71, ActivityId: c1d2bb43-124d-462c-9377-a8380e208558, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5090475Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0073},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5090548Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0032},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5090580Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2778},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5093358Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1422},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5104780Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.153},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5106310Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":541,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:54:26.5090475Z; ResponseTime: 2022-03-08T13:54:26.5090475Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14424/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109038s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.683, ActivityId: c1d2bb43-124d-462c-9377-a8380e208558, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5090475Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0043},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5090518Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0017},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5090535Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1617},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5092152Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2259},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5104411Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0514},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:26.5104925Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":541,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 96188336-291a-4384-b956-dad5176ddc4d, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100133s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:34:12.2820104Z, RequestEndTime: 2022-05-12T10:34:12.3020101Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:17.9529745Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.707,\\\\\\\"memory\\\\\\\":653897072.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0134,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:27.9628133Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.253,\\\\\\\"memory\\\\\\\":653572912.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0143,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:37.9726527Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.235,\\\\\\\"memory\\\\\\\":653746920.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0251,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:47.9824753Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.579,\\\\\\\"memory\\\\\\\":653558148.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0155,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:57.9923121Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.241,\\\\\\\"memory\\\\\\\":653613168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0105,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:08.0021342Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.564,\\\\\\\"memory\\\\\\\":653374912.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0117,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:34:12.2820104Z; ResponseTime: 2022-05-12T10:34:12.3020101Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14358/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100133s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, BELatencyMs: 1.094, ActivityId: 96188336-291a-4384-b956-dad5176ddc4d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2820104Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0082},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2820186Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0099},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2820285Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1852},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2822137Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6397},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2838534Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0632},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2839166Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:25:55.4203460Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:25:55.4203460Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:25:55.4203460Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":551,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:34:12.2820104Z; ResponseTime: 2022-05-12T10:34:12.3020101Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14014/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100134s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, BELatencyMs: 1, ActivityId: 96188336-291a-4384-b956-dad5176ddc4d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2820104Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0037},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2820141Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 14.3349},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2963490Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1569},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2965059Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6802},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2981861Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.052},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:12.2982381Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"True\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:34:12.2920095Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:34:12.2920095Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:34:12.2920095Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":551,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d2bb43-124d-462c-9377-a8380e208558" + "96188336-291a-4384-b956-dad5176ddc4d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1761,22 +1761,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11994" ], "x-ms-request-id": [ - "c50f4ad5-3261-4123-adec-64c0d5c755ec" + "5286cd9d-3280-4cfb-810d-cca23d398a57" ], "x-ms-correlation-request-id": [ - "c50f4ad5-3261-4123-adec-64c0d5c755ec" + "5286cd9d-3280-4cfb-810d-cca23d398a57" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135458Z:c50f4ad5-3261-4123-adec-64c0d5c755ec" + "JIOINDIACENTRAL:20220512T103446Z:5286cd9d-3280-4cfb-810d-cca23d398a57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:57 GMT" + "Thu, 12 May 2022 10:34:45 GMT" ], "Content-Length": [ "700" @@ -1785,26 +1785,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/sprocs/DMQ0AJE2Bt4BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8d0012c2-0000-0100-0000-622760170000\\\"\",\r\n \"_ts\": 1646747671\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/sprocs/CMB8APERdUwBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"08000163-0000-0100-0000-627ce2aa0000\\\"\",\r\n \"_ts\": 1652351658\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0410af5-5922-4736-91f9-4fd75a622fcf" + "d62b0a07-e242-46e1-be5c-84987ac8e907" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1824,22 +1824,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11987" ], "x-ms-request-id": [ - "ee3880da-dcc6-4677-83ca-0a33e62e28e5" + "11fbd1b1-70bc-44c5-ae92-7b13ec161cf0" ], "x-ms-correlation-request-id": [ - "ee3880da-dcc6-4677-83ca-0a33e62e28e5" + "11fbd1b1-70bc-44c5-ae92-7b13ec161cf0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135458Z:ee3880da-dcc6-4677-83ca-0a33e62e28e5" + "JIOINDIACENTRAL:20220512T103447Z:11fbd1b1-70bc-44c5-ae92-7b13ec161cf0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:58 GMT" + "Thu, 12 May 2022 10:34:46 GMT" ], "Content-Length": [ "700" @@ -1848,26 +1848,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/sprocs/DMQ0AJE2Bt4BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8d0012c2-0000-0100-0000-622760170000\\\"\",\r\n \"_ts\": 1646747671\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/sprocs/CMB8APERdUwBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"08000163-0000-0100-0000-627ce2aa0000\\\"\",\r\n \"_ts\": 1652351658\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af60ec0b-ee5c-46b3-b8a5-9a52bdeee90d" + "da706103-e2ca-4e48-9330-1afe4e1b3503" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1887,22 +1887,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11992" ], "x-ms-request-id": [ - "c96ca79c-ba94-4b6a-8a60-e7c91fbb42eb" + "db330d01-66c5-4c36-817b-3d8e3d6f611e" ], "x-ms-correlation-request-id": [ - "c96ca79c-ba94-4b6a-8a60-e7c91fbb42eb" + "db330d01-66c5-4c36-817b-3d8e3d6f611e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135607Z:c96ca79c-ba94-4b6a-8a60-e7c91fbb42eb" + "JIOINDIACENTRAL:20220512T103613Z:db330d01-66c5-4c36-817b-3d8e3d6f611e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:06 GMT" + "Thu, 12 May 2022 10:36:12 GMT" ], "Content-Length": [ "700" @@ -1911,26 +1911,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/sprocs/DMQ0AJE2Bt4BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8d0012c2-0000-0100-0000-622760170000\\\"\",\r\n \"_ts\": 1646747671\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/sprocs/CMB8APERdUwBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"08000163-0000-0100-0000-627ce2aa0000\\\"\",\r\n \"_ts\": 1652351658\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2366e751-fad7-41e8-88c3-40f48fc3a330" + "b502f1a5-ea24-43d1-80a4-b7038c9c95d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1950,22 +1950,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11990" ], "x-ms-request-id": [ - "a5ba8826-94a8-46ad-9530-76d11d462f08" + "647d7d94-19a9-4daa-a3c6-d345935278e9" ], "x-ms-correlation-request-id": [ - "a5ba8826-94a8-46ad-9530-76d11d462f08" + "647d7d94-19a9-4daa-a3c6-d345935278e9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135711Z:a5ba8826-94a8-46ad-9530-76d11d462f08" + "JIOINDIACENTRAL:20220512T103726Z:647d7d94-19a9-4daa-a3c6-d345935278e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:57:11 GMT" + "Thu, 12 May 2022 10:37:26 GMT" ], "Content-Length": [ "700" @@ -1974,23 +1974,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/sprocs/DMQ0AJE2Bt4BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8d0012c2-0000-0100-0000-622760170000\\\"\",\r\n \"_ts\": 1646747671\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/sprocs/CMB8APERdUwBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"08000163-0000-0100-0000-627ce2aa0000\\\"\",\r\n \"_ts\": 1652351658\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2366e751-fad7-41e8-88c3-40f48fc3a330" + "b502f1a5-ea24-43d1-80a4-b7038c9c95d6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2010,22 +2010,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11988" ], "x-ms-request-id": [ - "0a9d0541-dec9-4163-9378-97e30e4d9c2a" + "eebd5738-e2da-426a-8b0f-4f321d00b8dc" ], "x-ms-correlation-request-id": [ - "0a9d0541-dec9-4163-9378-97e30e4d9c2a" + "eebd5738-e2da-426a-8b0f-4f321d00b8dc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135743Z:0a9d0541-dec9-4163-9378-97e30e4d9c2a" + "JIOINDIACENTRAL:20220512T103800Z:eebd5738-e2da-426a-8b0f-4f321d00b8dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:57:42 GMT" + "Thu, 12 May 2022 10:37:59 GMT" ], "Content-Length": [ "613" @@ -2034,26 +2034,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/sprocs/DMQ0AJE2Bt4BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8d001cc3-0000-0100-0000-622760bc0000\\\"\",\r\n \"_ts\": 1646747836\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/sprocs/CMB8APERdUwBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"08005163-0000-0100-0000-627ce36d0000\\\"\",\r\n \"_ts\": 1652351853\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d2bb43-124d-462c-9377-a8380e208558" + "96188336-291a-4384-b956-dad5176ddc4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2070,13 +2070,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/a41da24d-f374-40ab-8f53-d21f3385234f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/f9738c90-5af0-466b-8ac7-dc9e4bd68303?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a41da24d-f374-40ab-8f53-d21f3385234f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9738c90-5af0-466b-8ac7-dc9e4bd68303?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a41da24d-f374-40ab-8f53-d21f3385234f" + "f9738c90-5af0-466b-8ac7-dc9e4bd68303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2088,19 +2088,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "cdb7d494-f862-4cf6-a776-242dbfde4a85" + "e32e3e39-ad3e-4a34-9a13-39dc5160cf00" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135427Z:cdb7d494-f862-4cf6-a776-242dbfde4a85" + "JIOINDIACENTRAL:20220512T103414Z:e32e3e39-ad3e-4a34-9a13-39dc5160cf00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:26 GMT" + "Thu, 12 May 2022 10:34:13 GMT" ], "Content-Length": [ "21" @@ -2113,22 +2113,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2366e751-fad7-41e8-88c3-40f48fc3a330" + "b502f1a5-ea24-43d1-80a4-b7038c9c95d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2145,13 +2145,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/ea147800-47f7-442f-b4bc-3804fd2af2a2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/f0308320-aa9e-481e-a393-ce63f89745d6?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea147800-47f7-442f-b4bc-3804fd2af2a2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f0308320-aa9e-481e-a393-ce63f89745d6?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ea147800-47f7-442f-b4bc-3804fd2af2a2" + "f0308320-aa9e-481e-a393-ce63f89745d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2163,19 +2163,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "af062749-7b20-4113-a9b0-8868196bbcf6" + "815dfd86-2420-4c10-9645-8ec89123a906" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135712Z:af062749-7b20-4113-a9b0-8868196bbcf6" + "JIOINDIACENTRAL:20220512T103728Z:815dfd86-2420-4c10-9645-8ec89123a906" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:57:11 GMT" + "Thu, 12 May 2022 10:37:28 GMT" ], "Content-Length": [ "21" @@ -2188,19 +2188,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a41da24d-f374-40ab-8f53-d21f3385234f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTQxZGEyNGQtZjM3NC00MGFiLThmNTMtZDIxZjMzODUyMzRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9738c90-5af0-466b-8ac7-dc9e4bd68303?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjk3MzhjOTAtNWFmMC00NjZiLThhYzctZGM5ZTRiZDY4MzAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d2bb43-124d-462c-9377-a8380e208558" + "96188336-291a-4384-b956-dad5176ddc4d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2220,22 +2220,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11995" ], "x-ms-request-id": [ - "215a7a1f-dc36-4560-ad97-5d892a9c3008" + "f156c25e-95d6-4090-acd3-251344a3a618" ], "x-ms-correlation-request-id": [ - "215a7a1f-dc36-4560-ad97-5d892a9c3008" + "f156c25e-95d6-4090-acd3-251344a3a618" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135458Z:215a7a1f-dc36-4560-ad97-5d892a9c3008" + "JIOINDIACENTRAL:20220512T103444Z:f156c25e-95d6-4090-acd3-251344a3a618" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:57 GMT" + "Thu, 12 May 2022 10:34:44 GMT" ], "Content-Length": [ "22" @@ -2248,22 +2248,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db650735-268a-4793-b07c-a6274ad4777f" + "76cbc9f0-27cc-4068-a384-7ef0efeb0bab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2283,47 +2283,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11973" ], "x-ms-request-id": [ - "f52a5f4b-e6b8-4e2d-b5f8-35d24c6fcf1a" + "472ecebd-1689-424d-8cce-478da50404dc" ], "x-ms-correlation-request-id": [ - "f52a5f4b-e6b8-4e2d-b5f8-35d24c6fcf1a" + "472ecebd-1689-424d-8cce-478da50404dc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135459Z:f52a5f4b-e6b8-4e2d-b5f8-35d24c6fcf1a" + "JIOINDIACENTRAL:20220512T103450Z:472ecebd-1689-424d-8cce-478da50404dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:58 GMT" + "Thu, 12 May 2022 10:34:49 GMT" ], "Content-Length": [ - "5700" + "6408" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: db650735-268a-4793-b07c-a6274ad4777f, Request URI: /apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:54:59.1821401Z, RequestEndTime: 2022-03-08T13:54:59.1821401Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:04.2431737Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.351,\\\\\\\"memory\\\\\\\":630377320.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0154,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:14.2529833Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.927,\\\\\\\"memory\\\\\\\":629970268.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0132,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:24.2527930Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.285,\\\\\\\"memory\\\\\\\":629412112.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0161,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:34.2626068Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.789,\\\\\\\"memory\\\\\\\":629047824.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0151,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:44.2724137Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.868,\\\\\\\"memory\\\\\\\":628410080.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0167,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:54.2822301Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.178,\\\\\\\"memory\\\\\\\":630211304.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0092,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:54:59.1821401Z; ResponseTime: 2022-03-08T13:54:59.1821401Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14422/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, BELatencyMs: 1.056, ActivityId: db650735-268a-4793-b07c-a6274ad4777f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1821401Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0067},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1821468Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0032},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1821500Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2053},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1823553Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.7408},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1840961Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1368},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1842329Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":533,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:54:59.1821401Z; ResponseTime: 2022-03-08T13:54:59.1821401Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14424/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109038s/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.735, ActivityId: db650735-268a-4793-b07c-a6274ad4777f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1821401Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0038},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1821439Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0017},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1821456Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1493},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1822949Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3805},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1836754Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1786},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:54:59.1838540Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":533,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 76cbc9f0-27cc-4068-a384-7ef0efeb0bab, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100133s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:34:50.0332989Z, RequestEndTime: 2022-05-12T10:34:50.0332989Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:33:54.0538298Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.310,\\\\\\\"memory\\\\\\\":654930296.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.02,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:04.0637576Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.385,\\\\\\\"memory\\\\\\\":654953292.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0172,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:14.0736582Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.687,\\\\\\\"memory\\\\\\\":655066032.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0123,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:24.0835680Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.380,\\\\\\\"memory\\\\\\\":655055800.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0237,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:34.0934583Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.346,\\\\\\\"memory\\\\\\\":654892148.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.027,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:44.1033513Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.185,\\\\\\\"memory\\\\\\\":654938732.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0214,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:34:50.0332989Z; ResponseTime: 2022-05-12T10:34:50.0332989Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14358/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100133s/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, BELatencyMs: 1.117, ActivityId: 76cbc9f0-27cc-4068-a384-7ef0efeb0bab, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0332989Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.008},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0333069Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0107},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0333176Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1864},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0335040Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8085},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0353125Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0394},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0353519Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:34:46.0433331Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:34:46.0433331Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:34:46.0433331Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":535,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:34:50.0332989Z; ResponseTime: 2022-05-12T10:34:50.0332989Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14353/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100135s/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, BELatencyMs: 1.033, ActivityId: 76cbc9f0-27cc-4068-a384-7ef0efeb0bab, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0332989Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0044},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0333033Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.006},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0333093Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.157},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0334663Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5499},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0350162Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0679},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:34:50.0350841Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:34:46.0633322Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:34:46.0633322Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:34:46.0633322Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":535,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db650735-268a-4793-b07c-a6274ad4777f" + "76cbc9f0-27cc-4068-a384-7ef0efeb0bab" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2343,22 +2343,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11971" ], "x-ms-request-id": [ - "283799ae-2793-4673-b46b-27a5ab402e63" + "0e538184-fb33-4762-a627-5057802da18d" ], "x-ms-correlation-request-id": [ - "283799ae-2793-4673-b46b-27a5ab402e63" + "0e538184-fb33-4762-a627-5057802da18d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135531Z:283799ae-2793-4673-b46b-27a5ab402e63" + "JIOINDIACENTRAL:20220512T103523Z:0e538184-fb33-4762-a627-5057802da18d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:55:31 GMT" + "Thu, 12 May 2022 10:35:22 GMT" ], "Content-Length": [ "670" @@ -2367,26 +2367,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/udfs/DMQ0AJE2Bt4BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"8d0048c2-0000-0100-0000-622760380000\\\"\",\r\n \"_ts\": 1646747704\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/udfs/CMB8APERdUwBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"08001163-0000-0100-0000-627ce2d00000\\\"\",\r\n \"_ts\": 1652351696\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "955d4257-27da-4536-baf4-5d566ed01d93" + "79252116-a71c-4c3a-b0d1-9b930f1a5f50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2406,22 +2406,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11985" ], "x-ms-request-id": [ - "4d3e4a67-139a-479e-9ead-c3d42de73147" + "8da942f6-a2c8-4600-b8d4-466559aac92e" ], "x-ms-correlation-request-id": [ - "4d3e4a67-139a-479e-9ead-c3d42de73147" + "8da942f6-a2c8-4600-b8d4-466559aac92e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135531Z:4d3e4a67-139a-479e-9ead-c3d42de73147" + "JIOINDIACENTRAL:20220512T103524Z:8da942f6-a2c8-4600-b8d4-466559aac92e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:55:31 GMT" + "Thu, 12 May 2022 10:35:24 GMT" ], "Content-Length": [ "670" @@ -2430,26 +2430,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/udfs/DMQ0AJE2Bt4BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"8d0048c2-0000-0100-0000-622760380000\\\"\",\r\n \"_ts\": 1646747704\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/udfs/CMB8APERdUwBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"08001163-0000-0100-0000-627ce2d00000\\\"\",\r\n \"_ts\": 1652351696\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42ad8244-a8c4-4071-a567-264f10559664" + "ef6ed75d-6490-41ce-ab5d-c1ce4e968b95" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2469,22 +2469,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11994" ], "x-ms-request-id": [ - "24f21b67-3604-44f8-9eb0-7c29c423d7d2" + "35d3625c-a90c-4e61-a0a9-f14b520ccc9f" ], "x-ms-correlation-request-id": [ - "24f21b67-3604-44f8-9eb0-7c29c423d7d2" + "35d3625c-a90c-4e61-a0a9-f14b520ccc9f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135608Z:24f21b67-3604-44f8-9eb0-7c29c423d7d2" + "JIOINDIACENTRAL:20220512T103613Z:35d3625c-a90c-4e61-a0a9-f14b520ccc9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:07 GMT" + "Thu, 12 May 2022 10:36:13 GMT" ], "Content-Length": [ "670" @@ -2493,26 +2493,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/udfs/DMQ0AJE2Bt4BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"8d0048c2-0000-0100-0000-622760380000\\\"\",\r\n \"_ts\": 1646747704\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/udfs/CMB8APERdUwBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"08001163-0000-0100-0000-627ce2d00000\\\"\",\r\n \"_ts\": 1652351696\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e0c5fa4-9f9a-4df2-ad6e-58bc24d3fcd4" + "7ccbf50d-329e-411f-ab3a-97871acd9054" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2532,22 +2532,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11993" ], "x-ms-request-id": [ - "f8821233-f134-4f64-b6a6-dbe4f804501e" + "8c9b1441-3d04-463b-a70b-b840cfc32c72" ], "x-ms-correlation-request-id": [ - "f8821233-f134-4f64-b6a6-dbe4f804501e" + "8c9b1441-3d04-463b-a70b-b840cfc32c72" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135816Z:f8821233-f134-4f64-b6a6-dbe4f804501e" + "JIOINDIACENTRAL:20220512T103835Z:8c9b1441-3d04-463b-a70b-b840cfc32c72" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:15 GMT" + "Thu, 12 May 2022 10:38:34 GMT" ], "Content-Length": [ "670" @@ -2556,23 +2556,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/udfs/DMQ0AJE2Bt4BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"8d0048c2-0000-0100-0000-622760380000\\\"\",\r\n \"_ts\": 1646747704\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/udfs/CMB8APERdUwBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"08001163-0000-0100-0000-627ce2d00000\\\"\",\r\n \"_ts\": 1652351696\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e0c5fa4-9f9a-4df2-ad6e-58bc24d3fcd4" + "7ccbf50d-329e-411f-ab3a-97871acd9054" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2592,22 +2592,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11991" ], "x-ms-request-id": [ - "99607371-db43-422a-a8b7-34632435cafc" + "88eae7cd-e800-4615-8a76-d31116558406" ], "x-ms-correlation-request-id": [ - "99607371-db43-422a-a8b7-34632435cafc" + "88eae7cd-e800-4615-8a76-d31116558406" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135847Z:99607371-db43-422a-a8b7-34632435cafc" + "JIOINDIACENTRAL:20220512T103908Z:88eae7cd-e800-4615-8a76-d31116558406" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:47 GMT" + "Thu, 12 May 2022 10:39:08 GMT" ], "Content-Length": [ "583" @@ -2616,26 +2616,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/udfs/DMQ0AJE2Bt4BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"8d006bc3-0000-0100-0000-622760fd0000\\\"\",\r\n \"_ts\": 1646747901\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/udfs/CMB8APERdUwBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"08006c63-0000-0100-0000-627ce3b10000\\\"\",\r\n \"_ts\": 1652351921\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "db650735-268a-4793-b07c-a6274ad4777f" + "76cbc9f0-27cc-4068-a384-7ef0efeb0bab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2652,13 +2652,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/f08dd3c2-efba-42c3-b6f6-fd50b61129d5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/0d9e3728-1518-4283-b1c3-714891eacb04?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f08dd3c2-efba-42c3-b6f6-fd50b61129d5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d9e3728-1518-4283-b1c3-714891eacb04?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f08dd3c2-efba-42c3-b6f6-fd50b61129d5" + "0d9e3728-1518-4283-b1c3-714891eacb04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2670,19 +2670,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "099b0e6c-6617-499a-9cfa-b54b9390fb37" + "12ea2e34-09a3-4b6d-afaf-4573e4bd25b5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135459Z:099b0e6c-6617-499a-9cfa-b54b9390fb37" + "JIOINDIACENTRAL:20220512T103452Z:12ea2e34-09a3-4b6d-afaf-4573e4bd25b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:54:59 GMT" + "Thu, 12 May 2022 10:34:51 GMT" ], "Content-Length": [ "21" @@ -2695,22 +2695,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6e0c5fa4-9f9a-4df2-ad6e-58bc24d3fcd4" + "7ccbf50d-329e-411f-ab3a-97871acd9054" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2727,13 +2727,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/ef41f7e7-f027-466c-8ec5-aa0ed8febbd2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/064f561c-f16e-4f48-a61c-0b3f34d8e624?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ef41f7e7-f027-466c-8ec5-aa0ed8febbd2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/064f561c-f16e-4f48-a61c-0b3f34d8e624?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ef41f7e7-f027-466c-8ec5-aa0ed8febbd2" + "064f561c-f16e-4f48-a61c-0b3f34d8e624" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,19 +2745,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "3e17c564-ceb9-4b07-85dd-3dd7897ded1d" + "263edd58-941f-41e4-b715-370d85c46147" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135816Z:3e17c564-ceb9-4b07-85dd-3dd7897ded1d" + "JIOINDIACENTRAL:20220512T103836Z:263edd58-941f-41e4-b715-370d85c46147" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:16 GMT" + "Thu, 12 May 2022 10:38:35 GMT" ], "Content-Length": [ "21" @@ -2770,19 +2770,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f08dd3c2-efba-42c3-b6f6-fd50b61129d5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjA4ZGQzYzItZWZiYS00MmMzLWI2ZjYtZmQ1MGI2MTEyOWQ1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d9e3728-1518-4283-b1c3-714891eacb04?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGQ5ZTM3MjgtMTUxOC00MjgzLWIxYzMtNzE0ODkxZWFjYjA0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db650735-268a-4793-b07c-a6274ad4777f" + "76cbc9f0-27cc-4068-a384-7ef0efeb0bab" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2802,22 +2802,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11972" ], "x-ms-request-id": [ - "a43262c1-ab24-4f7e-9087-790812025fda" + "df8f063d-d7e1-430c-a161-006a3f62c44d" ], "x-ms-correlation-request-id": [ - "a43262c1-ab24-4f7e-9087-790812025fda" + "df8f063d-d7e1-430c-a161-006a3f62c44d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135530Z:a43262c1-ab24-4f7e-9087-790812025fda" + "JIOINDIACENTRAL:20220512T103522Z:df8f063d-d7e1-430c-a161-006a3f62c44d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:55:30 GMT" + "Thu, 12 May 2022 10:35:21 GMT" ], "Content-Length": [ "22" @@ -2830,22 +2830,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b75c9370-7b34-4cc2-bc61-ba1ea1a1b885" + "7e1324a7-eafc-4ad7-a15a-c7be6f1e5432" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2865,47 +2865,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11986" ], "x-ms-request-id": [ - "b8995237-0a3e-4355-a766-e493e1296c99" + "86c44530-3708-44d1-ab31-7d78fea12e96" ], "x-ms-correlation-request-id": [ - "b8995237-0a3e-4355-a766-e493e1296c99" + "86c44530-3708-44d1-ab31-7d78fea12e96" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135531Z:b8995237-0a3e-4355-a766-e493e1296c99" + "JIOINDIACENTRAL:20220512T103526Z:86c44530-3708-44d1-ab31-7d78fea12e96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:55:31 GMT" + "Thu, 12 May 2022 10:35:25 GMT" ], "Content-Length": [ - "5682" + "6394" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: b75c9370-7b34-4cc2-bc61-ba1ea1a1b885, Request URI: /apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:55:31.8232060Z, RequestEndTime: 2022-03-08T13:55:31.8232060Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:30.8840934Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.763,\\\\\\\"memory\\\\\\\":628589388.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:40.8839623Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.730,\\\\\\\"memory\\\\\\\":628053520.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0177,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:54:50.8938115Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.565,\\\\\\\"memory\\\\\\\":627581540.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:00.9036645Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.311,\\\\\\\"memory\\\\\\\":627194656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0163,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:20.9133895Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.358,\\\\\\\"memory\\\\\\\":626578168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0187,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:30.9232106Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.532,\\\\\\\"memory\\\\\\\":631131172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:55:31.8232060Z; ResponseTime: 2022-03-08T13:55:31.8232060Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14422/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.863, ActivityId: b75c9370-7b34-4cc2-bc61-ba1ea1a1b885, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8232060Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0074},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8232134Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0032},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8232166Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1788},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8233954Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3241},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8247195Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1562},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8248757Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":539,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:55:31.8232060Z; ResponseTime: 2022-03-08T13:55:31.8232060Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14120/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109037s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.895, ActivityId: b75c9370-7b34-4cc2-bc61-ba1ea1a1b885, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8232060Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8232091Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8232111Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1488},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8233599Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3428},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8247027Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.074},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:55:31.8247767Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":539,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 7e1324a7-eafc-4ad7-a15a-c7be6f1e5432, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100133s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:35:25.9585122Z, RequestEndTime: 2022-05-12T10:35:25.9885133Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:19.9400983Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.593,\\\\\\\"memory\\\\\\\":650475280.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:39.9495724Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.355,\\\\\\\"memory\\\\\\\":650452476.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:49.9593111Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.739,\\\\\\\"memory\\\\\\\":649925676.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0155,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:59.9690703Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.683,\\\\\\\"memory\\\\\\\":649817248.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0162,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:09.9788648Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.096,\\\\\\\"memory\\\\\\\":649514832.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0235,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:19.9886542Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.417,\\\\\\\"memory\\\\\\\":649474832.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0214,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:35:25.9685119Z; ResponseTime: 2022-05-12T10:35:25.9885133Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14358/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100133s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.874, ActivityId: 7e1324a7-eafc-4ad7-a15a-c7be6f1e5432, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9685119Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0084},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9685203Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0099},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9685302Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.19},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9687202Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5963},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9703165Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1719},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9704884Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:34:33.8497367Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:34:33.8497367Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:34:33.8497367Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":535,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:35:25.9685119Z; ResponseTime: 2022-05-12T10:35:25.9885133Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14014/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100134s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.962, ActivityId: 7e1324a7-eafc-4ad7-a15a-c7be6f1e5432, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9685119Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0034},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9685153Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 14.3202},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9828355Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1871},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9830226Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5323},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9845549Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.145},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:35:25.9846999Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"True\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:35:25.9785122Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:35:25.9785122Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:35:25.9785122Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":535,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b75c9370-7b34-4cc2-bc61-ba1ea1a1b885" + "7e1324a7-eafc-4ad7-a15a-c7be6f1e5432" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2925,22 +2925,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11984" ], "x-ms-request-id": [ - "d8f0d95c-8595-44d5-b438-13f96a007ddf" + "bb83c464-afaf-4973-a0ff-d9b241fff6fc" ], "x-ms-correlation-request-id": [ - "d8f0d95c-8595-44d5-b438-13f96a007ddf" + "bb83c464-afaf-4973-a0ff-d9b241fff6fc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135604Z:d8f0d95c-8595-44d5-b438-13f96a007ddf" + "JIOINDIACENTRAL:20220512T103559Z:bb83c464-afaf-4973-a0ff-d9b241fff6fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:03 GMT" + "Thu, 12 May 2022 10:35:59 GMT" ], "Content-Length": [ "707" @@ -2949,26 +2949,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/triggers/DMQ0AJE2Bt4BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"8d008dc2-0000-0100-0000-622760590000\\\"\",\r\n \"_ts\": 1646747737\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/triggers/CMB8APERdUwBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"08001f63-0000-0100-0000-627ce2f40000\\\"\",\r\n \"_ts\": 1652351732\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0491e09-0e2c-4943-9d7b-098d5a2d4ac5" + "9fb6359c-b131-4db2-8dd2-63d1f3f2f139" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2988,22 +2988,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11980" ], "x-ms-request-id": [ - "7690b6d8-a908-4aec-87c5-7358315dfce1" + "740a95a8-129c-41fb-b0ae-e1a16393e221" ], "x-ms-correlation-request-id": [ - "7690b6d8-a908-4aec-87c5-7358315dfce1" + "740a95a8-129c-41fb-b0ae-e1a16393e221" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135604Z:7690b6d8-a908-4aec-87c5-7358315dfce1" + "JIOINDIACENTRAL:20220512T103601Z:740a95a8-129c-41fb-b0ae-e1a16393e221" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:04 GMT" + "Thu, 12 May 2022 10:36:00 GMT" ], "Content-Length": [ "707" @@ -3012,26 +3012,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/triggers/DMQ0AJE2Bt4BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"8d008dc2-0000-0100-0000-622760590000\\\"\",\r\n \"_ts\": 1646747737\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/triggers/CMB8APERdUwBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"08001f63-0000-0100-0000-627ce2f40000\\\"\",\r\n \"_ts\": 1652351732\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d0dd923-5b24-4805-a2bb-26a211e4838e" + "a2ed82fc-c28e-46ef-8847-c7bd68fef4cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3051,22 +3051,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11995" ], "x-ms-request-id": [ - "9ba9d1d4-75e7-499c-bf8e-746258fb714a" + "633d2088-bf18-420c-82be-0edcecc277e9" ], "x-ms-correlation-request-id": [ - "9ba9d1d4-75e7-499c-bf8e-746258fb714a" + "633d2088-bf18-420c-82be-0edcecc277e9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135608Z:9ba9d1d4-75e7-499c-bf8e-746258fb714a" + "JIOINDIACENTRAL:20220512T103616Z:633d2088-bf18-420c-82be-0edcecc277e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:07 GMT" + "Thu, 12 May 2022 10:36:16 GMT" ], "Content-Length": [ "707" @@ -3075,26 +3075,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/triggers/DMQ0AJE2Bt4BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"8d008dc2-0000-0100-0000-622760590000\\\"\",\r\n \"_ts\": 1646747737\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/triggers/CMB8APERdUwBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"08001f63-0000-0100-0000-627ce2f40000\\\"\",\r\n \"_ts\": 1652351732\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2734f8bf-a8d8-4576-8f3d-821e0370036f" + "e0691415-486c-412e-a447-9f586db98cb1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3114,22 +3114,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11984" ], "x-ms-request-id": [ - "e3cb292a-f290-40ac-b043-1a54da7a1052" + "4d2bd890-339c-4506-a98c-50e0da00095c" ], "x-ms-correlation-request-id": [ - "e3cb292a-f290-40ac-b043-1a54da7a1052" + "4d2bd890-339c-4506-a98c-50e0da00095c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135743Z:e3cb292a-f290-40ac-b043-1a54da7a1052" + "JIOINDIACENTRAL:20220512T103801Z:4d2bd890-339c-4506-a98c-50e0da00095c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:57:43 GMT" + "Thu, 12 May 2022 10:38:00 GMT" ], "Content-Length": [ "707" @@ -3138,23 +3138,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/triggers/DMQ0AJE2Bt4BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"8d008dc2-0000-0100-0000-622760590000\\\"\",\r\n \"_ts\": 1646747737\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/triggers/CMB8APERdUwBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"08001f63-0000-0100-0000-627ce2f40000\\\"\",\r\n \"_ts\": 1652351732\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2734f8bf-a8d8-4576-8f3d-821e0370036f" + "e0691415-486c-412e-a447-9f586db98cb1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3174,22 +3174,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11982" ], "x-ms-request-id": [ - "3b80cc2b-3820-4a4e-a97a-5d8a70529114" + "07ec52d2-f94c-48c3-88e4-ee391df5853f" ], "x-ms-correlation-request-id": [ - "3b80cc2b-3820-4a4e-a97a-5d8a70529114" + "07ec52d2-f94c-48c3-88e4-ee391df5853f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135815Z:3b80cc2b-3820-4a4e-a97a-5d8a70529114" + "JIOINDIACENTRAL:20220512T103833Z:07ec52d2-f94c-48c3-88e4-ee391df5853f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:15 GMT" + "Thu, 12 May 2022 10:38:32 GMT" ], "Content-Length": [ "620" @@ -3198,26 +3198,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/triggers/DMQ0AJE2Bt4BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"8d003ec3-0000-0100-0000-622760dc0000\\\"\",\r\n \"_ts\": 1646747868\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/triggers/CMB8APERdUwBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"08005e63-0000-0100-0000-627ce38f0000\\\"\",\r\n \"_ts\": 1652351887\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b75c9370-7b34-4cc2-bc61-ba1ea1a1b885" + "7e1324a7-eafc-4ad7-a15a-c7be6f1e5432" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3234,13 +3234,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/b3ebbca1-4af3-4553-998c-59746f784fa2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/2ff71d9e-0f33-44e3-97ba-8c080f0369ba?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b3ebbca1-4af3-4553-998c-59746f784fa2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ff71d9e-0f33-44e3-97ba-8c080f0369ba?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b3ebbca1-4af3-4553-998c-59746f784fa2" + "2ff71d9e-0f33-44e3-97ba-8c080f0369ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3252,19 +3252,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "bb6fb283-ffbb-4531-9a2d-ddf50a54a22e" + "10a76654-25ea-470c-9b2d-9608b44a30ef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135532Z:bb6fb283-ffbb-4531-9a2d-ddf50a54a22e" + "JIOINDIACENTRAL:20220512T103527Z:10a76654-25ea-470c-9b2d-9608b44a30ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:55:32 GMT" + "Thu, 12 May 2022 10:35:27 GMT" ], "Content-Length": [ "21" @@ -3277,22 +3277,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2734f8bf-a8d8-4576-8f3d-821e0370036f" + "e0691415-486c-412e-a447-9f586db98cb1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3309,13 +3309,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/b9fd7555-8c3b-4c05-9e14-c5b903066619?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/a41c351b-7d10-4856-9def-23d725a2fa1f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b9fd7555-8c3b-4c05-9e14-c5b903066619?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a41c351b-7d10-4856-9def-23d725a2fa1f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b9fd7555-8c3b-4c05-9e14-c5b903066619" + "a41c351b-7d10-4856-9def-23d725a2fa1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3327,19 +3327,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1195" ], "x-ms-correlation-request-id": [ - "232dd900-c10d-4bb3-bff5-35f2a9e30162" + "1c7af11f-93c8-47ba-94dd-86e2f33e43e4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135744Z:232dd900-c10d-4bb3-bff5-35f2a9e30162" + "JIOINDIACENTRAL:20220512T103802Z:1c7af11f-93c8-47ba-94dd-86e2f33e43e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:57:43 GMT" + "Thu, 12 May 2022 10:38:01 GMT" ], "Content-Length": [ "21" @@ -3352,19 +3352,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b3ebbca1-4af3-4553-998c-59746f784fa2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjNlYmJjYTEtNGFmMy00NTUzLTk5OGMtNTk3NDZmNzg0ZmEyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ff71d9e-0f33-44e3-97ba-8c080f0369ba?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmZmNzFkOWUtMGYzMy00NGUzLTk3YmEtOGMwODBmMDM2OWJhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b75c9370-7b34-4cc2-bc61-ba1ea1a1b885" + "7e1324a7-eafc-4ad7-a15a-c7be6f1e5432" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3384,22 +3384,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11985" ], "x-ms-request-id": [ - "29028960-e24e-4407-8fc5-f3c40f8e7b5a" + "233584ba-5b22-4c02-b68e-b256204122fa" ], "x-ms-correlation-request-id": [ - "29028960-e24e-4407-8fc5-f3c40f8e7b5a" + "233584ba-5b22-4c02-b68e-b256204122fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135603Z:29028960-e24e-4407-8fc5-f3c40f8e7b5a" + "JIOINDIACENTRAL:20220512T103558Z:233584ba-5b22-4c02-b68e-b256204122fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:02 GMT" + "Thu, 12 May 2022 10:35:58 GMT" ], "Content-Length": [ "22" @@ -3412,22 +3412,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e772039-4447-4745-a9ce-9156d3526e01" + "c25b4ce3-1eed-4845-9b65-63d076e7c552" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3447,50 +3447,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11995" ], "x-ms-request-id": [ - "2a55946e-9824-4f8f-9b60-a09f86ab56cf" + "424a44e3-ca0d-4b61-9281-cecff6c7561d" ], "x-ms-correlation-request-id": [ - "2a55946e-9824-4f8f-9b60-a09f86ab56cf" + "424a44e3-ca0d-4b61-9281-cecff6c7561d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135605Z:2a55946e-9824-4f8f-9b60-a09f86ab56cf" + "JIOINDIACENTRAL:20220512T103603Z:424a44e3-ca0d-4b61-9281-cecff6c7561d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:04 GMT" + "Thu, 12 May 2022 10:36:03 GMT" ], "Content-Length": [ - "5580" + "6291" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 5e772039-4447-4745-a9ce-9156d3526e01, Request URI: /apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824245s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:56:05.1527176Z, RequestEndTime: 2022-03-08T13:56:05.1527176Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:00.9036645Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.311,\\\\\\\"memory\\\\\\\":627194656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0163,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:20.9133895Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.358,\\\\\\\"memory\\\\\\\":626578168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0187,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:30.9232106Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.532,\\\\\\\"memory\\\\\\\":631131172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:40.9330720Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.690,\\\\\\\"memory\\\\\\\":630954308.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0192,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:50.9429155Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.105,\\\\\\\"memory\\\\\\\":630873280.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0128,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:56:00.9527689Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.703,\\\\\\\"memory\\\\\\\":630690852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0093,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:56:05.1527176Z; ResponseTime: 2022-03-08T13:56:05.1527176Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824245s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.292, ActivityId: 5e772039-4447-4745-a9ce-9156d3526e01, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1527176Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0062},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1527238Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1527264Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1174},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1528438Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6984},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1535422Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0272},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1535694Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:56:05.1527176Z; ResponseTime: 2022-03-08T13:56:05.1527176Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824244s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.259, ActivityId: 5e772039-4447-4745-a9ce-9156d3526e01, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1527176Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1527231Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0074},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1527305Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0645},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1527950Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8849},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1536799Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0264},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.1537063Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: c25b4ce3-1eed-4845-9b65-63d076e7c552, Request URI: /apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217045s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:36:03.3935920Z, RequestEndTime: 2022-05-12T10:36:03.3935920Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:06.5029062Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.408,\\\\\\\"memory\\\\\\\":647450876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0281,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:16.5130013Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.483,\\\\\\\"memory\\\\\\\":647222772.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.013,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:26.5230992Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.297,\\\\\\\"memory\\\\\\\":647133252.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0193,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:36.5332195Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.109,\\\\\\\"memory\\\\\\\":648488988.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0092,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:46.5433359Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.376,\\\\\\\"memory\\\\\\\":648386764.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0176,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:56.5534837Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.461,\\\\\\\"memory\\\\\\\":648161856.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:36:03.3935920Z; ResponseTime: 2022-05-12T10:36:03.3935920Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217045s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.417, ActivityId: c25b4ce3-1eed-4845-9b65-63d076e7c552, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0063},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3935983Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0023},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3936006Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0813},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3936819Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8206},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3945025Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0228},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3945253Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:36:03.3935920Z; ResponseTime: 2022-05-12T10:36:03.3935920Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217047s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.184, ActivityId: c25b4ce3-1eed-4845-9b65-63d076e7c552, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3935951Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3935959Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0519},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3936478Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4172},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3940650Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1548},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:03.3942198Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "804e0263-ae3b-4e61-9979-bcd9f10f452b" + "ebb8ab9e-0b50-4d02-96b0-0fb8f0ff894d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3510,50 +3510,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11994" ], "x-ms-request-id": [ - "d5e439c3-6a7e-4a82-b8b9-ce0479f9b9d8" + "68fc36b2-ade2-4e82-ac58-eb2d429773c3" ], "x-ms-correlation-request-id": [ - "d5e439c3-6a7e-4a82-b8b9-ce0479f9b9d8" + "68fc36b2-ade2-4e82-ac58-eb2d429773c3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135605Z:d5e439c3-6a7e-4a82-b8b9-ce0479f9b9d8" + "JIOINDIACENTRAL:20220512T103605Z:68fc36b2-ade2-4e82-ac58-eb2d429773c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:04 GMT" + "Thu, 12 May 2022 10:36:05 GMT" ], "Content-Length": [ - "5599" + "6311" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 804e0263-ae3b-4e61-9979-bcd9f10f452b, Request URI: /apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824246s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:56:05.4726999Z, RequestEndTime: 2022-03-08T13:56:05.4726999Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:00.9036645Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.311,\\\\\\\"memory\\\\\\\":627194656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0163,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:20.9133895Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.358,\\\\\\\"memory\\\\\\\":626578168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0187,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:30.9232106Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.532,\\\\\\\"memory\\\\\\\":631131172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:40.9330720Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.690,\\\\\\\"memory\\\\\\\":630954308.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0192,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:50.9429155Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.105,\\\\\\\"memory\\\\\\\":630873280.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0128,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:56:00.9527689Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.703,\\\\\\\"memory\\\\\\\":630690852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0093,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:56:05.4726999Z; ResponseTime: 2022-03-08T13:56:05.4726999Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824246s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.249, ActivityId: 804e0263-ae3b-4e61-9979-bcd9f10f452b, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4726999Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0159},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4727158Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0112},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4727270Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1851},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4729121Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5129},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4734250Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0277},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4734527Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:56:05.4726999Z; ResponseTime: 2022-03-08T13:56:05.4726999Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/63726791-82a1-46e3-8272-487718d4757d/partitions/a6942fbf-7933-4497-80e8-ebfd217f5b60/replicas/132908871069824245s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.283, ActivityId: 804e0263-ae3b-4e61-9979-bcd9f10f452b, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4726999Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0037},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4727036Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4727056Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1727},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4728783Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4874},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4733657Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0489},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.4734146Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: ebb8ab9e-0b50-4d02-96b0-0fb8f0ff894d, Request URI: /apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217045s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:36:05.1336190Z, RequestEndTime: 2022-05-12T10:36:05.1336190Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:06.5029062Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.408,\\\\\\\"memory\\\\\\\":647450876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0281,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:16.5130013Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.483,\\\\\\\"memory\\\\\\\":647222772.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.013,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:26.5230992Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.297,\\\\\\\"memory\\\\\\\":647133252.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0193,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:36.5332195Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.109,\\\\\\\"memory\\\\\\\":648488988.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0092,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:46.5433359Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.376,\\\\\\\"memory\\\\\\\":648386764.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0176,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:56.5534837Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.461,\\\\\\\"memory\\\\\\\":648161856.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:36:05.1336190Z; ResponseTime: 2022-05-12T10:36:05.1336190Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217045s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.213, ActivityId: ebb8ab9e-0b50-4d02-96b0-0fb8f0ff894d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1336190Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0356},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1336546Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0182},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1336728Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1903},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1338631Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6219},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1344850Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0636},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1345486Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:36:03.3935920Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:36:05.1336190Z; ResponseTime: 2022-05-12T10:36:05.1336190Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/b17cfab5-500c-4cc4-b47f-6aee74a1e43c/services/326f6995-ad73-43dd-b109-603cbaa25934/partitions/fa6afd20-f68d-4ad6-9875-19bde48e14f2/replicas/132955917060217047s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.232, ActivityId: ebb8ab9e-0b50-4d02-96b0-0fb8f0ff894d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1336190Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0037},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1336227Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1336240Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1555},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1337795Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4785},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1342580Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1892},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:05.1344472Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:36:04.9836202Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:36:04.9836202Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:36:04.9836202Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmUyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62663317-a4d1-46b6-b1fd-130dd23aed4a" + "d4f6bd52-a158-482c-a749-e9b3a3195438" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3573,50 +3573,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11997" ], "x-ms-request-id": [ - "ca4ac5e5-2f30-41e2-a742-b4607a9e6bbc" + "53765e35-5bf3-4d71-b35b-db5cefc97c09" ], "x-ms-correlation-request-id": [ - "ca4ac5e5-2f30-41e2-a742-b4607a9e6bbc" + "53765e35-5bf3-4d71-b35b-db5cefc97c09" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135605Z:ca4ac5e5-2f30-41e2-a742-b4607a9e6bbc" + "JIOINDIACENTRAL:20220512T103607Z:53765e35-5bf3-4d71-b35b-db5cefc97c09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:05 GMT" + "Thu, 12 May 2022 10:36:07 GMT" ], "Content-Length": [ - "5705" + "6418" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 62663317-a4d1-46b6-b1fd-130dd23aed4a, Request URI: /apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:56:05.8527332Z, RequestEndTime: 2022-03-08T13:56:05.8527332Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:00.9036645Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.311,\\\\\\\"memory\\\\\\\":627194656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0163,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:20.9133895Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.358,\\\\\\\"memory\\\\\\\":626578168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0187,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:30.9232106Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.532,\\\\\\\"memory\\\\\\\":631131172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:40.9330720Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.690,\\\\\\\"memory\\\\\\\":630954308.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0192,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:50.9429155Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.105,\\\\\\\"memory\\\\\\\":630873280.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0128,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:56:00.9527689Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.703,\\\\\\\"memory\\\\\\\":630690852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0093,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:56:05.8527332Z; ResponseTime: 2022-03-08T13:56:05.8527332Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14422/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.28, ActivityId: 62663317-a4d1-46b6-b1fd-130dd23aed4a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8527332Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0074},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8527406Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0124},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8527530Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1899},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8529429Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7065},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8536494Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1505},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8537999Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":544,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:56:05.8527332Z; ResponseTime: 2022-03-08T13:56:05.8527332Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14120/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109037s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.265, ActivityId: 62663317-a4d1-46b6-b1fd-130dd23aed4a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8527332Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0037},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8527369Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0058},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8527427Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1664},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8529091Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7617},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8536708Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.051},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:05.8537218Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":544,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: d4f6bd52-a158-482c-a749-e9b3a3195438, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100135s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:36:07.5701121Z, RequestEndTime: 2022-05-12T10:36:07.5801033Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:34:58.0612920Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.195,\\\\\\\"memory\\\\\\\":653855236.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0179,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:08.0711172Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.434,\\\\\\\"memory\\\\\\\":653741896.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0175,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:18.0809511Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.645,\\\\\\\"memory\\\\\\\":653822168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0154,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:38.0906053Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.662,\\\\\\\"memory\\\\\\\":653918112.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0166,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:48.1004346Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.378,\\\\\\\"memory\\\\\\\":653913876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0221,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:58.1102943Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.819,\\\\\\\"memory\\\\\\\":653673872.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:36:07.5701121Z; ResponseTime: 2022-05-12T10:36:07.5801033Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14353/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100135s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.372, ActivityId: d4f6bd52-a158-482c-a749-e9b3a3195438, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5701121Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0078},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5701199Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 15.999},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5861189Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1931},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5863120Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.083},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5873950Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1523},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5875473Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"True\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5801033Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5801033Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5801033Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":550,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:36:07.5701121Z; ResponseTime: 2022-05-12T10:36:07.5801033Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14014/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100134s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.383, ActivityId: d4f6bd52-a158-482c-a749-e9b3a3195438, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5701121Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0038},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5701159Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0096},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5701255Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1906},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5703161Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1656},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5714817Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0479},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:07.5715296Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:34:12.2920095Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:34:12.2920095Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:34:12.3020101Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":550,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18c1b559-8bfc-4d85-9079-b6a685e209f3" + "71b60e8e-3c68-42eb-af20-facaf32df6c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3636,50 +3636,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11996" ], "x-ms-request-id": [ - "3a824a67-a35e-49e5-b610-032974e634be" + "2aaccceb-ded4-480d-80a7-1c225397f803" ], "x-ms-correlation-request-id": [ - "3a824a67-a35e-49e5-b610-032974e634be" + "2aaccceb-ded4-480d-80a7-1c225397f803" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135606Z:3a824a67-a35e-49e5-b610-032974e634be" + "JIOINDIACENTRAL:20220512T103609Z:2aaccceb-ded4-480d-80a7-1c225397f803" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:05 GMT" + "Thu, 12 May 2022 10:36:09 GMT" ], "Content-Length": [ - "5683" + "6393" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 18c1b559-8bfc-4d85-9079-b6a685e209f3, Request URI: /apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109037s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:56:06.2226891Z, RequestEndTime: 2022-03-08T13:56:06.2326888Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:00.9036645Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.311,\\\\\\\"memory\\\\\\\":627194656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0163,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:20.9133895Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.358,\\\\\\\"memory\\\\\\\":626578168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0187,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:30.9232106Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.532,\\\\\\\"memory\\\\\\\":631131172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:40.9330720Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.690,\\\\\\\"memory\\\\\\\":630954308.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0192,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:50.9429155Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.105,\\\\\\\"memory\\\\\\\":630873280.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0128,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:56:00.9527689Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.703,\\\\\\\"memory\\\\\\\":630690852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0093,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:56:06.2226891Z; ResponseTime: 2022-03-08T13:56:06.2326888Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14120/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109037s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.26, ActivityId: 18c1b559-8bfc-4d85-9079-b6a685e209f3, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2226891Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0067},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2226958Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2226986Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1912},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2228898Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7377},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2236275Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0626},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2236901Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":536,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:56:06.2226891Z; ResponseTime: 2022-03-08T13:56:06.2326888Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14422/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.24, ActivityId: 18c1b559-8bfc-4d85-9079-b6a685e209f3, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2226891Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2226924Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0017},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2226941Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1536},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2228477Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8508},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2236985Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0524},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.2237509Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":536,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 71b60e8e-3c68-42eb-af20-facaf32df6c5, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100133s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:36:09.3100822Z, RequestEndTime: 2022-05-12T10:36:09.3200738Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:08.0711172Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.434,\\\\\\\"memory\\\\\\\":653741896.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0175,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:18.0809511Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.645,\\\\\\\"memory\\\\\\\":653822168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0154,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:38.0906053Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.662,\\\\\\\"memory\\\\\\\":653918112.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0166,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:48.1004346Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.378,\\\\\\\"memory\\\\\\\":653913876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0221,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:58.1102943Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.819,\\\\\\\"memory\\\\\\\":653673872.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:36:08.1300950Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.331,\\\\\\\"memory\\\\\\\":653577036.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:36:09.3100822Z; ResponseTime: 2022-05-12T10:36:09.3200738Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14358/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100133s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.39, ActivityId: 71b60e8e-3c68-42eb-af20-facaf32df6c5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3100822Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0065},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3100887Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0082},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3100969Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1777},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3102746Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.852},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3111266Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0659},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3111925Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:35:57.9202806Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:35:57.9202806Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:35:57.9202806Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":538,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:36:09.3100822Z; ResponseTime: 2022-05-12T10:36:09.3200738Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14353/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100135s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.68, ActivityId: 71b60e8e-3c68-42eb-af20-facaf32df6c5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3100822Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3100855Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3100910Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.156},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3102470Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4706},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3117176Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0629},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.3117805Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5801033Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5801033Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5801033Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":538,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmMj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71297502-6971-4d6b-8a1a-e550d03cf09d" + "9ad6cef4-285f-4134-ab07-05d308eef261" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3699,47 +3699,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11995" ], "x-ms-request-id": [ - "4624401e-a448-46ef-a682-dfbc2645c297" + "b6416df1-659a-4753-bc55-c54143e0f3e2" ], "x-ms-correlation-request-id": [ - "4624401e-a448-46ef-a682-dfbc2645c297" + "b6416df1-659a-4753-bc55-c54143e0f3e2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135606Z:4624401e-a448-46ef-a682-dfbc2645c297" + "JIOINDIACENTRAL:20220512T103610Z:b6416df1-659a-4753-bc55-c54143e0f3e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:05 GMT" + "Thu, 12 May 2022 10:36:09 GMT" ], "Content-Length": [ - "5698" + "6413" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 71297502-6971-4d6b-8a1a-e550d03cf09d, Request URI: /apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T13:56:06.5726840Z, RequestEndTime: 2022-03-08T13:56:06.5726840Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:00.9036645Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.311,\\\\\\\"memory\\\\\\\":627194656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0163,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:20.9133895Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.358,\\\\\\\"memory\\\\\\\":626578168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0187,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:30.9232106Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.532,\\\\\\\"memory\\\\\\\":631131172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:40.9330720Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.690,\\\\\\\"memory\\\\\\\":630954308.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0192,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:55:50.9429155Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.105,\\\\\\\"memory\\\\\\\":630873280.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0128,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T13:56:00.9527689Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.703,\\\\\\\"memory\\\\\\\":630690852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0093,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T13:56:06.5726840Z; ResponseTime: 2022-03-08T13:56:06.5726840Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14422/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109039s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.243, ActivityId: 71297502-6971-4d6b-8a1a-e550d03cf09d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5726840Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0078},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5726918Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5726951Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1989},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5728940Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9094},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5738034Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1894},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5739928Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":532,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T13:56:06.5726840Z; ResponseTime: 2022-03-08T13:56:06.5726840Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd59.documents.azure.com:14120/apps/a13f0c17-4c1e-488f-a4f7-e0fb0c98bb56/services/bf9958ad-2a1c-45da-91ce-2de43c04a18c/partitions/bf723941-c86d-473a-877f-272ed87bba3e/replicas/132912207074109037s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.255, ActivityId: 71297502-6971-4d6b-8a1a-e550d03cf09d, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5726840Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.004},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5726880Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5726902Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1572},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5728474Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.94},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5737874Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1271},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T13:56:06.5739145Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":532,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 9ad6cef4-285f-4134-ab07-05d308eef261, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100134s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:36:09.9900704Z, RequestEndTime: 2022-05-12T10:36:10.0000621Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:08.0711172Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.434,\\\\\\\"memory\\\\\\\":653741896.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0175,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:18.0809511Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.645,\\\\\\\"memory\\\\\\\":653822168.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0154,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:38.0906053Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.662,\\\\\\\"memory\\\\\\\":653918112.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0166,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:48.1004346Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.378,\\\\\\\"memory\\\\\\\":653913876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0221,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:35:58.1102943Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.819,\\\\\\\"memory\\\\\\\":653673872.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:36:08.1300950Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.331,\\\\\\\"memory\\\\\\\":653577036.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:36:09.9900704Z; ResponseTime: 2022-05-12T10:36:10.0000621Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14014/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100134s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.365, ActivityId: 9ad6cef4-285f-4134-ab07-05d308eef261, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9900704Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0066},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9900770Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0091},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9900861Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1863},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9902724Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9272},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9911996Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0656},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9912652Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5701121Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5701121Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:36:07.5701121Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":534,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:36:09.9900704Z; ResponseTime: 2022-05-12T10:36:10.0000621Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14353/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/1f5edc07-2145-41b7-abfa-c943b4871348/partitions/c9d67d95-1cf5-4c13-a21c-9b32ccb342b0/replicas/132968247056100135s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.255, ActivityId: 9ad6cef4-285f-4134-ab07-05d308eef261, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9900704Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0041},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9900745Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0017},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9900762Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1501},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9902263Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8009},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9910272Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0617},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:36:09.9910889Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:36:09.3100822Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:36:09.3100822Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:36:09.3200738Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":534,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/355e18d7-5fb1-419c-9ffb-f07fcc0b9d96?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzU1ZTE4ZDctNWZiMS00MTljLTlmZmItZjA3ZmNjMGI5ZDk2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/71461831-4031-48df-b63e-09483837c596?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzE0NjE4MzEtNDAzMS00OGRmLWI2M2UtMDk0ODM4MzdjNTk2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "160ec7d4-f8d2-4efa-bab3-a1b7c32634f4" + "311112d2-290a-4e7a-ad0e-46fa0dba0086" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3759,22 +3759,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11990" ], "x-ms-request-id": [ - "2decc5e1-4cc9-42bb-be25-95d52e253e56" + "78308917-e748-4273-bb61-3fbf4ef93c5f" ], "x-ms-correlation-request-id": [ - "2decc5e1-4cc9-42bb-be25-95d52e253e56" + "78308917-e748-4273-bb61-3fbf4ef93c5f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135639Z:2decc5e1-4cc9-42bb-be25-95d52e253e56" + "JIOINDIACENTRAL:20220512T103649Z:78308917-e748-4273-bb61-3fbf4ef93c5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:56:39 GMT" + "Thu, 12 May 2022 10:36:49 GMT" ], "Content-Length": [ "22" @@ -3787,19 +3787,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/601db817-10e8-4130-8108-a4296cad336c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjAxZGI4MTctMTBlOC00MTMwLTgxMDgtYTQyOTZjYWQzMzZjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e3d1db7-c532-4d55-9e00-776a356d7135?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWUzZDFkYjctYzUzMi00ZDU1LTllMDAtNzc2YTM1NmQ3MTM1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1010ddf5-9b70-4497-993f-b442444afe5c" + "6b8b5b97-f06c-4468-baf1-b3b6463412e3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3819,22 +3819,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11998" ], "x-ms-request-id": [ - "4e78056c-c293-417b-b5ec-8c08fd562a9d" + "a0b70eff-b655-4838-9dba-b5d1c191eccc" ], "x-ms-correlation-request-id": [ - "4e78056c-c293-417b-b5ec-8c08fd562a9d" + "a0b70eff-b655-4838-9dba-b5d1c191eccc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135710Z:4e78056c-c293-417b-b5ec-8c08fd562a9d" + "JIOINDIACENTRAL:20220512T103724Z:a0b70eff-b655-4838-9dba-b5d1c191eccc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:57:10 GMT" + "Thu, 12 May 2022 10:37:24 GMT" ], "Content-Length": [ "22" @@ -3847,19 +3847,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea147800-47f7-442f-b4bc-3804fd2af2a2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWExNDc4MDAtNDdmNy00NDJmLWI0YmMtMzgwNGZkMmFmMmEyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f0308320-aa9e-481e-a393-ce63f89745d6?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjAzMDgzMjAtYWE5ZS00ODFlLWEzOTMtY2U2M2Y4OTc0NWQ2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2366e751-fad7-41e8-88c3-40f48fc3a330" + "b502f1a5-ea24-43d1-80a4-b7038c9c95d6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3879,22 +3879,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11989" ], "x-ms-request-id": [ - "f4cce993-4126-4507-91ba-c379bf2e6b69" + "777bfdf2-e2c9-4fa8-bccd-9d2967c3790d" ], "x-ms-correlation-request-id": [ - "f4cce993-4126-4507-91ba-c379bf2e6b69" + "777bfdf2-e2c9-4fa8-bccd-9d2967c3790d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135743Z:f4cce993-4126-4507-91ba-c379bf2e6b69" + "JIOINDIACENTRAL:20220512T103759Z:777bfdf2-e2c9-4fa8-bccd-9d2967c3790d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:57:42 GMT" + "Thu, 12 May 2022 10:37:58 GMT" ], "Content-Length": [ "22" @@ -3907,19 +3907,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b9fd7555-8c3b-4c05-9e14-c5b903066619?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjlmZDc1NTUtOGMzYi00YzA1LTllMTQtYzViOTAzMDY2NjE5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a41c351b-7d10-4856-9def-23d725a2fa1f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTQxYzM1MWItN2QxMC00ODU2LTlkZWYtMjNkNzI1YTJmYTFmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2734f8bf-a8d8-4576-8f3d-821e0370036f" + "e0691415-486c-412e-a447-9f586db98cb1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3939,22 +3939,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11983" ], "x-ms-request-id": [ - "bc3508e6-a109-4dd3-911a-d4f339371b02" + "05e93044-9450-45d1-bd18-b3e95eea374b" ], "x-ms-correlation-request-id": [ - "bc3508e6-a109-4dd3-911a-d4f339371b02" + "05e93044-9450-45d1-bd18-b3e95eea374b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135815Z:bc3508e6-a109-4dd3-911a-d4f339371b02" + "JIOINDIACENTRAL:20220512T103833Z:05e93044-9450-45d1-bd18-b3e95eea374b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:15 GMT" + "Thu, 12 May 2022 10:38:32 GMT" ], "Content-Length": [ "22" @@ -3967,19 +3967,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ef41f7e7-f027-466c-8ec5-aa0ed8febbd2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY0MWY3ZTctZjAyNy00NjZjLThlYzUtYWEwZWQ4ZmViYmQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/064f561c-f16e-4f48-a61c-0b3f34d8e624?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDY0ZjU2MWMtZjE2ZS00ZjQ4LWE2MWMtMGIzZjM0ZDhlNjI0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e0c5fa4-9f9a-4df2-ad6e-58bc24d3fcd4" + "7ccbf50d-329e-411f-ab3a-97871acd9054" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3999,22 +3999,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11992" ], "x-ms-request-id": [ - "ddc2c1a8-8403-480f-8e03-41ffe71f8725" + "f56ac953-c53d-4484-b3eb-3fe658159a25" ], "x-ms-correlation-request-id": [ - "ddc2c1a8-8403-480f-8e03-41ffe71f8725" + "f56ac953-c53d-4484-b3eb-3fe658159a25" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135847Z:ddc2c1a8-8403-480f-8e03-41ffe71f8725" + "JIOINDIACENTRAL:20220512T103907Z:f56ac953-c53d-4484-b3eb-3fe658159a25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:46 GMT" + "Thu, 12 May 2022 10:39:07 GMT" ], "Content-Length": [ "22" @@ -4027,22 +4027,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c0f270f-8bd7-477b-8ee6-d72210b4b67a" + "64d2a92b-4337-4097-971f-bde6bc16803e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4062,22 +4062,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11970" ], "x-ms-request-id": [ - "d5f903ae-2b75-4571-a71d-8ce1acbbf258" + "1cb173d7-1ca0-412e-94d3-3b41710d0e13" ], "x-ms-correlation-request-id": [ - "d5f903ae-2b75-4571-a71d-8ce1acbbf258" + "1cb173d7-1ca0-412e-94d3-3b41710d0e13" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135848Z:d5f903ae-2b75-4571-a71d-8ce1acbbf258" + "JIOINDIACENTRAL:20220512T103909Z:1cb173d7-1ca0-412e-94d3-3b41710d0e13" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:47 GMT" + "Thu, 12 May 2022 10:39:08 GMT" ], "Content-Length": [ "1391" @@ -4086,26 +4086,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"DMQ0AJE2Bt4=\",\r\n \"_ts\": 1646747642,\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/\",\r\n \"_etag\": \"\\\"00007808-0000-0100-0000-62275ffa0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"CMB8APERdUw=\",\r\n \"_ts\": 1652351623,\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/\",\r\n \"_etag\": \"\\\"0000cb30-0000-0100-0000-627ce2870000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fef69b92-adb6-4be8-bf75-3bda1fc7a86f" + "ee2edd33-88d3-486c-a754-d7f68cd205c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4125,22 +4125,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11996" ], "x-ms-request-id": [ - "aa260fac-0cb8-4b63-8d4a-ba2bf7bc79d4" + "985ba02d-c895-4c09-8e8c-3e776050d6d0" ], "x-ms-correlation-request-id": [ - "aa260fac-0cb8-4b63-8d4a-ba2bf7bc79d4" + "985ba02d-c895-4c09-8e8c-3e776050d6d0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135848Z:aa260fac-0cb8-4b63-8d4a-ba2bf7bc79d4" + "JIOINDIACENTRAL:20220512T103911Z:985ba02d-c895-4c09-8e8c-3e776050d6d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:47 GMT" + "Thu, 12 May 2022 10:39:10 GMT" ], "Content-Length": [ "457" @@ -4149,26 +4149,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"DMQ0AA==\",\r\n \"_self\": \"dbs/DMQ0AA==/\",\r\n \"_etag\": \"\\\"00007608-0000-0100-0000-62275fd50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646747605\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"CMB8AA==\",\r\n \"_self\": \"dbs/CMB8AA==/\",\r\n \"_etag\": \"\\\"0000c930-0000-0100-0000-627ce2610000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652351585\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a56c5e26-28af-4683-b496-e4ea6b09e2ab" + "cfab44de-2553-44a1-a0b4-341007002aa8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4188,22 +4188,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11983" ], "x-ms-request-id": [ - "35a893fb-51b6-417b-8a30-2a76ff8eadcb" + "597c9d2c-132a-44be-8d7c-9f08a247c37a" ], "x-ms-correlation-request-id": [ - "35a893fb-51b6-417b-8a30-2a76ff8eadcb" + "597c9d2c-132a-44be-8d7c-9f08a247c37a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135848Z:35a893fb-51b6-417b-8a30-2a76ff8eadcb" + "JIOINDIACENTRAL:20220512T103912Z:597c9d2c-132a-44be-8d7c-9f08a247c37a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:48 GMT" + "Thu, 12 May 2022 10:39:12 GMT" ], "Content-Length": [ "625" @@ -4212,26 +4212,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/sprocs/DMQ0AJE2Bt4BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8d001cc3-0000-0100-0000-622760bc0000\\\"\",\r\n \"_ts\": 1646747836\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/sprocs/CMB8APERdUwBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"08005163-0000-0100-0000-627ce36d0000\\\"\",\r\n \"_ts\": 1652351853\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5aa5072-1306-4a17-ab48-cef7bfb3d2e2" + "8e853f4a-e577-46ee-80de-3504a70f35ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4251,22 +4251,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11995" ], "x-ms-request-id": [ - "cd196b7c-4f5b-4d8b-aa6c-39903d5f299b" + "a9fbd913-7761-4136-9ea0-3bcd09c85d87" ], "x-ms-correlation-request-id": [ - "cd196b7c-4f5b-4d8b-aa6c-39903d5f299b" + "a9fbd913-7761-4136-9ea0-3bcd09c85d87" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135849Z:cd196b7c-4f5b-4d8b-aa6c-39903d5f299b" + "JIOINDIACENTRAL:20220512T103913Z:a9fbd913-7761-4136-9ea0-3bcd09c85d87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:48 GMT" + "Thu, 12 May 2022 10:39:12 GMT" ], "Content-Length": [ "595" @@ -4275,26 +4275,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/udfs/DMQ0AJE2Bt4BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"8d006bc3-0000-0100-0000-622760fd0000\\\"\",\r\n \"_ts\": 1646747901\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/udfs/CMB8APERdUwBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"08006c63-0000-0100-0000-627ce3b10000\\\"\",\r\n \"_ts\": 1652351921\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29103665-fe5c-4d6e-9a1a-5d094f582b9e" + "3280df8b-daaf-43d6-b7b4-1246f22c88cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4314,22 +4314,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11981" ], "x-ms-request-id": [ - "a57145c6-cfb4-48b6-8c51-75c4e97ddbd7" + "1f362f81-dbc9-433d-afaa-040d74812f09" ], "x-ms-correlation-request-id": [ - "a57145c6-cfb4-48b6-8c51-75c4e97ddbd7" + "1f362f81-dbc9-433d-afaa-040d74812f09" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135849Z:a57145c6-cfb4-48b6-8c51-75c4e97ddbd7" + "JIOINDIACENTRAL:20220512T103914Z:1f362f81-dbc9-433d-afaa-040d74812f09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:48 GMT" + "Thu, 12 May 2022 10:39:13 GMT" ], "Content-Length": [ "632" @@ -4338,26 +4338,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"DMQ0AJE2Bt4BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/DMQ0AA==/colls/DMQ0AJE2Bt4=/triggers/DMQ0AJE2Bt4BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"8d003ec3-0000-0100-0000-622760dc0000\\\"\",\r\n \"_ts\": 1646747868\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"CMB8APERdUwBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/CMB8AA==/colls/CMB8APERdUw=/triggers/CMB8APERdUwBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"08005e63-0000-0100-0000-627ce38f0000\\\"\",\r\n \"_ts\": 1652351887\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44867d80-edfb-4c5c-ba02-189f502f913d" + "c43bc117-633f-4f64-8670-a5c9f0e51282" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4368,13 +4368,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/f6efc696-ba77-4465-ba29-62e6e5f15088?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/ca09395d-b5ae-4a6f-9ae5-da626e3f3c2a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f6efc696-ba77-4465-ba29-62e6e5f15088?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ca09395d-b5ae-4a6f-9ae5-da626e3f3c2a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f6efc696-ba77-4465-ba29-62e6e5f15088" + "ca09395d-b5ae-4a6f-9ae5-da626e3f3c2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4386,19 +4386,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "029e211d-a8b7-4857-b158-4e88bf19adc8" + "1cadb065-0238-4d9b-bb1a-6aafdb6905a1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135850Z:029e211d-a8b7-4857-b158-4e88bf19adc8" + "JIOINDIACENTRAL:20220512T103915Z:1cadb065-0238-4d9b-bb1a-6aafdb6905a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:58:49 GMT" + "Thu, 12 May 2022 10:39:15 GMT" ], "Content-Length": [ "21" @@ -4411,19 +4411,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f6efc696-ba77-4465-ba29-62e6e5f15088?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjZlZmM2OTYtYmE3Ny00NDY1LWJhMjktNjJlNmU1ZjE1MDg4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ca09395d-b5ae-4a6f-9ae5-da626e3f3c2a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2EwOTM5NWQtYjVhZS00YTZmLTlhZTUtZGE2MjZlM2YzYzJhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44867d80-edfb-4c5c-ba02-189f502f913d" + "c43bc117-633f-4f64-8670-a5c9f0e51282" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4443,22 +4443,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11969" ], "x-ms-request-id": [ - "8d9894c8-998c-4e2d-922c-b23bedd3c5da" + "3786d04f-499f-40ae-8c95-ae73d05002a2" ], "x-ms-correlation-request-id": [ - "8d9894c8-998c-4e2d-922c-b23bedd3c5da" + "3786d04f-499f-40ae-8c95-ae73d05002a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135921Z:8d9894c8-998c-4e2d-922c-b23bedd3c5da" + "JIOINDIACENTRAL:20220512T103946Z:3786d04f-499f-40ae-8c95-ae73d05002a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:59:21 GMT" + "Thu, 12 May 2022 10:39:45 GMT" ], "Content-Length": [ "22" @@ -4471,19 +4471,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/f6efc696-ba77-4465-ba29-62e6e5f15088?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmUvb3BlcmF0aW9uUmVzdWx0cy9mNmVmYzY5Ni1iYTc3LTQ0NjUtYmEyOS02MmU2ZTVmMTUwODg/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/ca09395d-b5ae-4a6f-9ae5-da626e3f3c2a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmUvb3BlcmF0aW9uUmVzdWx0cy9jYTA5Mzk1ZC1iNWFlLTRhNmYtOWFlNS1kYTYyNmUzZjNjMmE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44867d80-edfb-4c5c-ba02-189f502f913d" + "c43bc117-633f-4f64-8670-a5c9f0e51282" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4503,22 +4503,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11968" ], "x-ms-request-id": [ - "8fa02dba-bc3b-484a-9f80-208eb0c8b5a0" + "5ab4f247-6b2b-4468-979c-bcb6158664eb" ], "x-ms-correlation-request-id": [ - "8fa02dba-bc3b-484a-9f80-208eb0c8b5a0" + "5ab4f247-6b2b-4468-979c-bcb6158664eb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135921Z:8fa02dba-bc3b-484a-9f80-208eb0c8b5a0" + "JIOINDIACENTRAL:20220512T103947Z:5ab4f247-6b2b-4468-979c-bcb6158664eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:59:21 GMT" + "Thu, 12 May 2022 10:39:46 GMT" ], "Content-Type": [ "application/json" @@ -4528,22 +4528,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "428d02ba-ecd7-48ba-99da-f1d83dc4c421" + "6484d606-92fa-4f42-b083-3cd0858ad4f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4554,13 +4554,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/eb92ed9a-a3d8-43bf-bffc-83e7b0bd2968?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/43ff0427-5556-4dbb-b7a5-3e6a7c1b69eb?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eb92ed9a-a3d8-43bf-bffc-83e7b0bd2968?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43ff0427-5556-4dbb-b7a5-3e6a7c1b69eb?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "eb92ed9a-a3d8-43bf-bffc-83e7b0bd2968" + "43ff0427-5556-4dbb-b7a5-3e6a7c1b69eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4572,19 +4572,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "6ebf8acc-4b57-4cea-b89d-302f708f8b59" + "b96c83fa-9ad4-43bb-857d-d2b36d3c84fa" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T135923Z:6ebf8acc-4b57-4cea-b89d-302f708f8b59" + "JIOINDIACENTRAL:20220512T103949Z:b96c83fa-9ad4-43bb-857d-d2b36d3c84fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:59:23 GMT" + "Thu, 12 May 2022 10:39:48 GMT" ], "Content-Length": [ "21" @@ -4597,19 +4597,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eb92ed9a-a3d8-43bf-bffc-83e7b0bd2968?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWI5MmVkOWEtYTNkOC00M2JmLWJmZmMtODNlN2IwYmQyOTY4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43ff0427-5556-4dbb-b7a5-3e6a7c1b69eb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDNmZjA0MjctNTU1Ni00ZGJiLWI3YTUtM2U2YTdjMWI2OWViP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "428d02ba-ecd7-48ba-99da-f1d83dc4c421" + "6484d606-92fa-4f42-b083-3cd0858ad4f9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4629,22 +4629,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "ae720ec6-031c-4826-a068-cfbcce121e70" + "2fe3bb99-0f4e-4be0-addb-da85600a4efd" ], "x-ms-correlation-request-id": [ - "ae720ec6-031c-4826-a068-cfbcce121e70" + "2fe3bb99-0f4e-4be0-addb-da85600a4efd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T135954Z:ae720ec6-031c-4826-a068-cfbcce121e70" + "JIOINDIACENTRAL:20220512T104020Z:2fe3bb99-0f4e-4be0-addb-da85600a4efd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:59:54 GMT" + "Thu, 12 May 2022 10:40:19 GMT" ], "Content-Length": [ "22" @@ -4657,19 +4657,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/eb92ed9a-a3d8-43bf-bffc-83e7b0bd2968?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlci9vcGVyYXRpb25SZXN1bHRzL2ViOTJlZDlhLWEzZDgtNDNiZi1iZmZjLTgzZTdiMGJkMjk2OD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/43ff0427-5556-4dbb-b7a5-3e6a7c1b69eb?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlci9vcGVyYXRpb25SZXN1bHRzLzQzZmYwNDI3LTU1NTYtNGRiYi1iN2E1LTNlNmE3YzFiNjllYj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "428d02ba-ecd7-48ba-99da-f1d83dc4c421" + "6484d606-92fa-4f42-b083-3cd0858ad4f9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4689,22 +4689,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "fd2b881c-3666-44af-98b4-46c2afb0e705" + "eb9e6568-4618-4d74-8946-6543602dd2c3" ], "x-ms-correlation-request-id": [ - "fd2b881c-3666-44af-98b4-46c2afb0e705" + "eb9e6568-4618-4d74-8946-6543602dd2c3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T135954Z:fd2b881c-3666-44af-98b4-46c2afb0e705" + "JIOINDIACENTRAL:20220512T104020Z:eb9e6568-4618-4d74-8946-6543602dd2c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:59:54 GMT" + "Thu, 12 May 2022 10:40:20 GMT" ], "Content-Type": [ "application/json" @@ -4714,22 +4714,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b291d43-3bc7-4d42-b1b7-a7899da6b76f" + "6d95241b-a4b2-4f86-b034-6eae5130ea78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4740,13 +4740,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/5827cdce-df65-40c4-99e0-97b9d0c62c18?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/93664241-7c01-4696-8926-4cb56ef12d91?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5827cdce-df65-40c4-99e0-97b9d0c62c18?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/93664241-7c01-4696-8926-4cb56ef12d91?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "5827cdce-df65-40c4-99e0-97b9d0c62c18" + "93664241-7c01-4696-8926-4cb56ef12d91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4761,16 +4761,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "1a1df5b4-6033-4f5a-a463-ee203d0f41fe" + "63acfd54-afda-4a60-ad91-71729bcf8e28" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T135956Z:1a1df5b4-6033-4f5a-a463-ee203d0f41fe" + "JIOINDIACENTRAL:20220512T104024Z:63acfd54-afda-4a60-ad91-71729bcf8e28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 13:59:55 GMT" + "Thu, 12 May 2022 10:40:24 GMT" ], "Content-Length": [ "21" @@ -4783,19 +4783,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5827cdce-df65-40c4-99e0-97b9d0c62c18?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTgyN2NkY2UtZGY2NS00MGM0LTk5ZTAtOTdiOWQwYzYyYzE4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/93664241-7c01-4696-8926-4cb56ef12d91?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTM2NjQyNDEtN2MwMS00Njk2LTg5MjYtNGNiNTZlZjEyZDkxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b291d43-3bc7-4d42-b1b7-a7899da6b76f" + "6d95241b-a4b2-4f86-b034-6eae5130ea78" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4815,22 +4815,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "696c6d5b-6669-4972-80dd-4dfc3fd19736" + "39a77088-3f46-41dd-bbf0-4ba7986a07bb" ], "x-ms-correlation-request-id": [ - "696c6d5b-6669-4972-80dd-4dfc3fd19736" + "39a77088-3f46-41dd-bbf0-4ba7986a07bb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T140026Z:696c6d5b-6669-4972-80dd-4dfc3fd19736" + "JIOINDIACENTRAL:20220512T104054Z:39a77088-3f46-41dd-bbf0-4ba7986a07bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:00:25 GMT" + "Thu, 12 May 2022 10:40:54 GMT" ], "Content-Length": [ "22" @@ -4843,19 +4843,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/5827cdce-df65-40c4-99e0-97b9d0c62c18?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmL29wZXJhdGlvblJlc3VsdHMvNTgyN2NkY2UtZGY2NS00MGM0LTk5ZTAtOTdiOWQwYzYyYzE4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/93664241-7c01-4696-8926-4cb56ef12d91?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmL29wZXJhdGlvblJlc3VsdHMvOTM2NjQyNDEtN2MwMS00Njk2LTg5MjYtNGNiNTZlZjEyZDkxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b291d43-3bc7-4d42-b1b7-a7899da6b76f" + "6d95241b-a4b2-4f86-b034-6eae5130ea78" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4875,22 +4875,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "54012d8d-e295-4c9b-ae16-f3ea887e6426" + "d13a587f-ea64-4d12-a91b-1ad9d6b8a0bf" ], "x-ms-correlation-request-id": [ - "54012d8d-e295-4c9b-ae16-f3ea887e6426" + "d13a587f-ea64-4d12-a91b-1ad9d6b8a0bf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T140027Z:54012d8d-e295-4c9b-ae16-f3ea887e6426" + "JIOINDIACENTRAL:20220512T104055Z:d13a587f-ea64-4d12-a91b-1ad9d6b8a0bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:00:26 GMT" + "Thu, 12 May 2022 10:40:54 GMT" ], "Content-Type": [ "application/json" @@ -4900,22 +4900,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67c46281-4a66-4542-b008-823a6027d354" + "586263c0-389f-4123-a095-7ac9ca40475d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4926,13 +4926,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/5c63d370-5b02-4cd0-ad2c-92fe64ac141e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/5beb3e06-8d50-4d33-a151-1cfffcb4cc7b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5c63d370-5b02-4cd0-ad2c-92fe64ac141e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5beb3e06-8d50-4d33-a151-1cfffcb4cc7b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "5c63d370-5b02-4cd0-ad2c-92fe64ac141e" + "5beb3e06-8d50-4d33-a151-1cfffcb4cc7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4944,19 +4944,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "59dff128-3dbd-4779-b665-f3fde89cbcb8" + "ea482e32-565c-4efd-9e96-b94668572558" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140029Z:59dff128-3dbd-4779-b665-f3fde89cbcb8" + "CENTRALINDIA:20220512T104058Z:ea482e32-565c-4efd-9e96-b94668572558" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:00:28 GMT" + "Thu, 12 May 2022 10:40:58 GMT" ], "Content-Length": [ "21" @@ -4969,22 +4969,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e55e0f43-6cf4-47e7-a2ae-9deb29a95802" + "92caab46-03e6-46e9-8ba0-adb14f47a18d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4995,13 +4995,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/94379be7-9ed7-4f42-8f0f-9bb0a9539f44?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/12df49a1-a078-4752-801b-c2db94ad24f0?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94379be7-9ed7-4f42-8f0f-9bb0a9539f44?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/12df49a1-a078-4752-801b-c2db94ad24f0?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "94379be7-9ed7-4f42-8f0f-9bb0a9539f44" + "12df49a1-a078-4752-801b-c2db94ad24f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5013,19 +5013,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "3287197a-9d30-46f4-a3c7-2b8af7ed78bb" + "b0922fe5-9568-4605-940a-f795cf642ed4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140134Z:3287197a-9d30-46f4-a3c7-2b8af7ed78bb" + "JIOINDIACENTRAL:20220512T104205Z:b0922fe5-9568-4605-940a-f795cf642ed4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:01:34 GMT" + "Thu, 12 May 2022 10:42:04 GMT" ], "Content-Length": [ "21" @@ -5038,19 +5038,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5c63d370-5b02-4cd0-ad2c-92fe64ac141e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWM2M2QzNzAtNWIwMi00Y2QwLWFkMmMtOTJmZTY0YWMxNDFlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5beb3e06-8d50-4d33-a151-1cfffcb4cc7b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWJlYjNlMDYtOGQ1MC00ZDMzLWExNTEtMWNmZmZjYjRjYzdiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67c46281-4a66-4542-b008-823a6027d354" + "586263c0-389f-4123-a095-7ac9ca40475d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5070,22 +5070,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "d394a159-96cb-421d-9fa2-520a51c66c7f" + "000fd60b-64fe-41a9-a167-6278dac98ee2" ], "x-ms-correlation-request-id": [ - "d394a159-96cb-421d-9fa2-520a51c66c7f" + "000fd60b-64fe-41a9-a167-6278dac98ee2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140059Z:d394a159-96cb-421d-9fa2-520a51c66c7f" + "CENTRALINDIA:20220512T104128Z:000fd60b-64fe-41a9-a167-6278dac98ee2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:00:59 GMT" + "Thu, 12 May 2022 10:41:28 GMT" ], "Content-Length": [ "22" @@ -5098,19 +5098,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/5c63d370-5b02-4cd0-ad2c-92fe64ac141e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvb3BlcmF0aW9uUmVzdWx0cy81YzYzZDM3MC01YjAyLTRjZDAtYWQyYy05MmZlNjRhYzE0MWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/5beb3e06-8d50-4d33-a151-1cfffcb4cc7b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvb3BlcmF0aW9uUmVzdWx0cy81YmViM2UwNi04ZDUwLTRkMzMtYTE1MS0xY2ZmZmNiNGNjN2I/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67c46281-4a66-4542-b008-823a6027d354" + "586263c0-389f-4123-a095-7ac9ca40475d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5130,22 +5130,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "629f8d7f-63b8-4cd1-9a96-e023e461896e" + "704b53a1-792b-46fb-a334-4aa1e77402cc" ], "x-ms-correlation-request-id": [ - "629f8d7f-63b8-4cd1-9a96-e023e461896e" + "704b53a1-792b-46fb-a334-4aa1e77402cc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140059Z:629f8d7f-63b8-4cd1-9a96-e023e461896e" + "CENTRALINDIA:20220512T104130Z:704b53a1-792b-46fb-a334-4aa1e77402cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:00:59 GMT" + "Thu, 12 May 2022 10:41:29 GMT" ], "Content-Type": [ "application/json" @@ -5155,22 +5155,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8971e7c0-7dfc-4733-8758-1969e91dcd7e" + "efc61b90-9e45-46f3-8d42-eb3e21a50bd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5181,13 +5181,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/3777da0a-bfd8-46f0-b406-91f32cdcd57f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/cb6110e8-8322-4708-b8dc-669fede9a759?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3777da0a-bfd8-46f0-b406-91f32cdcd57f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cb6110e8-8322-4708-b8dc-669fede9a759?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "3777da0a-bfd8-46f0-b406-91f32cdcd57f" + "cb6110e8-8322-4708-b8dc-669fede9a759" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5202,16 +5202,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "7dc8696b-db7d-408d-8951-b78cb43a1ef3" + "dbaac7aa-5cc7-485c-b0cc-65248e803c65" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140101Z:7dc8696b-db7d-408d-8951-b78cb43a1ef3" + "CENTRALINDIA:20220512T104132Z:dbaac7aa-5cc7-485c-b0cc-65248e803c65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:01:01 GMT" + "Thu, 12 May 2022 10:41:31 GMT" ], "Content-Length": [ "21" @@ -5224,22 +5224,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1bf457b-bd9d-4157-ba86-1d55e184917d" + "3340a384-5d5f-4c21-929e-6a68f7890840" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5250,13 +5250,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/11c154dd-2e55-4a2f-ba13-48daaead6a7e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/2a486947-b036-493c-b22a-d403927f1ab2?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/11c154dd-2e55-4a2f-ba13-48daaead6a7e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2a486947-b036-493c-b22a-d403927f1ab2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "11c154dd-2e55-4a2f-ba13-48daaead6a7e" + "2a486947-b036-493c-b22a-d403927f1ab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5271,16 +5271,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "cd07f6a5-939d-40ae-8e9b-275d4efabb14" + "42c44e75-e2d7-4df0-a542-1f5c90598210" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140206Z:cd07f6a5-939d-40ae-8e9b-275d4efabb14" + "CENTRALINDIA:20220512T104239Z:42c44e75-e2d7-4df0-a542-1f5c90598210" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:02:06 GMT" + "Thu, 12 May 2022 10:42:39 GMT" ], "Content-Length": [ "21" @@ -5293,19 +5293,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3777da0a-bfd8-46f0-b406-91f32cdcd57f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzc3N2RhMGEtYmZkOC00NmYwLWI0MDYtOTFmMzJjZGNkNTdmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cb6110e8-8322-4708-b8dc-669fede9a759?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2I2MTEwZTgtODMyMi00NzA4LWI4ZGMtNjY5ZmVkZTlhNzU5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8971e7c0-7dfc-4733-8758-1969e91dcd7e" + "efc61b90-9e45-46f3-8d42-eb3e21a50bd1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5325,22 +5325,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "86d5cbd6-f692-44d7-a411-5c6531c1e6e3" + "42dbfbe9-2ed1-4c7f-b233-6109e0fba2e5" ], "x-ms-correlation-request-id": [ - "86d5cbd6-f692-44d7-a411-5c6531c1e6e3" + "42dbfbe9-2ed1-4c7f-b233-6109e0fba2e5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140132Z:86d5cbd6-f692-44d7-a411-5c6531c1e6e3" + "CENTRALINDIA:20220512T104203Z:42dbfbe9-2ed1-4c7f-b233-6109e0fba2e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:01:31 GMT" + "Thu, 12 May 2022 10:42:03 GMT" ], "Content-Length": [ "22" @@ -5353,19 +5353,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/3777da0a-bfd8-46f0-b406-91f32cdcd57f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzM3NzdkYTBhLWJmZDgtNDZmMC1iNDA2LTkxZjMyY2RjZDU3Zj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/cb6110e8-8322-4708-b8dc-669fede9a759?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzL2NiNjExMGU4LTgzMjItNDcwOC1iOGRjLTY2OWZlZGU5YTc1OT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8971e7c0-7dfc-4733-8758-1969e91dcd7e" + "efc61b90-9e45-46f3-8d42-eb3e21a50bd1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5385,22 +5385,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "bbf356f4-df9a-4489-bfee-2dc038515633" + "bf00213c-05b0-48bc-9274-fe415bee6b8e" ], "x-ms-correlation-request-id": [ - "bbf356f4-df9a-4489-bfee-2dc038515633" + "bf00213c-05b0-48bc-9274-fe415bee6b8e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140132Z:bbf356f4-df9a-4489-bfee-2dc038515633" + "CENTRALINDIA:20220512T104203Z:bf00213c-05b0-48bc-9274-fe415bee6b8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:01:32 GMT" + "Thu, 12 May 2022 10:42:03 GMT" ], "Content-Type": [ "application/json" @@ -5410,19 +5410,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94379be7-9ed7-4f42-8f0f-9bb0a9539f44?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTQzNzliZTctOWVkNy00ZjQyLThmMGYtOWJiMGE5NTM5ZjQ0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/12df49a1-a078-4752-801b-c2db94ad24f0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTJkZjQ5YTEtYTA3OC00NzUyLTgwMWItYzJkYjk0YWQyNGYwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e55e0f43-6cf4-47e7-a2ae-9deb29a95802" + "92caab46-03e6-46e9-8ba0-adb14f47a18d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5442,22 +5442,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11975" ], "x-ms-request-id": [ - "4314ebe2-9105-4b74-a71e-1e2d3054b9f5" + "35e8c126-330f-4c2a-ba01-f436ae4fa01b" ], "x-ms-correlation-request-id": [ - "4314ebe2-9105-4b74-a71e-1e2d3054b9f5" + "35e8c126-330f-4c2a-ba01-f436ae4fa01b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140204Z:4314ebe2-9105-4b74-a71e-1e2d3054b9f5" + "JIOINDIACENTRAL:20220512T104236Z:35e8c126-330f-4c2a-ba01-f436ae4fa01b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:02:04 GMT" + "Thu, 12 May 2022 10:42:35 GMT" ], "Content-Length": [ "22" @@ -5470,19 +5470,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/94379be7-9ed7-4f42-8f0f-9bb0a9539f44?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvb3BlcmF0aW9uUmVzdWx0cy85NDM3OWJlNy05ZWQ3LTRmNDItOGYwZi05YmIwYTk1MzlmNDQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/containers/container1/operationResults/12df49a1-a078-4752-801b-c2db94ad24f0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvb3BlcmF0aW9uUmVzdWx0cy8xMmRmNDlhMS1hMDc4LTQ3NTItODAxYi1jMmRiOTRhZDI0ZjA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e55e0f43-6cf4-47e7-a2ae-9deb29a95802" + "92caab46-03e6-46e9-8ba0-adb14f47a18d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5502,22 +5502,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11974" ], "x-ms-request-id": [ - "b200758e-5311-4131-9b0c-cdfcf67d77a2" + "069df167-c186-4293-bea7-6ab65d7b1323" ], "x-ms-correlation-request-id": [ - "b200758e-5311-4131-9b0c-cdfcf67d77a2" + "069df167-c186-4293-bea7-6ab65d7b1323" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140205Z:b200758e-5311-4131-9b0c-cdfcf67d77a2" + "JIOINDIACENTRAL:20220512T104236Z:069df167-c186-4293-bea7-6ab65d7b1323" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:02:04 GMT" + "Thu, 12 May 2022 10:42:36 GMT" ], "Content-Type": [ "application/json" @@ -5527,19 +5527,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/11c154dd-2e55-4a2f-ba13-48daaead6a7e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTFjMTU0ZGQtMmU1NS00YTJmLWJhMTMtNDhkYWFlYWQ2YTdlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2a486947-b036-493c-b22a-d403927f1ab2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmE0ODY5NDctYjAzNi00OTNjLWIyMmEtZDQwMzkyN2YxYWIyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1bf457b-bd9d-4157-ba86-1d55e184917d" + "3340a384-5d5f-4c21-929e-6a68f7890840" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5562,19 +5562,19 @@ "11999" ], "x-ms-request-id": [ - "a9b79c0b-e272-486c-be2c-d8a971e5d8ec" + "70dd973f-9814-4424-a3a0-5609d8dfa8d5" ], "x-ms-correlation-request-id": [ - "a9b79c0b-e272-486c-be2c-d8a971e5d8ec" + "70dd973f-9814-4424-a3a0-5609d8dfa8d5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140237Z:a9b79c0b-e272-486c-be2c-d8a971e5d8ec" + "CENTRALINDIA:20220512T104310Z:70dd973f-9814-4424-a3a0-5609d8dfa8d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:02:36 GMT" + "Thu, 12 May 2022 10:43:09 GMT" ], "Content-Length": [ "22" @@ -5587,19 +5587,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/11c154dd-2e55-4a2f-ba13-48daaead6a7e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzExYzE1NGRkLTJlNTUtNGEyZi1iYTEzLTQ4ZGFhZWFkNmE3ZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup60/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-1/sqlDatabases/dbName/operationResults/2a486947-b036-493c-b22a-d403927f1ab2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzJhNDg2OTQ3LWIwMzYtNDkzYy1iMjJhLWQ0MDM5MjdmMWFiMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1bf457b-bd9d-4157-ba86-1d55e184917d" + "3340a384-5d5f-4c21-929e-6a68f7890840" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5622,19 +5622,19 @@ "11998" ], "x-ms-request-id": [ - "bd6222c7-37df-4665-88b9-ad339c941957" + "4d99a2bd-894c-4e8c-9517-63da077e886c" ], "x-ms-correlation-request-id": [ - "bd6222c7-37df-4665-88b9-ad339c941957" + "4d99a2bd-894c-4e8c-9517-63da077e886c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140238Z:bd6222c7-37df-4665-88b9-ad339c941957" + "CENTRALINDIA:20220512T104310Z:4d99a2bd-894c-4e8c-9517-63da077e886c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:02:38 GMT" + "Thu, 12 May 2022 10:43:10 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlOperationsCmdletsUsingInputObject.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlOperationsCmdletsUsingInputObject.json index 5fa7ed03a8c4..a411ced1f422 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlOperationsCmdletsUsingInputObject.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlOperationsCmdletsUsingInputObject.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12e5de7c-67c3-421c-ad1f-f9fdfcedab3f" + "4080ce22-e9d7-4518-b799-7c0e7b5047f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "9274eed4-620e-4fc1-a81b-a19032b13af1" + "449b776a-bba9-4a3e-a36b-88fb98241980" ], "x-ms-correlation-request-id": [ - "9274eed4-620e-4fc1-a81b-a19032b13af1" + "449b776a-bba9-4a3e-a36b-88fb98241980" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140254Z:9274eed4-620e-4fc1-a81b-a19032b13af1" + "JIOINDIACENTRAL:20220512T104324Z:449b776a-bba9-4a3e-a36b-88fb98241980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:02:53 GMT" + "Thu, 12 May 2022 10:43:23 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b546a3-c8e9-4343-a49e-3022f318ac97" + "fe7fbc5d-0b40-424d-b545-1601f28bf372" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "dd568170-ea47-4b41-9b03-ddf088d363c6" + "bf67bc2d-ce19-42cd-997b-b371339c8fbd" ], "x-ms-correlation-request-id": [ - "dd568170-ea47-4b41-9b03-ddf088d363c6" + "bf67bc2d-ce19-42cd-997b-b371339c8fbd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140255Z:dd568170-ea47-4b41-9b03-ddf088d363c6" + "JIOINDIACENTRAL:20220512T104324Z:bf67bc2d-ce19-42cd-997b-b371339c8fbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:02:55 GMT" + "Thu, 12 May 2022 10:43:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b546a3-c8e9-4343-a49e-3022f318ac97" + "fe7fbc5d-0b40-424d-b545-1601f28bf372" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11984" ], "x-ms-request-id": [ - "8179ca61-fc3c-4c34-af8d-9f4df00e557f" + "3a0bf031-538d-4150-bebd-2602f228c3f9" ], "x-ms-correlation-request-id": [ - "8179ca61-fc3c-4c34-af8d-9f4df00e557f" + "3a0bf031-538d-4150-bebd-2602f228c3f9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140509Z:8179ca61-fc3c-4c34-af8d-9f4df00e557f" + "JIOINDIACENTRAL:20220512T104505Z:3a0bf031-538d-4150-bebd-2602f228c3f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:08 GMT" + "Thu, 12 May 2022 10:45:05 GMT" ], "Content-Length": [ "2337" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1\",\r\n \"name\": \"dbaccount61-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:04:14.8414819Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount61-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"0d4f3694-e5a7-4cc6-9d7a-c454a20087df\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1\",\r\n \"name\": \"dbaccount61-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:44:41.3299985Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount61-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"49b7a506-da34-4f83-a006-314784023880\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6507d803-18e3-4193-9f11-2358efe1f04b" + "341ae4bb-1cd8-4e45-9bc9-4acd128d5770" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11982" ], "x-ms-request-id": [ - "60200777-bf9f-40db-902f-980e616a2a10" + "d9384b16-d33e-403e-98a9-b21044c7b39c" ], "x-ms-correlation-request-id": [ - "60200777-bf9f-40db-902f-980e616a2a10" + "d9384b16-d33e-403e-98a9-b21044c7b39c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140509Z:60200777-bf9f-40db-902f-980e616a2a10" + "JIOINDIACENTRAL:20220512T104507Z:d9384b16-d33e-403e-98a9-b21044c7b39c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:08 GMT" + "Thu, 12 May 2022 10:45:07 GMT" ], "Content-Length": [ "2337" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1\",\r\n \"name\": \"dbaccount61-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:04:14.8414819Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount61-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"0d4f3694-e5a7-4cc6-9d7a-c454a20087df\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1\",\r\n \"name\": \"dbaccount61-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:44:41.3299985Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount61-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"49b7a506-da34-4f83-a006-314784023880\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount61-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b546a3-c8e9-4343-a49e-3022f318ac97" + "fe7fbc5d-0b40-424d-b545-1601f28bf372" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/operationResults/ae7e030b-b3f6-4936-a2a6-9560ef3d93ce?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/operationResults/02e25069-61a3-454c-a4d1-bcd0fe5bf0d8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ae7e030b-b3f6-4936-a2a6-9560ef3d93ce" + "02e25069-61a3-454c-a4d1-bcd0fe5bf0d8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae7e030b-b3f6-4936-a2a6-9560ef3d93ce?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02e25069-61a3-454c-a4d1-bcd0fe5bf0d8?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "356bdf27-e48c-4bdb-b2b9-ad0ee27cbfce" + "09bda033-84d8-46f8-b417-51c4f4b0f77a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140307Z:356bdf27-e48c-4bdb-b2b9-ad0ee27cbfce" + "JIOINDIACENTRAL:20220512T104332Z:09bda033-84d8-46f8-b417-51c4f4b0f77a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:03:06 GMT" + "Thu, 12 May 2022 10:43:32 GMT" ], "Content-Length": [ "2026" @@ -321,83 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1\",\r\n \"name\": \"dbaccount61-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:03:04.7865016Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"0d4f3694-e5a7-4cc6-9d7a-c454a20087df\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae7e030b-b3f6-4936-a2a6-9560ef3d93ce?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWU3ZTAzMGItYjNmNi00OTM2LWEyYTYtOTU2MGVmM2Q5M2NlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1b546a3-c8e9-4343-a49e-3022f318ac97" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "1430ae08-161a-43ce-b592-40a31dcddc8a" - ], - "x-ms-correlation-request-id": [ - "1430ae08-161a-43ce-b592-40a31dcddc8a" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140337Z:1430ae08-161a-43ce-b592-40a31dcddc8a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 14:03:37 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1\",\r\n \"name\": \"dbaccount61-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T10:43:30.2146297Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"49b7a506-da34-4f83-a006-314784023880\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount61-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae7e030b-b3f6-4936-a2a6-9560ef3d93ce?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWU3ZTAzMGItYjNmNi00OTM2LWEyYTYtOTU2MGVmM2Q5M2NlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02e25069-61a3-454c-a4d1-bcd0fe5bf0d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDJlMjUwNjktNjFhMy00NTRjLWE0ZDEtYmNkMGZlNWJmMGQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b546a3-c8e9-4343-a49e-3022f318ac97" + "fe7fbc5d-0b40-424d-b545-1601f28bf372" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11987" ], "x-ms-request-id": [ - "3daba500-af6b-4a6d-b9fe-2607a2c20b1d" + "a6ed9cf5-2462-44c1-8729-611c87bf59c7" ], "x-ms-correlation-request-id": [ - "3daba500-af6b-4a6d-b9fe-2607a2c20b1d" + "a6ed9cf5-2462-44c1-8729-611c87bf59c7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140408Z:3daba500-af6b-4a6d-b9fe-2607a2c20b1d" + "JIOINDIACENTRAL:20220512T104403Z:a6ed9cf5-2462-44c1-8729-611c87bf59c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:04:08 GMT" + "Thu, 12 May 2022 10:44:03 GMT" ], "Content-Length": [ "21" @@ -445,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae7e030b-b3f6-4936-a2a6-9560ef3d93ce?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWU3ZTAzMGItYjNmNi00OTM2LWEyYTYtOTU2MGVmM2Q5M2NlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02e25069-61a3-454c-a4d1-bcd0fe5bf0d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDJlMjUwNjktNjFhMy00NTRjLWE0ZDEtYmNkMGZlNWJmMGQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b546a3-c8e9-4343-a49e-3022f318ac97" + "fe7fbc5d-0b40-424d-b545-1601f28bf372" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11986" ], "x-ms-request-id": [ - "49d4de87-e6a0-476e-a99c-5738684db620" + "9fb6118c-3d78-4ad1-8e4f-04ed9cc424ab" ], "x-ms-correlation-request-id": [ - "49d4de87-e6a0-476e-a99c-5738684db620" + "9fb6118c-3d78-4ad1-8e4f-04ed9cc424ab" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140438Z:49d4de87-e6a0-476e-a99c-5738684db620" + "JIOINDIACENTRAL:20220512T104434Z:9fb6118c-3d78-4ad1-8e4f-04ed9cc424ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:04:38 GMT" + "Thu, 12 May 2022 10:44:33 GMT" ], "Content-Length": [ "21" @@ -505,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae7e030b-b3f6-4936-a2a6-9560ef3d93ce?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWU3ZTAzMGItYjNmNi00OTM2LWEyYTYtOTU2MGVmM2Q5M2NlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02e25069-61a3-454c-a4d1-bcd0fe5bf0d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDJlMjUwNjktNjFhMy00NTRjLWE0ZDEtYmNkMGZlNWJmMGQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b546a3-c8e9-4343-a49e-3022f318ac97" + "fe7fbc5d-0b40-424d-b545-1601f28bf372" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11985" ], "x-ms-request-id": [ - "46458100-4c86-44d3-bbea-62b585dcffb7" + "e96aef73-083d-4618-929d-438104cc1fe3" ], "x-ms-correlation-request-id": [ - "46458100-4c86-44d3-bbea-62b585dcffb7" + "e96aef73-083d-4618-929d-438104cc1fe3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140508Z:46458100-4c86-44d3-bbea-62b585dcffb7" + "JIOINDIACENTRAL:20220512T104505Z:e96aef73-083d-4618-929d-438104cc1fe3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:08 GMT" + "Thu, 12 May 2022 10:45:04 GMT" ], "Content-Length": [ "22" @@ -565,22 +505,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5804e9b1-8cb2-4e8c-ab03-b8713a6b09cd" + "919fc7cb-c7ae-4047-b5c2-87eec600b6f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -600,47 +540,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11981" ], "x-ms-request-id": [ - "c81cb1aa-40d9-49a4-a37f-5178764ad4e3" + "5ea452fa-29ec-4ba6-b23c-89cafcfe7b5b" ], "x-ms-correlation-request-id": [ - "c81cb1aa-40d9-49a4-a37f-5178764ad4e3" + "5ea452fa-29ec-4ba6-b23c-89cafcfe7b5b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140509Z:c81cb1aa-40d9-49a4-a37f-5178764ad4e3" + "JIOINDIACENTRAL:20220512T104508Z:5ea452fa-29ec-4ba6-b23c-89cafcfe7b5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:09 GMT" + "Thu, 12 May 2022 10:45:07 GMT" ], "Content-Length": [ - "5576" + "6289" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 5804e9b1-8cb2-4e8c-ab03-b8713a6b09cd, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/fdb39586-e936-4269-9920-707de09a221c/partitions/51bf447d-e2b8-4406-92fd-61167d2f8d40/replicas/132912207359127117s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:05:09.7730063Z, RequestEndTime: 2022-03-08T14:05:09.7730063Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:08.7334628Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.478,\\\\\\\"memory\\\\\\\":638120832.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0081,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:18.7433622Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.602,\\\\\\\"memory\\\\\\\":637504716.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0164,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:28.7533047Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.106,\\\\\\\"memory\\\\\\\":636884900.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:38.7632565Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.207,\\\\\\\"memory\\\\\\\":638179144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0264,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:48.7731954Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.859,\\\\\\\"memory\\\\\\\":637652044.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32752,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:58.7831119Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.010,\\\\\\\"memory\\\\\\\":639492176.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:05:09.7730063Z; ResponseTime: 2022-03-08T14:05:09.7730063Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/c897d528-9633-429d-a831-44567c908025/services/fdb39586-e936-4269-9920-707de09a221c/partitions/51bf447d-e2b8-4406-92fd-61167d2f8d40/replicas/132912207359127117s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.723, ActivityId: 5804e9b1-8cb2-4e8c-ab03-b8713a6b09cd, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7730063Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0078},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7730141Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0025},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7730166Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.088},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7731046Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1747},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7742793Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1664},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7744457Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":459,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:05:09.7730063Z; ResponseTime: 2022-03-08T14:05:09.7730063Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/c897d528-9633-429d-a831-44567c908025/services/fdb39586-e936-4269-9920-707de09a221c/partitions/51bf447d-e2b8-4406-92fd-61167d2f8d40/replicas/132912207359127119s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.104, ActivityId: 5804e9b1-8cb2-4e8c-ab03-b8713a6b09cd, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7730063Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0029},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7730092Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7730103Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0666},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7730769Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6075},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7746844Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0375},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:09.7747219Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":459,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 919fc7cb-c7ae-4047-b5c2-87eec600b6f6, Request URI: /apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/5931fa07-68cb-4807-a17f-0fe8ca9f2d71/partitions/4c43cb5c-64e2-464e-a7ab-ff83fbcf1490/replicas/132968196251903174s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:45:07.9486811Z, RequestEndTime: 2022-05-12T10:45:07.9586739Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:44:16.6391568Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.448,\\\\\\\"memory\\\\\\\":658985996.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:44:26.6490495Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.807,\\\\\\\"memory\\\\\\\":658856956.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0407,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:44:36.6589594Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.341,\\\\\\\"memory\\\\\\\":658834692.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0173,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:44:46.6688770Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.390,\\\\\\\"memory\\\\\\\":658736612.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0166,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:44:56.6788018Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.211,\\\\\\\"memory\\\\\\\":658902980.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0182,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:06.6886877Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.322,\\\\\\\"memory\\\\\\\":658797812.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0185,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:45:07.9486811Z; ResponseTime: 2022-05-12T10:45:07.9586739Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/5931fa07-68cb-4807-a17f-0fe8ca9f2d71/partitions/4c43cb5c-64e2-464e-a7ab-ff83fbcf1490/replicas/132968196251903174s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.772, ActivityId: 919fc7cb-c7ae-4047-b5c2-87eec600b6f6, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9486811Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0065},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9486876Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0021},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9486897Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1974},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9488871Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9048},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9497919Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1239},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9499158Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:45:07.9086817Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:45:07.9086817Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:45:07.9086817Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":457,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:45:07.9486811Z; ResponseTime: 2022-05-12T10:45:07.9586739Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/5931fa07-68cb-4807-a17f-0fe8ca9f2d71/partitions/4c43cb5c-64e2-464e-a7ab-ff83fbcf1490/replicas/132968196251903173s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.714, ActivityId: 919fc7cb-c7ae-4047-b5c2-87eec600b6f6, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9486811Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9486839Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.001},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9486849Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0649},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9487498Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0069},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9497567Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.094},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:07.9498507Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:45:07.9086817Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:45:07.9086817Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:45:07.9086817Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":457,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5804e9b1-8cb2-4e8c-ab03-b8713a6b09cd" + "919fc7cb-c7ae-4047-b5c2-87eec600b6f6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -660,22 +600,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11979" ], "x-ms-request-id": [ - "cb531b5f-4c46-40e1-9175-a08e5dcaa1a2" + "8f7d4451-4900-402d-b85d-1b6c004a6a57" ], "x-ms-correlation-request-id": [ - "cb531b5f-4c46-40e1-9175-a08e5dcaa1a2" + "8f7d4451-4900-402d-b85d-1b6c004a6a57" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140541Z:cb531b5f-4c46-40e1-9175-a08e5dcaa1a2" + "JIOINDIACENTRAL:20220512T104541Z:8f7d4451-4900-402d-b85d-1b6c004a6a57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:40 GMT" + "Thu, 12 May 2022 10:45:40 GMT" ], "Content-Length": [ "445" @@ -684,26 +624,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UB4rAA==\",\r\n \"_self\": \"dbs/UB4rAA==/\",\r\n \"_etag\": \"\\\"00007e01-0000-0100-0000-6227629a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646748314\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L8ZzAA==\",\r\n \"_self\": \"dbs/L8ZzAA==/\",\r\n \"_etag\": \"\\\"0000a509-0000-0100-0000-627ce53a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652352314\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8706f0a-0ced-4cae-ac23-0126046f1d6a" + "e8fac45c-e913-4493-8cf8-c5516226b845" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -723,22 +663,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-request-id": [ - "e99eee65-df2f-438b-b08b-285f67c07fa2" + "813c7faa-c2fb-4bd5-acc4-74b95ea34377" ], "x-ms-correlation-request-id": [ - "e99eee65-df2f-438b-b08b-285f67c07fa2" + "813c7faa-c2fb-4bd5-acc4-74b95ea34377" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140748Z:e99eee65-df2f-438b-b08b-285f67c07fa2" + "CENTRALINDIA:20220512T104803Z:813c7faa-c2fb-4bd5-acc4-74b95ea34377" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:47 GMT" + "Thu, 12 May 2022 10:48:02 GMT" ], "Content-Length": [ "445" @@ -747,26 +687,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UB4rAA==\",\r\n \"_self\": \"dbs/UB4rAA==/\",\r\n \"_etag\": \"\\\"00007e01-0000-0100-0000-6227629a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646748314\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L8ZzAA==\",\r\n \"_self\": \"dbs/L8ZzAA==/\",\r\n \"_etag\": \"\\\"0000a509-0000-0100-0000-627ce53a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652352314\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8088d873-3026-4689-b2b9-b666811779c2" + "a1d8c592-e939-4700-b846-b09aa9b9a3e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -786,22 +726,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11979" ], "x-ms-request-id": [ - "c3dd818a-a33a-43fd-b247-fe49752e2f7d" + "3231e3c5-b6aa-4956-bacd-aefd919d1271" ], "x-ms-correlation-request-id": [ - "c3dd818a-a33a-43fd-b247-fe49752e2f7d" + "3231e3c5-b6aa-4956-bacd-aefd919d1271" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140749Z:c3dd818a-a33a-43fd-b247-fe49752e2f7d" + "JIOINDIACENTRAL:20220512T104811Z:3231e3c5-b6aa-4956-bacd-aefd919d1271" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:48 GMT" + "Thu, 12 May 2022 10:48:11 GMT" ], "Content-Length": [ "445" @@ -810,23 +750,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UB4rAA==\",\r\n \"_self\": \"dbs/UB4rAA==/\",\r\n \"_etag\": \"\\\"00007e01-0000-0100-0000-6227629a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646748314\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L8ZzAA==\",\r\n \"_self\": \"dbs/L8ZzAA==/\",\r\n \"_etag\": \"\\\"0000a509-0000-0100-0000-627ce53a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652352314\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8088d873-3026-4689-b2b9-b666811779c2" + "a1d8c592-e939-4700-b846-b09aa9b9a3e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -846,22 +786,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11977" ], "x-ms-request-id": [ - "b6797c83-48df-4b61-928c-d2cfd2392b5e" + "aaaf46d9-1691-4f01-aace-a3a6588d6adb" ], "x-ms-correlation-request-id": [ - "b6797c83-48df-4b61-928c-d2cfd2392b5e" + "aaaf46d9-1691-4f01-aace-a3a6588d6adb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140820Z:b6797c83-48df-4b61-928c-d2cfd2392b5e" + "JIOINDIACENTRAL:20220512T104844Z:aaaf46d9-1691-4f01-aace-a3a6588d6adb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:08:20 GMT" + "Thu, 12 May 2022 10:48:43 GMT" ], "Content-Length": [ "445" @@ -870,26 +810,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UB4rAA==\",\r\n \"_self\": \"dbs/UB4rAA==/\",\r\n \"_etag\": \"\\\"00007e01-0000-0100-0000-6227629a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646748314\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L8ZzAA==\",\r\n \"_self\": \"dbs/L8ZzAA==/\",\r\n \"_etag\": \"\\\"0000a509-0000-0100-0000-627ce53a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652352314\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30bb1e93-7d7f-450d-8bc1-c5093dd62179" + "cc3410c9-1611-4c14-8c14-66ed4b517d44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -909,22 +849,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11986" ], "x-ms-request-id": [ - "82ab167f-af22-4c7c-9f43-efb44b985e0e" + "19b08316-5ef6-4d27-aa0a-5b461c8d8239" ], "x-ms-correlation-request-id": [ - "82ab167f-af22-4c7c-9f43-efb44b985e0e" + "19b08316-5ef6-4d27-aa0a-5b461c8d8239" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141026Z:82ab167f-af22-4c7c-9f43-efb44b985e0e" + "JIOINDIACENTRAL:20220512T105101Z:19b08316-5ef6-4d27-aa0a-5b461c8d8239" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:10:26 GMT" + "Thu, 12 May 2022 10:51:00 GMT" ], "Content-Length": [ "445" @@ -933,23 +873,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UB4rAA==\",\r\n \"_self\": \"dbs/UB4rAA==/\",\r\n \"_etag\": \"\\\"00007e01-0000-0100-0000-6227629a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646748314\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L8ZzAA==\",\r\n \"_self\": \"dbs/L8ZzAA==/\",\r\n \"_etag\": \"\\\"0000a509-0000-0100-0000-627ce53a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652352314\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30bb1e93-7d7f-450d-8bc1-c5093dd62179" + "cc3410c9-1611-4c14-8c14-66ed4b517d44" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -969,22 +909,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11984" ], "x-ms-request-id": [ - "88cb2ddc-9de8-4f57-bb63-dd181a7cf657" + "24cf8f75-f662-4d4f-b10e-7e0b9a5741a7" ], "x-ms-correlation-request-id": [ - "88cb2ddc-9de8-4f57-bb63-dd181a7cf657" + "24cf8f75-f662-4d4f-b10e-7e0b9a5741a7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141057Z:88cb2ddc-9de8-4f57-bb63-dd181a7cf657" + "JIOINDIACENTRAL:20220512T105132Z:24cf8f75-f662-4d4f-b10e-7e0b9a5741a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:10:57 GMT" + "Thu, 12 May 2022 10:51:32 GMT" ], "Content-Length": [ "445" @@ -993,26 +933,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UB4rAA==\",\r\n \"_self\": \"dbs/UB4rAA==/\",\r\n \"_etag\": \"\\\"00007e01-0000-0100-0000-6227629a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646748314\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L8ZzAA==\",\r\n \"_self\": \"dbs/L8ZzAA==/\",\r\n \"_etag\": \"\\\"0000a509-0000-0100-0000-627ce53a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652352314\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5804e9b1-8cb2-4e8c-ab03-b8713a6b09cd" + "919fc7cb-c7ae-4047-b5c2-87eec600b6f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1029,13 +969,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/bcb42ed9-2eba-41a0-aed8-c9e0b2b6bebb?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/1bfc4cb5-b4ea-4ca3-ad30-afafade14c71?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bcb42ed9-2eba-41a0-aed8-c9e0b2b6bebb?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1bfc4cb5-b4ea-4ca3-ad30-afafade14c71?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "bcb42ed9-2eba-41a0-aed8-c9e0b2b6bebb" + "1bfc4cb5-b4ea-4ca3-ad30-afafade14c71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,19 +987,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "344a660c-cc17-4abc-971e-1c51bb6dc4d6" + "da41e71e-df0f-41c4-a2a2-ce00af613567" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140510Z:344a660c-cc17-4abc-971e-1c51bb6dc4d6" + "JIOINDIACENTRAL:20220512T104510Z:da41e71e-df0f-41c4-a2a2-ce00af613567" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:10 GMT" + "Thu, 12 May 2022 10:45:10 GMT" ], "Content-Length": [ "21" @@ -1072,22 +1012,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8088d873-3026-4689-b2b9-b666811779c2" + "a1d8c592-e939-4700-b846-b09aa9b9a3e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,13 +1044,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/b17d12cf-189f-459c-9161-d0837e2d0bb7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/66a3c711-0565-4040-ae25-449ffab0ca22?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b17d12cf-189f-459c-9161-d0837e2d0bb7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66a3c711-0565-4040-ae25-449ffab0ca22?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b17d12cf-189f-459c-9161-d0837e2d0bb7" + "66a3c711-0565-4040-ae25-449ffab0ca22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1122,19 +1062,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "10b740a3-f5d7-4fd0-80fb-5ac7bee97eb1" + "232db08b-7cb9-4ae7-90a1-fee089f3e053" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140750Z:10b740a3-f5d7-4fd0-80fb-5ac7bee97eb1" + "JIOINDIACENTRAL:20220512T104813Z:232db08b-7cb9-4ae7-90a1-fee089f3e053" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:49 GMT" + "Thu, 12 May 2022 10:48:13 GMT" ], "Content-Length": [ "21" @@ -1147,22 +1087,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "30bb1e93-7d7f-450d-8bc1-c5093dd62179" + "cc3410c9-1611-4c14-8c14-66ed4b517d44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1179,13 +1119,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/dacaebc5-6003-45c6-95da-1d9640292767?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/9f0be6a7-4451-4415-a870-eb1409decf42?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dacaebc5-6003-45c6-95da-1d9640292767?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9f0be6a7-4451-4415-a870-eb1409decf42?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "dacaebc5-6003-45c6-95da-1d9640292767" + "9f0be6a7-4451-4415-a870-eb1409decf42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,19 +1137,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "6cd97cd7-3310-4d42-8358-ed834a0148b5" + "dc264e65-ed22-414a-aade-114340090f28" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141027Z:6cd97cd7-3310-4d42-8358-ed834a0148b5" + "JIOINDIACENTRAL:20220512T105102Z:dc264e65-ed22-414a-aade-114340090f28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:10:26 GMT" + "Thu, 12 May 2022 10:51:01 GMT" ], "Content-Length": [ "21" @@ -1222,19 +1162,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bcb42ed9-2eba-41a0-aed8-c9e0b2b6bebb?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmNiNDJlZDktMmViYS00MWEwLWFlZDgtYzllMGIyYjZiZWJiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1bfc4cb5-b4ea-4ca3-ad30-afafade14c71?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWJmYzRjYjUtYjRlYS00Y2EzLWFkMzAtYWZhZmFkZTE0YzcxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5804e9b1-8cb2-4e8c-ab03-b8713a6b09cd" + "919fc7cb-c7ae-4047-b5c2-87eec600b6f6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1254,22 +1194,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11980" ], "x-ms-request-id": [ - "7d7c6760-cf9b-4315-aa04-e341dc98f71a" + "95a65b65-4ae6-4fdd-bd0b-9b822cace396" ], "x-ms-correlation-request-id": [ - "7d7c6760-cf9b-4315-aa04-e341dc98f71a" + "95a65b65-4ae6-4fdd-bd0b-9b822cace396" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140540Z:7d7c6760-cf9b-4315-aa04-e341dc98f71a" + "JIOINDIACENTRAL:20220512T104540Z:95a65b65-4ae6-4fdd-bd0b-9b822cace396" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:40 GMT" + "Thu, 12 May 2022 10:45:40 GMT" ], "Content-Length": [ "22" @@ -1282,22 +1222,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32a1a212-d3eb-4d20-a043-338154232972" + "a18da3f4-212e-4d69-9ec6-656e566060eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1317,47 +1257,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-request-id": [ - "6636789f-dd72-485b-8ff2-1edb14ce5292" + "9354d24c-ee55-478e-bb09-636ebdb58dd0" ], "x-ms-correlation-request-id": [ - "6636789f-dd72-485b-8ff2-1edb14ce5292" + "9354d24c-ee55-478e-bb09-636ebdb58dd0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140541Z:6636789f-dd72-485b-8ff2-1edb14ce5292" + "JIOINDIACENTRAL:20220512T104542Z:9354d24c-ee55-478e-bb09-636ebdb58dd0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:41 GMT" + "Thu, 12 May 2022 10:45:42 GMT" ], "Content-Length": [ - "5597" + "6309" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 32a1a212-d3eb-4d20-a043-338154232972, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/fdb39586-e936-4269-9920-707de09a221c/partitions/51bf447d-e2b8-4406-92fd-61167d2f8d40/replicas/132912207359127117s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:05:41.3328440Z, RequestEndTime: 2022-03-08T14:05:41.3328440Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:28.7533047Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.106,\\\\\\\"memory\\\\\\\":636884900.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:38.7632565Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.207,\\\\\\\"memory\\\\\\\":638179144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0264,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:48.7731954Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.859,\\\\\\\"memory\\\\\\\":637652044.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32752,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:58.7831119Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.010,\\\\\\\"memory\\\\\\\":639492176.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:18.7829677Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.694,\\\\\\\"memory\\\\\\\":635378000.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:38.7928510Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.441,\\\\\\\"memory\\\\\\\":638246556.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0132,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:05:41.3328440Z; ResponseTime: 2022-03-08T14:05:41.3328440Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/c897d528-9633-429d-a831-44567c908025/services/fdb39586-e936-4269-9920-707de09a221c/partitions/51bf447d-e2b8-4406-92fd-61167d2f8d40/replicas/132912207359127117s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.838, ActivityId: 32a1a212-d3eb-4d20-a043-338154232972, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3328440Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.016},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3328600Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0037},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3328637Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1953},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3330590Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2378},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3342968Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1107},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3344075Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:05:41.3328440Z; ResponseTime: 2022-03-08T14:05:41.3328440Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/c897d528-9633-429d-a831-44567c908025/services/fdb39586-e936-4269-9920-707de09a221c/partitions/51bf447d-e2b8-4406-92fd-61167d2f8d40/replicas/132912207359127119s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.134, ActivityId: 32a1a212-d3eb-4d20-a043-338154232972, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3328440Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0039},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3328479Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3328492Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1417},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3329909Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5736},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3345645Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0274},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:05:41.3345919Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: a18da3f4-212e-4d69-9ec6-656e566060eb, Request URI: /apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/5931fa07-68cb-4807-a17f-0fe8ca9f2d71/partitions/4c43cb5c-64e2-464e-a7ab-ff83fbcf1490/replicas/132968196251903173s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:45:42.6271516Z, RequestEndTime: 2022-05-12T10:45:42.6271516Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:44:50.6980610Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.269,\\\\\\\"memory\\\\\\\":657977628.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0192,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:00.7078708Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.268,\\\\\\\"memory\\\\\\\":657818256.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0107,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:10.7177087Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.366,\\\\\\\"memory\\\\\\\":657825720.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0122,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:20.7275407Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.315,\\\\\\\"memory\\\\\\\":657652404.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0134,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:30.7373472Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.271,\\\\\\\"memory\\\\\\\":658064220.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0156,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:40.7471935Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.295,\\\\\\\"memory\\\\\\\":658039200.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.01,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:45:42.6271516Z; ResponseTime: 2022-05-12T10:45:42.6271516Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/5931fa07-68cb-4807-a17f-0fe8ca9f2d71/partitions/4c43cb5c-64e2-464e-a7ab-ff83fbcf1490/replicas/132968196251903173s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.724, ActivityId: a18da3f4-212e-4d69-9ec6-656e566060eb, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6271516Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0122},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6271638Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0094},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6271732Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1739},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6273471Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.114},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6284611Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1647},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6286258Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:45:38.0472368Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:45:38.0472368Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:45:38.0472368Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:45:42.6271516Z; ResponseTime: 2022-05-12T10:45:42.6271516Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/34773971-b607-4d12-a9ac-6694d64aa6dd/services/5931fa07-68cb-4807-a17f-0fe8ca9f2d71/partitions/4c43cb5c-64e2-464e-a7ab-ff83fbcf1490/replicas/132968196251903175s, LSN: 8, GlobalCommittedLsn: 8, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#8, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.775, ActivityId: a18da3f4-212e-4d69-9ec6-656e566060eb, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6271516Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6271542Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0007},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6271549Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1238},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6272787Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1442},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6284229Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1595},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:45:42.6285824Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:45:42.5873282Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:45:42.5873282Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:45:42.5873282Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32a1a212-d3eb-4d20-a043-338154232972" + "a18da3f4-212e-4d69-9ec6-656e566060eb" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1377,22 +1317,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11990" ], "x-ms-request-id": [ - "864022d5-1c69-487a-89c7-1bb2d87a8f10" + "d2e181fa-ec13-49e0-bed4-72576c54b712" ], "x-ms-correlation-request-id": [ - "864022d5-1c69-487a-89c7-1bb2d87a8f10" + "d2e181fa-ec13-49e0-bed4-72576c54b712" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140612Z:864022d5-1c69-487a-89c7-1bb2d87a8f10" + "JIOINDIACENTRAL:20220512T104615Z:d2e181fa-ec13-49e0-bed4-72576c54b712" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:06:12 GMT" + "Thu, 12 May 2022 10:46:15 GMT" ], "Content-Length": [ "1492" @@ -1401,26 +1341,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UB4rANdxeXk=\",\r\n \"_ts\": 1646748349,\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/\",\r\n \"_etag\": \"\\\"00008001-0000-0100-0000-622762bd0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"L8ZzAKEvB-M=\",\r\n \"_ts\": 1652352350,\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/\",\r\n \"_etag\": \"\\\"0000a709-0000-0100-0000-627ce55e0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4429dd31-271d-4617-9ae7-a5ca97e415f8" + "7f173557-b0f7-49e9-aaa4-5e9e16c2392a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1440,50 +1380,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11998" ], "x-ms-request-id": [ - "ea283f23-d069-476a-96e0-9642f061471a" + "da1694c0-c8a8-4c72-9271-3e62dcf59e17" ], "x-ms-correlation-request-id": [ - "ea283f23-d069-476a-96e0-9642f061471a" + "da1694c0-c8a8-4c72-9271-3e62dcf59e17" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140748Z:ea283f23-d069-476a-96e0-9642f061471a" + "CENTRALINDIA:20220512T104805Z:da1694c0-c8a8-4c72-9271-3e62dcf59e17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:47 GMT" + "Thu, 12 May 2022 10:48:05 GMT" ], "Content-Length": [ - "1492" + "1494" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UB4rANdxeXk=\",\r\n \"_ts\": 1646748349,\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/\",\r\n \"_etag\": \"\\\"00008001-0000-0100-0000-622762bd0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"L8ZzAKEvB-M=\",\r\n \"_ts\": 1652352350,\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/\",\r\n \"_etag\": \"\\\"0000a709-0000-0100-0000-627ce55e0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d3df162-bf8e-40a5-b542-fa1974fe1b4a" + "5b300226-0e24-4f42-822c-c3b5f7bc6b6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1503,47 +1443,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11983" ], "x-ms-request-id": [ - "acfe7757-5b67-4ac1-8fe6-7bbb3027cc9a" + "ffaa21b9-1005-405c-87e2-4134cf82225f" ], "x-ms-correlation-request-id": [ - "acfe7757-5b67-4ac1-8fe6-7bbb3027cc9a" + "ffaa21b9-1005-405c-87e2-4134cf82225f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140821Z:acfe7757-5b67-4ac1-8fe6-7bbb3027cc9a" + "JIOINDIACENTRAL:20220512T104845Z:ffaa21b9-1005-405c-87e2-4134cf82225f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:08:20 GMT" + "Thu, 12 May 2022 10:48:45 GMT" ], "Content-Length": [ - "1492" + "1494" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UB4rANdxeXk=\",\r\n \"_ts\": 1646748349,\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/\",\r\n \"_etag\": \"\\\"00008001-0000-0100-0000-622762bd0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"L8ZzAKEvB-M=\",\r\n \"_ts\": 1652352350,\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/\",\r\n \"_etag\": \"\\\"0000a709-0000-0100-0000-627ce55e0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d3df162-bf8e-40a5-b542-fa1974fe1b4a" + "5b300226-0e24-4f42-822c-c3b5f7bc6b6f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1563,22 +1503,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11981" ], "x-ms-request-id": [ - "35ffb1b8-cc12-4cd7-8543-f956599cc7e4" + "e2190864-0ddc-4b24-91d4-bad32bc462c2" ], "x-ms-correlation-request-id": [ - "35ffb1b8-cc12-4cd7-8543-f956599cc7e4" + "e2190864-0ddc-4b24-91d4-bad32bc462c2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140852Z:35ffb1b8-cc12-4cd7-8543-f956599cc7e4" + "JIOINDIACENTRAL:20220512T104918Z:e2190864-0ddc-4b24-91d4-bad32bc462c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:08:51 GMT" + "Thu, 12 May 2022 10:49:18 GMT" ], "Content-Length": [ "1494" @@ -1587,26 +1527,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UB4rANdxeXk=\",\r\n \"_ts\": 1646748349,\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/\",\r\n \"_etag\": \"\\\"00008001-0000-0100-0000-622762bd0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"L8ZzAKEvB-M=\",\r\n \"_ts\": 1652352350,\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/\",\r\n \"_etag\": \"\\\"0000a709-0000-0100-0000-627ce55e0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59269416-889f-42e6-8756-c56d341d0945" + "73a42360-df0e-46a5-8fb6-74e8b7b7c15b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1626,22 +1566,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11997" ], "x-ms-request-id": [ - "38f6ac70-8d59-4b42-9fb1-2c71053890ec" + "0c7739e5-b260-43c0-8f30-8421dbbd26d6" ], "x-ms-correlation-request-id": [ - "38f6ac70-8d59-4b42-9fb1-2c71053890ec" + "0c7739e5-b260-43c0-8f30-8421dbbd26d6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141058Z:38f6ac70-8d59-4b42-9fb1-2c71053890ec" + "CENTRALINDIA:20220512T105134Z:0c7739e5-b260-43c0-8f30-8421dbbd26d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:10:57 GMT" + "Thu, 12 May 2022 10:51:34 GMT" ], "Content-Length": [ "1494" @@ -1650,23 +1590,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UB4rANdxeXk=\",\r\n \"_ts\": 1646748349,\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/\",\r\n \"_etag\": \"\\\"00008001-0000-0100-0000-622762bd0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"L8ZzAKEvB-M=\",\r\n \"_ts\": 1652352350,\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/\",\r\n \"_etag\": \"\\\"0000a709-0000-0100-0000-627ce55e0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59269416-889f-42e6-8756-c56d341d0945" + "73a42360-df0e-46a5-8fb6-74e8b7b7c15b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1686,22 +1626,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11995" ], "x-ms-request-id": [ - "7864de2e-53c6-4d1c-9f9c-3abf01e36e8a" + "f6201dd8-ed33-455f-a444-8b2baf234cab" ], "x-ms-correlation-request-id": [ - "7864de2e-53c6-4d1c-9f9c-3abf01e36e8a" + "f6201dd8-ed33-455f-a444-8b2baf234cab" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141130Z:7864de2e-53c6-4d1c-9f9c-3abf01e36e8a" + "CENTRALINDIA:20220512T105208Z:f6201dd8-ed33-455f-a444-8b2baf234cab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:11:30 GMT" + "Thu, 12 May 2022 10:52:08 GMT" ], "Content-Length": [ "1494" @@ -1710,26 +1650,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UB4rANdxeXk=\",\r\n \"_ts\": 1646748349,\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/\",\r\n \"_etag\": \"\\\"00008001-0000-0100-0000-622762bd0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"L8ZzAKEvB-M=\",\r\n \"_ts\": 1652352350,\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/\",\r\n \"_etag\": \"\\\"0000a709-0000-0100-0000-627ce55e0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"Consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\",\r\n \"indexes\": [\r\n {\r\n \"dataType\": \"String\",\r\n \"precision\": -1,\r\n \"kind\": \"Hash\"\r\n },\r\n {\r\n \"dataType\": \"String\",\r\n \"precision\": -1,\r\n \"kind\": \"Hash\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"Ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"Descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"Descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"Ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "32a1a212-d3eb-4d20-a043-338154232972" + "a18da3f4-212e-4d69-9ec6-656e566060eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1746,13 +1686,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/52c9115d-df4d-4df7-8f66-db81033dc94a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/3c31b1a4-ec07-475b-91f3-b9d905da0b92?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/52c9115d-df4d-4df7-8f66-db81033dc94a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c31b1a4-ec07-475b-91f3-b9d905da0b92?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "52c9115d-df4d-4df7-8f66-db81033dc94a" + "3c31b1a4-ec07-475b-91f3-b9d905da0b92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,16 +1707,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "55e9a907-40a9-4efe-93cd-162c1bbae78f" + "cfdc7b8b-09bd-4856-906f-48eca935220c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140542Z:55e9a907-40a9-4efe-93cd-162c1bbae78f" + "JIOINDIACENTRAL:20220512T104543Z:cfdc7b8b-09bd-4856-906f-48eca935220c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:05:41 GMT" + "Thu, 12 May 2022 10:45:43 GMT" ], "Content-Length": [ "21" @@ -1789,22 +1729,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3d3df162-bf8e-40a5-b542-fa1974fe1b4a" + "5b300226-0e24-4f42-822c-c3b5f7bc6b6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1821,13 +1761,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/2bed61ea-d8cf-4577-8b6c-581963144d1b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/b7f3b00d-3bb2-4cb2-b7b4-2096b83a4ae4?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2bed61ea-d8cf-4577-8b6c-581963144d1b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b7f3b00d-3bb2-4cb2-b7b4-2096b83a4ae4?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "2bed61ea-d8cf-4577-8b6c-581963144d1b" + "b7f3b00d-3bb2-4cb2-b7b4-2096b83a4ae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1839,19 +1779,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "ad4453e9-f8b2-40ff-ab50-c25275d935ae" + "5cd487d9-f61f-4d4e-9357-7bbf1dce8fb1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140821Z:ad4453e9-f8b2-40ff-ab50-c25275d935ae" + "JIOINDIACENTRAL:20220512T104846Z:5cd487d9-f61f-4d4e-9357-7bbf1dce8fb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:08:21 GMT" + "Thu, 12 May 2022 10:48:46 GMT" ], "Content-Length": [ "21" @@ -1864,22 +1804,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"automatic\": true,\r\n \"indexingMode\": \"consistent\",\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59269416-889f-42e6-8756-c56d341d0945" + "73a42360-df0e-46a5-8fb6-74e8b7b7c15b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1896,13 +1836,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/9bc6b658-08d4-46b4-8ad4-a0ab87eb620b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/900a414d-b4c7-4960-874a-9675a9621b24?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9bc6b658-08d4-46b4-8ad4-a0ab87eb620b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/900a414d-b4c7-4960-874a-9675a9621b24?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "9bc6b658-08d4-46b4-8ad4-a0ab87eb620b" + "900a414d-b4c7-4960-874a-9675a9621b24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,19 +1854,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-correlation-request-id": [ - "f7ef8dd1-eb2b-4932-b814-fa188f7e2af4" + "e9c631e2-4fa4-4211-a783-ff631915e39d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141058Z:f7ef8dd1-eb2b-4932-b814-fa188f7e2af4" + "CENTRALINDIA:20220512T105137Z:e9c631e2-4fa4-4211-a783-ff631915e39d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:10:58 GMT" + "Thu, 12 May 2022 10:51:37 GMT" ], "Content-Length": [ "21" @@ -1939,19 +1879,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/52c9115d-df4d-4df7-8f66-db81033dc94a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTJjOTExNWQtZGY0ZC00ZGY3LThmNjYtZGI4MTAzM2RjOTRhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c31b1a4-ec07-475b-91f3-b9d905da0b92?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2MzMWIxYTQtZWMwNy00NzViLTkxZjMtYjlkOTA1ZGEwYjkyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32a1a212-d3eb-4d20-a043-338154232972" + "a18da3f4-212e-4d69-9ec6-656e566060eb" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1971,22 +1911,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "x-ms-request-id": [ - "bee4fc52-c729-44af-80ea-ad987bb61ec8" + "7b06a656-d145-465b-be58-2167b87926cc" ], "x-ms-correlation-request-id": [ - "bee4fc52-c729-44af-80ea-ad987bb61ec8" + "7b06a656-d145-465b-be58-2167b87926cc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140612Z:bee4fc52-c729-44af-80ea-ad987bb61ec8" + "JIOINDIACENTRAL:20220512T104614Z:7b06a656-d145-465b-be58-2167b87926cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:06:12 GMT" + "Thu, 12 May 2022 10:46:14 GMT" ], "Content-Length": [ "22" @@ -1999,22 +1939,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33702ec1-4de8-4f2c-8ff9-9d753d5301e1" + "f85b9f03-3cec-4a11-9264-fb6c095e98b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2034,47 +1974,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "24d3ca35-8a23-41ca-8a76-84691c0e65d0" + "c7e6f55f-3966-41f7-9cc8-9592b3974464" ], "x-ms-correlation-request-id": [ - "24d3ca35-8a23-41ca-8a76-84691c0e65d0" + "c7e6f55f-3966-41f7-9cc8-9592b3974464" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140613Z:24d3ca35-8a23-41ca-8a76-84691c0e65d0" + "CENTRALINDIA:20220512T104617Z:c7e6f55f-3966-41f7-9cc8-9592b3974464" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:06:12 GMT" + "Thu, 12 May 2022 10:46:17 GMT" ], "Content-Length": [ - "5634" + "6418" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 33702ec1-4de8-4f2c-8ff9-9d753d5301e1, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718449s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:06:12.8626332Z, RequestEndTime: 2022-03-08T14:06:12.8626332Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:48.7731954Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.859,\\\\\\\"memory\\\\\\\":637652044.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32752,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:04:58.7831119Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.010,\\\\\\\"memory\\\\\\\":639492176.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:18.7829677Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.694,\\\\\\\"memory\\\\\\\":635378000.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:38.7928510Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.441,\\\\\\\"memory\\\\\\\":638246556.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0132,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:48.8027877Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.257,\\\\\\\"memory\\\\\\\":638137040.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:58.8127177Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.244,\\\\\\\"memory\\\\\\\":637920360.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0167,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:06:12.8626332Z; ResponseTime: 2022-03-08T14:06:12.8626332Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.144:14300/apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718449s, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.768, ActivityId: 33702ec1-4de8-4f2c-8ff9-9d753d5301e1, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8626332Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0067},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8626399Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0024},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8626423Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1695},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8628118Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4467},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8642585Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1324},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8643909Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":545,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:06:12.8626332Z; ResponseTime: 2022-03-08T14:06:12.8626332Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.111:14000/apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718447s, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.775, ActivityId: 33702ec1-4de8-4f2c-8ff9-9d753d5301e1, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8626332Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0036},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8626368Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0015},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8626383Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1293},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8627676Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1681},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8639357Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1714},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:12.8641071Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":545,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: f85b9f03-3cec-4a11-9264-fb6c095e98b7, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218286s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:46:17.7388814Z, RequestEndTime: 2022-05-12T10:46:17.7488868Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:27.4290770Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.018,\\\\\\\"memory\\\\\\\":655306312.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0175,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:37.4390401Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.437,\\\\\\\"memory\\\\\\\":655340328.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0128,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:47.4489829Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.324,\\\\\\\"memory\\\\\\\":655336992.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0172,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:57.4689285Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.822,\\\\\\\"memory\\\\\\\":655482256.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0105,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:07.4788747Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.352,\\\\\\\"memory\\\\\\\":655143480.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0183,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:17.4888774Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.341,\\\\\\\"memory\\\\\\\":655136824.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0144,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:46:17.7388814Z; ResponseTime: 2022-05-12T10:46:17.7488868Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14358/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218286s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, BELatencyMs: 1.034, ActivityId: f85b9f03-3cec-4a11-9264-fb6c095e98b7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7388814Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.009},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7388904Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0105},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7389009Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1853},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7390862Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8275},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7409137Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2601},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7411738Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:46:14.1388802Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:46:14.1388802Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:46:14.1388802Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":541,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:46:17.7388814Z; ResponseTime: 2022-05-12T10:46:17.7488868Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14014/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218287s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, BELatencyMs: 1.139, ActivityId: f85b9f03-3cec-4a11-9264-fb6c095e98b7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7388814Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0035},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7388849Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7388904Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1469},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7390373Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.1737},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7412110Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.044},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:17.7412550Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:32:25.6939800Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:32:25.6939800Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:32:25.6939800Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":541,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33702ec1-4de8-4f2c-8ff9-9d753d5301e1" + "f85b9f03-3cec-4a11-9264-fb6c095e98b7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2094,22 +2034,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11997" ], "x-ms-request-id": [ - "7fa9b0f0-7bb1-4a42-ad79-189c9180db9d" + "ce19dec6-7709-4aba-b2d6-6ee71cf99b38" ], "x-ms-correlation-request-id": [ - "7fa9b0f0-7bb1-4a42-ad79-189c9180db9d" + "ce19dec6-7709-4aba-b2d6-6ee71cf99b38" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140644Z:7fa9b0f0-7bb1-4a42-ad79-189c9180db9d" + "CENTRALINDIA:20220512T104651Z:ce19dec6-7709-4aba-b2d6-6ee71cf99b38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:06:43 GMT" + "Thu, 12 May 2022 10:46:51 GMT" ], "Content-Length": [ "700" @@ -2118,26 +2058,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/sprocs/UB4rANdxeXkBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1b0116ae-0000-0100-0000-622762d90000\\\"\",\r\n \"_ts\": 1646748377\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/sprocs/L8ZzAKEvB-MBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1a00d1fc-0000-0100-0000-627ce5800000\\\"\",\r\n \"_ts\": 1652352384\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0d12218-ca2a-4686-a8a0-d2c463af4c65" + "957721a4-94f6-4f62-a335-04e0ae423cba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2157,22 +2097,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11999" ], "x-ms-request-id": [ - "69ecb842-4564-4375-9887-464ff76992a5" + "bf3ef9e2-c118-4019-96d6-91f61ec98b78" ], "x-ms-correlation-request-id": [ - "69ecb842-4564-4375-9887-464ff76992a5" + "bf3ef9e2-c118-4019-96d6-91f61ec98b78" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140748Z:69ecb842-4564-4375-9887-464ff76992a5" + "CENTRALINDIA:20220512T104807Z:bf3ef9e2-c118-4019-96d6-91f61ec98b78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:48 GMT" + "Thu, 12 May 2022 10:48:07 GMT" ], "Content-Length": [ "700" @@ -2181,26 +2121,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/sprocs/UB4rANdxeXkBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1b0116ae-0000-0100-0000-622762d90000\\\"\",\r\n \"_ts\": 1646748377\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/sprocs/L8ZzAKEvB-MBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1a00d1fc-0000-0100-0000-627ce5800000\\\"\",\r\n \"_ts\": 1652352384\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53771f16-9714-478e-afb3-ea310430d26d" + "9d8f7322-62fe-4842-bf04-1caa71c48d98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2220,22 +2160,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11983" ], "x-ms-request-id": [ - "d972c14f-1b9f-4ea1-87a8-fef2cad7767c" + "521d2515-0813-4dcb-9c14-14100fe87e94" ], "x-ms-correlation-request-id": [ - "d972c14f-1b9f-4ea1-87a8-fef2cad7767c" + "521d2515-0813-4dcb-9c14-14100fe87e94" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140852Z:d972c14f-1b9f-4ea1-87a8-fef2cad7767c" + "JIOINDIACENTRAL:20220512T104919Z:521d2515-0813-4dcb-9c14-14100fe87e94" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:08:52 GMT" + "Thu, 12 May 2022 10:49:19 GMT" ], "Content-Length": [ "700" @@ -2244,23 +2184,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/sprocs/UB4rANdxeXkBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1b0116ae-0000-0100-0000-622762d90000\\\"\",\r\n \"_ts\": 1646748377\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/sprocs/L8ZzAKEvB-MBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1a00d1fc-0000-0100-0000-627ce5800000\\\"\",\r\n \"_ts\": 1652352384\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53771f16-9714-478e-afb3-ea310430d26d" + "9d8f7322-62fe-4842-bf04-1caa71c48d98" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2280,22 +2220,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11981" ], "x-ms-request-id": [ - "df960ca0-cba7-4814-8c04-8ad51e45bd6b" + "460e51eb-4c85-46ea-8683-dccd716227f8" ], "x-ms-correlation-request-id": [ - "df960ca0-cba7-4814-8c04-8ad51e45bd6b" + "460e51eb-4c85-46ea-8683-dccd716227f8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140923Z:df960ca0-cba7-4814-8c04-8ad51e45bd6b" + "JIOINDIACENTRAL:20220512T104951Z:460e51eb-4c85-46ea-8683-dccd716227f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:09:23 GMT" + "Thu, 12 May 2022 10:49:50 GMT" ], "Content-Length": [ "613" @@ -2304,26 +2244,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/sprocs/UB4rANdxeXkBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1b0126b7-0000-0100-0000-622763790000\\\"\",\r\n \"_ts\": 1646748537\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/sprocs/L8ZzAKEvB-MBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1a00d5fc-0000-0100-0000-627ce6360000\\\"\",\r\n \"_ts\": 1652352566\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e92b71d-06e4-4c16-b4ad-02a4948985d3" + "f49a1089-24a0-4de4-a1b2-4c29094b5297" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2343,22 +2283,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11994" ], "x-ms-request-id": [ - "c338b454-30d9-4427-86c3-63022dd835bd" + "7c57de20-ad7e-44d1-a2c6-307683a7300c" ], "x-ms-correlation-request-id": [ - "c338b454-30d9-4427-86c3-63022dd835bd" + "7c57de20-ad7e-44d1-a2c6-307683a7300c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141130Z:c338b454-30d9-4427-86c3-63022dd835bd" + "CENTRALINDIA:20220512T105210Z:7c57de20-ad7e-44d1-a2c6-307683a7300c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:11:30 GMT" + "Thu, 12 May 2022 10:52:09 GMT" ], "Content-Length": [ "613" @@ -2367,23 +2307,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/sprocs/UB4rANdxeXkBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1b0126b7-0000-0100-0000-622763790000\\\"\",\r\n \"_ts\": 1646748537\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/sprocs/L8ZzAKEvB-MBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1a00d5fc-0000-0100-0000-627ce6360000\\\"\",\r\n \"_ts\": 1652352566\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e92b71d-06e4-4c16-b4ad-02a4948985d3" + "f49a1089-24a0-4de4-a1b2-4c29094b5297" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2403,22 +2343,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11992" ], "x-ms-request-id": [ - "2f0d8369-a900-4bf0-aa78-16d7a0467451" + "43c29f0b-a409-4a6e-936a-bc2bcae2e148" ], "x-ms-correlation-request-id": [ - "2f0d8369-a900-4bf0-aa78-16d7a0467451" + "43c29f0b-a409-4a6e-936a-bc2bcae2e148" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141201Z:2f0d8369-a900-4bf0-aa78-16d7a0467451" + "CENTRALINDIA:20220512T105243Z:43c29f0b-a409-4a6e-936a-bc2bcae2e148" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:12:01 GMT" + "Thu, 12 May 2022 10:52:42 GMT" ], "Content-Length": [ "700" @@ -2427,26 +2367,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/sprocs/UB4rANdxeXkBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1b0147c1-0000-0100-0000-622764180000\\\"\",\r\n \"_ts\": 1646748696\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/sprocs/L8ZzAKEvB-MBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1a00dbfc-0000-0100-0000-627ce6df0000\\\"\",\r\n \"_ts\": 1652352735\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "33702ec1-4de8-4f2c-8ff9-9d753d5301e1" + "f85b9f03-3cec-4a11-9264-fb6c095e98b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2463,13 +2403,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/d52273ed-e851-4df3-860e-3c430920d6b1?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/a589cd96-1946-47d1-8bfd-2872ca565558?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d52273ed-e851-4df3-860e-3c430920d6b1?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a589cd96-1946-47d1-8bfd-2872ca565558?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d52273ed-e851-4df3-860e-3c430920d6b1" + "a589cd96-1946-47d1-8bfd-2872ca565558" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2481,19 +2421,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "60b85ec9-2222-4b9c-a6a9-5c135df95e05" + "03b5c8ce-e50a-4adb-adc6-ad8d338801fe" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140613Z:60b85ec9-2222-4b9c-a6a9-5c135df95e05" + "CENTRALINDIA:20220512T104620Z:03b5c8ce-e50a-4adb-adc6-ad8d338801fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:06:13 GMT" + "Thu, 12 May 2022 10:46:20 GMT" ], "Content-Length": [ "21" @@ -2506,22 +2446,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var x = 10;}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "53771f16-9714-478e-afb3-ea310430d26d" + "9d8f7322-62fe-4842-bf04-1caa71c48d98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2538,13 +2478,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/59e175f5-8ffc-4561-bc98-af333feff815?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/6641e57c-c0f8-4d66-a9a7-ffa6ef0d44de?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/59e175f5-8ffc-4561-bc98-af333feff815?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6641e57c-c0f8-4d66-a9a7-ffa6ef0d44de?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "59e175f5-8ffc-4561-bc98-af333feff815" + "6641e57c-c0f8-4d66-a9a7-ffa6ef0d44de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2556,19 +2496,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "24cb6373-eed9-4ae4-afb8-76eae20362d3" + "a3f5b2b9-32bb-40d9-9e62-575360cc72a0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140853Z:24cb6373-eed9-4ae4-afb8-76eae20362d3" + "JIOINDIACENTRAL:20220512T104920Z:a3f5b2b9-32bb-40d9-9e62-575360cc72a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:08:52 GMT" + "Thu, 12 May 2022 10:49:20 GMT" ], "Content-Length": [ "21" @@ -2581,22 +2521,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e92b71d-06e4-4c16-b4ad-02a4948985d3" + "f49a1089-24a0-4de4-a1b2-4c29094b5297" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2613,13 +2553,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/626df01d-09a6-437a-8a37-a997b956e73d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/f4fc0276-2a01-4782-83da-045a15fe8c02?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/626df01d-09a6-437a-8a37-a997b956e73d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f4fc0276-2a01-4782-83da-045a15fe8c02?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "626df01d-09a6-437a-8a37-a997b956e73d" + "f4fc0276-2a01-4782-83da-045a15fe8c02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,19 +2571,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1198" ], "x-ms-correlation-request-id": [ - "0de42473-aeed-4459-9c48-383522bc3477" + "143ee2b8-b38e-4ba8-a9d7-fab93ea2d00c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141130Z:0de42473-aeed-4459-9c48-383522bc3477" + "CENTRALINDIA:20220512T105211Z:143ee2b8-b38e-4ba8-a9d7-fab93ea2d00c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:11:30 GMT" + "Thu, 12 May 2022 10:52:11 GMT" ], "Content-Length": [ "21" @@ -2656,19 +2596,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d52273ed-e851-4df3-860e-3c430920d6b1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDUyMjczZWQtZTg1MS00ZGYzLTg2MGUtM2M0MzA5MjBkNmIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a589cd96-1946-47d1-8bfd-2872ca565558?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTU4OWNkOTYtMTk0Ni00N2QxLThiZmQtMjg3MmNhNTY1NTU4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33702ec1-4de8-4f2c-8ff9-9d753d5301e1" + "f85b9f03-3cec-4a11-9264-fb6c095e98b7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2688,22 +2628,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-request-id": [ - "7d6dd4fb-e307-470c-a659-bbffc824f2e3" + "4e080e7b-b2fb-445c-9fba-8538c3c51d4e" ], "x-ms-correlation-request-id": [ - "7d6dd4fb-e307-470c-a659-bbffc824f2e3" + "4e080e7b-b2fb-445c-9fba-8538c3c51d4e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140643Z:7d6dd4fb-e307-470c-a659-bbffc824f2e3" + "CENTRALINDIA:20220512T104650Z:4e080e7b-b2fb-445c-9fba-8538c3c51d4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:06:43 GMT" + "Thu, 12 May 2022 10:46:50 GMT" ], "Content-Length": [ "22" @@ -2716,22 +2656,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d383f687-8b19-45ba-8c8f-dd7f04bdc6a6" + "207cf773-d210-4f80-87e9-636a080e7688" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2751,47 +2691,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "ec8dab77-80ca-4abd-bd9a-32d92fccd896" + "d0f83117-e4f7-470f-b4f1-1237a51b2c6e" ], "x-ms-correlation-request-id": [ - "ec8dab77-80ca-4abd-bd9a-32d92fccd896" + "d0f83117-e4f7-470f-b4f1-1237a51b2c6e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140644Z:ec8dab77-80ca-4abd-bd9a-32d92fccd896" + "CENTRALINDIA:20220512T104653Z:d0f83117-e4f7-470f-b4f1-1237a51b2c6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:06:44 GMT" + "Thu, 12 May 2022 10:46:53 GMT" ], "Content-Length": [ - "5626" + "6411" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: d383f687-8b19-45ba-8c8f-dd7f04bdc6a6, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718447s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:06:44.3623919Z, RequestEndTime: 2022-03-08T14:06:44.3623919Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:38.7928510Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.441,\\\\\\\"memory\\\\\\\":638246556.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0132,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:48.8027877Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.257,\\\\\\\"memory\\\\\\\":638137040.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0126,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:05:58.8127177Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.244,\\\\\\\"memory\\\\\\\":637920360.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0167,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:06:18.8225680Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.934,\\\\\\\"memory\\\\\\\":636627008.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0105,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:06:28.8424970Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.848,\\\\\\\"memory\\\\\\\":636202648.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0116,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:06:38.8524217Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.607,\\\\\\\"memory\\\\\\\":635862204.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0233,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:06:44.3623919Z; ResponseTime: 2022-03-08T14:06:44.3623919Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.111:14000/apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718447s, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.821, ActivityId: d383f687-8b19-45ba-8c8f-dd7f04bdc6a6, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3623919Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0086},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3624005Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0032},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3624037Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.292},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3626957Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3636984Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0496},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3637480Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":533,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:06:44.3623919Z; ResponseTime: 2022-03-08T14:06:44.3623919Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.138:14000/apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718448s, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.542, ActivityId: d383f687-8b19-45ba-8c8f-dd7f04bdc6a6, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3623919Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0038},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3623957Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3623976Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1697},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3625673Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8476},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3634149Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.06},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:06:44.3634749Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":533,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 207cf773-d210-4f80-87e9-636a080e7688, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218287s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:46:53.3647284Z, RequestEndTime: 2022-05-12T10:46:53.3947209Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:45:57.1855562Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.745,\\\\\\\"memory\\\\\\\":647198116.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0206,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:07.1953960Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.658,\\\\\\\"memory\\\\\\\":646836824.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0169,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:17.2052434Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.537,\\\\\\\"memory\\\\\\\":646772172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0278,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:27.2150642Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.471,\\\\\\\"memory\\\\\\\":646781480.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0215,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:37.2249222Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.724,\\\\\\\"memory\\\\\\\":646973224.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0271,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:47.2347950Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.272,\\\\\\\"memory\\\\\\\":646979164.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0205,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:46:53.3747208Z; ResponseTime: 2022-05-12T10:46:53.3947209Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14014/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218287s/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, BELatencyMs: 1.517, ActivityId: 207cf773-d210-4f80-87e9-636a080e7688, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3747208Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0069},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3747277Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0116},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3747393Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1589},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3748982Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.34},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3772382Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0708},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3773090Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:40:07.6439331Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:40:07.6439331Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:40:07.6539335Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":529,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:46:53.3747208Z; ResponseTime: 2022-05-12T10:46:53.3947209Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14323/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218288s/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.854, ActivityId: 207cf773-d210-4f80-87e9-636a080e7688, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3747208Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3747241Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 16.0134},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3907375Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.219},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3909565Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6958},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3926523Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0675},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:46:53.3927198Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"True\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:46:53.3847226Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:46:53.3847226Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:46:53.3847226Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":529,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d383f687-8b19-45ba-8c8f-dd7f04bdc6a6" + "207cf773-d210-4f80-87e9-636a080e7688" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2811,22 +2751,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11997" ], "x-ms-request-id": [ - "9ebe3fa4-2c15-4798-8fdd-7646572a0036" + "c2b66ba1-2315-4f4a-ad88-1362a56c680f" ], "x-ms-correlation-request-id": [ - "9ebe3fa4-2c15-4798-8fdd-7646572a0036" + "c2b66ba1-2315-4f4a-ad88-1362a56c680f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140716Z:9ebe3fa4-2c15-4798-8fdd-7646572a0036" + "CENTRALINDIA:20220512T104725Z:c2b66ba1-2315-4f4a-ad88-1362a56c680f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:15 GMT" + "Thu, 12 May 2022 10:47:25 GMT" ], "Content-Length": [ "670" @@ -2835,26 +2775,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/udfs/UB4rANdxeXkBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1b010bb0-0000-0100-0000-622762f90000\\\"\",\r\n \"_ts\": 1646748409\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/udfs/L8ZzAKEvB-MBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1a00d2fc-0000-0100-0000-627ce5a20000\\\"\",\r\n \"_ts\": 1652352418\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f31a2ddb-fc14-4ca8-aa12-1e3ae1341957" + "570668b5-f5a1-40fc-9b32-358e151bd7c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2874,22 +2814,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11997" ], "x-ms-request-id": [ - "970927ae-b550-4cd6-9fe8-b556570b34c5" + "f198cbfe-05d8-47cd-816b-685a21381a5d" ], "x-ms-correlation-request-id": [ - "970927ae-b550-4cd6-9fe8-b556570b34c5" + "f198cbfe-05d8-47cd-816b-685a21381a5d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140749Z:970927ae-b550-4cd6-9fe8-b556570b34c5" + "CENTRALINDIA:20220512T104809Z:f198cbfe-05d8-47cd-816b-685a21381a5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:48 GMT" + "Thu, 12 May 2022 10:48:08 GMT" ], "Content-Length": [ "670" @@ -2898,26 +2838,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/udfs/UB4rANdxeXkBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1b010bb0-0000-0100-0000-622762f90000\\\"\",\r\n \"_ts\": 1646748409\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/udfs/L8ZzAKEvB-MBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1a00d2fc-0000-0100-0000-627ce5a20000\\\"\",\r\n \"_ts\": 1652352418\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71f7ff6d-cfa0-4808-b14e-b5d81e142b41" + "71914b34-aab5-43cb-b92e-7d6f3b4120b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2937,22 +2877,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11980" ], "x-ms-request-id": [ - "72262846-4b3c-4510-bc78-0ca3e18b04bb" + "1ab43e80-cb0e-4d03-a6cf-39fda38f9451" ], "x-ms-correlation-request-id": [ - "72262846-4b3c-4510-bc78-0ca3e18b04bb" + "1ab43e80-cb0e-4d03-a6cf-39fda38f9451" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140955Z:72262846-4b3c-4510-bc78-0ca3e18b04bb" + "JIOINDIACENTRAL:20220512T105027Z:1ab43e80-cb0e-4d03-a6cf-39fda38f9451" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:09:55 GMT" + "Thu, 12 May 2022 10:50:26 GMT" ], "Content-Length": [ "670" @@ -2961,23 +2901,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/udfs/UB4rANdxeXkBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1b010bb0-0000-0100-0000-622762f90000\\\"\",\r\n \"_ts\": 1646748409\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/udfs/L8ZzAKEvB-MBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1a00d2fc-0000-0100-0000-627ce5a20000\\\"\",\r\n \"_ts\": 1652352418\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71f7ff6d-cfa0-4808-b14e-b5d81e142b41" + "71914b34-aab5-43cb-b92e-7d6f3b4120b2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2997,22 +2937,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11978" ], "x-ms-request-id": [ - "b9cb2a53-bb77-44d9-89cb-91872fd8ada0" + "3ebe7603-9761-4602-92c9-8ae5979e3766" ], "x-ms-correlation-request-id": [ - "b9cb2a53-bb77-44d9-89cb-91872fd8ada0" + "3ebe7603-9761-4602-92c9-8ae5979e3766" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141026Z:b9cb2a53-bb77-44d9-89cb-91872fd8ada0" + "JIOINDIACENTRAL:20220512T105059Z:3ebe7603-9761-4602-92c9-8ae5979e3766" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:10:26 GMT" + "Thu, 12 May 2022 10:50:59 GMT" ], "Content-Length": [ "583" @@ -3021,26 +2961,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/udfs/UB4rANdxeXkBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1b0164bb-0000-0100-0000-622763b80000\\\"\",\r\n \"_ts\": 1646748600\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/udfs/L8ZzAKEvB-MBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1a00d9fc-0000-0100-0000-627ce6780000\\\"\",\r\n \"_ts\": 1652352632\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d83431ef-0c94-4f6d-a01d-ec02d3cdd692" + "a9f8dcea-74f0-470c-877d-5902c6a70871" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3060,22 +3000,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11999" ], "x-ms-request-id": [ - "271fbf71-e0be-4fe0-af2f-b61ca86689ca" + "b9b18b22-ed94-40cd-a1c7-5f23a16af5d0" ], "x-ms-correlation-request-id": [ - "271fbf71-e0be-4fe0-af2f-b61ca86689ca" + "b9b18b22-ed94-40cd-a1c7-5f23a16af5d0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141233Z:271fbf71-e0be-4fe0-af2f-b61ca86689ca" + "CENTRALINDIA:20220512T105320Z:b9b18b22-ed94-40cd-a1c7-5f23a16af5d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:12:32 GMT" + "Thu, 12 May 2022 10:53:19 GMT" ], "Content-Length": [ "583" @@ -3084,23 +3024,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/udfs/UB4rANdxeXkBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1b0164bb-0000-0100-0000-622763b80000\\\"\",\r\n \"_ts\": 1646748600\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/udfs/L8ZzAKEvB-MBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1a00d9fc-0000-0100-0000-627ce6780000\\\"\",\r\n \"_ts\": 1652352632\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d83431ef-0c94-4f6d-a01d-ec02d3cdd692" + "a9f8dcea-74f0-470c-877d-5902c6a70871" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3120,22 +3060,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11997" ], "x-ms-request-id": [ - "ba599e07-26eb-4211-9314-f04c82ec18b0" + "4da576ff-4a6e-4309-9996-4ae61f8ccf54" ], "x-ms-correlation-request-id": [ - "ba599e07-26eb-4211-9314-f04c82ec18b0" + "4da576ff-4a6e-4309-9996-4ae61f8ccf54" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141304Z:ba599e07-26eb-4211-9314-f04c82ec18b0" + "CENTRALINDIA:20220512T105353Z:4da576ff-4a6e-4309-9996-4ae61f8ccf54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:03 GMT" + "Thu, 12 May 2022 10:53:53 GMT" ], "Content-Length": [ "670" @@ -3144,26 +3084,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/udfs/UB4rANdxeXkBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1b0109c5-0000-0100-0000-622764560000\\\"\",\r\n \"_ts\": 1646748758\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/udfs/L8ZzAKEvB-MBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1a00dffc-0000-0100-0000-627ce7270000\\\"\",\r\n \"_ts\": 1652352807\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d383f687-8b19-45ba-8c8f-dd7f04bdc6a6" + "207cf773-d210-4f80-87e9-636a080e7688" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3180,13 +3120,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/e51428ba-a17a-495c-8e44-afec1329b66e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/351c0e63-c241-4657-abc8-bc2051739c76?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e51428ba-a17a-495c-8e44-afec1329b66e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/351c0e63-c241-4657-abc8-bc2051739c76?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e51428ba-a17a-495c-8e44-afec1329b66e" + "351c0e63-c241-4657-abc8-bc2051739c76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3198,19 +3138,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "cccee041-ecbf-4bf7-a65e-eb0d326aad59" + "3930d113-c771-4350-8272-0d6e1fdf4dbb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140645Z:cccee041-ecbf-4bf7-a65e-eb0d326aad59" + "CENTRALINDIA:20220512T104654Z:3930d113-c771-4350-8272-0d6e1fdf4dbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:06:44 GMT" + "Thu, 12 May 2022 10:46:54 GMT" ], "Content-Length": [ "21" @@ -3223,22 +3163,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var x = 10;}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "71f7ff6d-cfa0-4808-b14e-b5d81e142b41" + "71914b34-aab5-43cb-b92e-7d6f3b4120b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3255,13 +3195,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/dd203b9b-91fa-4523-a65f-0cb32f51c184?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/3ff9d816-df35-453e-ba9b-f2297bf092f0?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dd203b9b-91fa-4523-a65f-0cb32f51c184?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ff9d816-df35-453e-ba9b-f2297bf092f0?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "dd203b9b-91fa-4523-a65f-0cb32f51c184" + "3ff9d816-df35-453e-ba9b-f2297bf092f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3273,19 +3213,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1193" ], "x-ms-correlation-request-id": [ - "64c1fa82-7c07-46a7-9323-65fc1483858f" + "2564143e-f727-4fce-8023-6046f1d0ed98" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140955Z:64c1fa82-7c07-46a7-9323-65fc1483858f" + "JIOINDIACENTRAL:20220512T105028Z:2564143e-f727-4fce-8023-6046f1d0ed98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:09:55 GMT" + "Thu, 12 May 2022 10:50:27 GMT" ], "Content-Length": [ "21" @@ -3298,22 +3238,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d83431ef-0c94-4f6d-a01d-ec02d3cdd692" + "a9f8dcea-74f0-470c-877d-5902c6a70871" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3330,13 +3270,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/a9c9b986-9c3f-420b-a63b-fefb4c9e069d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/a5d5470a-f502-44a3-aeb2-b4a3e1e46e55?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a9c9b986-9c3f-420b-a63b-fefb4c9e069d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a5d5470a-f502-44a3-aeb2-b4a3e1e46e55?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a9c9b986-9c3f-420b-a63b-fefb4c9e069d" + "a5d5470a-f502-44a3-aeb2-b4a3e1e46e55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3348,19 +3288,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1199" ], "x-ms-correlation-request-id": [ - "25a32d43-f907-4e85-b8e5-1b8082c94747" + "2fd9cce6-9030-4732-9124-ddceb856e6e0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141233Z:25a32d43-f907-4e85-b8e5-1b8082c94747" + "CENTRALINDIA:20220512T105322Z:2fd9cce6-9030-4732-9124-ddceb856e6e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:12:33 GMT" + "Thu, 12 May 2022 10:53:22 GMT" ], "Content-Length": [ "21" @@ -3373,19 +3313,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e51428ba-a17a-495c-8e44-afec1329b66e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTUxNDI4YmEtYTE3YS00OTVjLThlNDQtYWZlYzEzMjliNjZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/351c0e63-c241-4657-abc8-bc2051739c76?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzUxYzBlNjMtYzI0MS00NjU3LWFiYzgtYmMyMDUxNzM5Yzc2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d383f687-8b19-45ba-8c8f-dd7f04bdc6a6" + "207cf773-d210-4f80-87e9-636a080e7688" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3405,22 +3345,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "a705e0f8-20c2-477c-83f9-4aa217c31ccf" + "939e4c15-bc9e-422f-b968-d5bc4279ab23" ], "x-ms-correlation-request-id": [ - "a705e0f8-20c2-477c-83f9-4aa217c31ccf" + "939e4c15-bc9e-422f-b968-d5bc4279ab23" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140715Z:a705e0f8-20c2-477c-83f9-4aa217c31ccf" + "CENTRALINDIA:20220512T104725Z:939e4c15-bc9e-422f-b968-d5bc4279ab23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:14 GMT" + "Thu, 12 May 2022 10:47:24 GMT" ], "Content-Length": [ "22" @@ -3433,22 +3373,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "795bf2cb-3bbd-4a32-bf23-f491cc07311f" + "9be959a8-fdbf-4d50-8e0c-90888253f986" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3468,47 +3408,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-request-id": [ - "77e28edf-793f-4fb3-897a-388160bd4e41" + "fea7b70d-b056-40ff-ba23-d4ba0b66352d" ], "x-ms-correlation-request-id": [ - "77e28edf-793f-4fb3-897a-388160bd4e41" + "fea7b70d-b056-40ff-ba23-d4ba0b66352d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140716Z:77e28edf-793f-4fb3-897a-388160bd4e41" + "CENTRALINDIA:20220512T104727Z:fea7b70d-b056-40ff-ba23-d4ba0b66352d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:16 GMT" + "Thu, 12 May 2022 10:47:27 GMT" ], "Content-Length": [ - "5610" + "6397" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 795bf2cb-3bbd-4a32-bf23-f491cc07311f, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718448s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:07:16.6300078Z, RequestEndTime: 2022-03-08T14:07:16.6398926Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:06:21.6008268Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.211,\\\\\\\"memory\\\\\\\":636961580.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0128,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:06:31.6206555Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.103,\\\\\\\"memory\\\\\\\":636444392.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0183,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:06:41.6304486Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.201,\\\\\\\"memory\\\\\\\":635791360.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:06:51.6402724Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.927,\\\\\\\"memory\\\\\\\":638980600.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0172,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:07:01.6500982Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.564,\\\\\\\"memory\\\\\\\":638774708.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0104,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:07:11.6599687Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.675,\\\\\\\"memory\\\\\\\":638475080.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0202,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:07:16.6300078Z; ResponseTime: 2022-03-08T14:07:16.6398926Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.138:14000/apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718448s, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.488, ActivityId: 795bf2cb-3bbd-4a32-bf23-f491cc07311f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6300078Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0072},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6300150Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.01},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6300250Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2035},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6302285Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9227},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6311512Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1812},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6313324Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":531,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:07:16.6300078Z; ResponseTime: 2022-03-08T14:07:16.6398926Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.144:14300/apps/c897d528-9633-429d-a831-44567c908025/services/b080cc1c-b591-46ac-a2ae-3e5d0b5cac6c/partitions/5c8843f9-1ad9-4fd5-bbaa-75f285ec6cd2/replicas/132912219064718449s, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.68, ActivityId: 795bf2cb-3bbd-4a32-bf23-f491cc07311f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6300078Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0038},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6300116Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6300128Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1495},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6301623Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2058},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6313681Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1324},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:07:16.6315005Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":531,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 9be959a8-fdbf-4d50-8e0c-90888253f986, Request URI: /apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218286s/, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T10:47:27.5242381Z, RequestEndTime: 2022-05-12T10:47:27.5242381Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:37.2249222Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.724,\\\\\\\"memory\\\\\\\":646973224.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0271,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:47.2347950Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.272,\\\\\\\"memory\\\\\\\":646979164.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0205,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:46:57.2446697Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.437,\\\\\\\"memory\\\\\\\":646944616.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0213,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:47:07.2545214Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.525,\\\\\\\"memory\\\\\\\":646834396.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0254,\\\\\\\"availableThreads\\\\\\\":32760,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:47:17.2643656Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.234,\\\\\\\"memory\\\\\\\":646715200.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0149,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T10:47:27.2742479Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.356,\\\\\\\"memory\\\\\\\":646118916.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0254,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T10:47:27.5242381Z; ResponseTime: 2022-05-12T10:47:27.5242381Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14358/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218286s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.864, ActivityId: 9be959a8-fdbf-4d50-8e0c-90888253f986, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5242381Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0087},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5242468Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0122},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5242590Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1736},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5244326Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5198},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5259524Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0853},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5260377Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:47:25.7342560Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:47:25.7342560Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:47:25.7342560Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":535,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T10:47:27.5242381Z; ResponseTime: 2022-05-12T10:47:27.5242381Z; StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-eastus1-fd115.documents.azure.com:14323/apps/f20166e1-7e93-471d-b0ea-5b3634774aa4/services/26452967-6842-41f0-90e0-e78c8892fabb/partitions/84c88709-4ae2-440c-8ebc-f7f9f6a7c521/replicas/132968259072218288s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, BELatencyMs: 0.996, ActivityId: 9be959a8-fdbf-4d50-8e0c-90888253f986, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5242381Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0038},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5242419Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.005},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5242469Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1354},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5243823Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9686},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5263509Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0253},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T10:47:27.5263762Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T10:47:25.5042663Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T10:47:25.5042663Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T10:47:25.5042663Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":535,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":140,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "795bf2cb-3bbd-4a32-bf23-f491cc07311f" + "9be959a8-fdbf-4d50-8e0c-90888253f986" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3528,22 +3468,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11994" ], "x-ms-request-id": [ - "4d94227f-727a-4e42-9b8f-23fb56a80055" + "8dfe25a9-8002-43ea-8a70-06c15983d07c" ], "x-ms-correlation-request-id": [ - "4d94227f-727a-4e42-9b8f-23fb56a80055" + "8dfe25a9-8002-43ea-8a70-06c15983d07c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140747Z:4d94227f-727a-4e42-9b8f-23fb56a80055" + "CENTRALINDIA:20220512T104800Z:8dfe25a9-8002-43ea-8a70-06c15983d07c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:47 GMT" + "Thu, 12 May 2022 10:48:00 GMT" ], "Content-Length": [ "707" @@ -3552,26 +3492,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/triggers/UB4rANdxeXkBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1b01c0b1-0000-0100-0000-622763190000\\\"\",\r\n \"_ts\": 1646748441\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/triggers/L8ZzAKEvB-MBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1a00d3fc-0000-0100-0000-627ce5c60000\\\"\",\r\n \"_ts\": 1652352454\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b81dcf28-6c31-470a-9294-95f11db5be84" + "93b7ca67-3c35-4532-a1bb-4483afdf211a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3591,22 +3531,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11980" ], "x-ms-request-id": [ - "1af7137b-f092-4aab-9499-484fc08036e6" + "faaac4cc-f58c-43e0-909d-ff598449eec6" ], "x-ms-correlation-request-id": [ - "1af7137b-f092-4aab-9499-484fc08036e6" + "faaac4cc-f58c-43e0-909d-ff598449eec6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140749Z:1af7137b-f092-4aab-9499-484fc08036e6" + "JIOINDIACENTRAL:20220512T104810Z:faaac4cc-f58c-43e0-909d-ff598449eec6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:48 GMT" + "Thu, 12 May 2022 10:48:10 GMT" ], "Content-Length": [ "707" @@ -3615,26 +3555,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/triggers/UB4rANdxeXkBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1b01c0b1-0000-0100-0000-622763190000\\\"\",\r\n \"_ts\": 1646748441\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/triggers/L8ZzAKEvB-MBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1a00d3fc-0000-0100-0000-627ce5c60000\\\"\",\r\n \"_ts\": 1652352454\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ace86260-9919-43e9-a1ba-256319ca64d9" + "f1c2e7d4-9c97-4026-b0df-5e8138689e84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3654,22 +3594,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11989" ], "x-ms-request-id": [ - "afea0036-b4bc-4c0f-8028-592ff350aa28" + "8050b57c-1ffa-4ee4-9e91-38b9ddfb299f" ], "x-ms-correlation-request-id": [ - "afea0036-b4bc-4c0f-8028-592ff350aa28" + "8050b57c-1ffa-4ee4-9e91-38b9ddfb299f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140924Z:afea0036-b4bc-4c0f-8028-592ff350aa28" + "JIOINDIACENTRAL:20220512T104953Z:8050b57c-1ffa-4ee4-9e91-38b9ddfb299f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:09:23 GMT" + "Thu, 12 May 2022 10:49:53 GMT" ], "Content-Length": [ "707" @@ -3678,23 +3618,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/triggers/UB4rANdxeXkBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1b01c0b1-0000-0100-0000-622763190000\\\"\",\r\n \"_ts\": 1646748441\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/triggers/L8ZzAKEvB-MBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1a00d3fc-0000-0100-0000-627ce5c60000\\\"\",\r\n \"_ts\": 1652352454\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ace86260-9919-43e9-a1ba-256319ca64d9" + "f1c2e7d4-9c97-4026-b0df-5e8138689e84" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3714,22 +3654,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11987" ], "x-ms-request-id": [ - "af66779d-0892-4c39-86ac-7e3bc7de1b3c" + "83a3fba8-d463-4b43-bd44-70d87d8bcd40" ], "x-ms-correlation-request-id": [ - "af66779d-0892-4c39-86ac-7e3bc7de1b3c" + "83a3fba8-d463-4b43-bd44-70d87d8bcd40" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140955Z:af66779d-0892-4c39-86ac-7e3bc7de1b3c" + "JIOINDIACENTRAL:20220512T105025Z:83a3fba8-d463-4b43-bd44-70d87d8bcd40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:09:55 GMT" + "Thu, 12 May 2022 10:50:25 GMT" ], "Content-Length": [ "620" @@ -3738,26 +3678,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/triggers/UB4rANdxeXkBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1b014db9-0000-0100-0000-622763980000\\\"\",\r\n \"_ts\": 1646748568\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/triggers/L8ZzAKEvB-MBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1a00d7fc-0000-0100-0000-627ce6560000\\\"\",\r\n \"_ts\": 1652352598\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4ec2016-4f43-48be-95d2-b4ef177b4ac0" + "18599c9a-858f-4544-a8a1-d93e3cb4e253" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3777,22 +3717,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11998" ], "x-ms-request-id": [ - "c6661320-a7c4-475c-b3c1-1f42e4dacec6" + "51761584-60dd-4dc5-9fdd-7e03e6b975f7" ], "x-ms-correlation-request-id": [ - "c6661320-a7c4-475c-b3c1-1f42e4dacec6" + "51761584-60dd-4dc5-9fdd-7e03e6b975f7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141201Z:c6661320-a7c4-475c-b3c1-1f42e4dacec6" + "CENTRALINDIA:20220512T105245Z:51761584-60dd-4dc5-9fdd-7e03e6b975f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:12:01 GMT" + "Thu, 12 May 2022 10:52:44 GMT" ], "Content-Length": [ "620" @@ -3801,23 +3741,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/triggers/UB4rANdxeXkBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1b014db9-0000-0100-0000-622763980000\\\"\",\r\n \"_ts\": 1646748568\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/triggers/L8ZzAKEvB-MBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1a00d7fc-0000-0100-0000-627ce6560000\\\"\",\r\n \"_ts\": 1652352598\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4ec2016-4f43-48be-95d2-b4ef177b4ac0" + "18599c9a-858f-4544-a8a1-d93e3cb4e253" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3837,22 +3777,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11996" ], "x-ms-request-id": [ - "8ffa7cf1-e06e-4ecc-beba-3e7451e4f3a4" + "585a6577-8ba4-4e64-8dc9-8d231fa55e1c" ], "x-ms-correlation-request-id": [ - "8ffa7cf1-e06e-4ecc-beba-3e7451e4f3a4" + "585a6577-8ba4-4e64-8dc9-8d231fa55e1c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141232Z:8ffa7cf1-e06e-4ecc-beba-3e7451e4f3a4" + "CENTRALINDIA:20220512T105318Z:585a6577-8ba4-4e64-8dc9-8d231fa55e1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:12:32 GMT" + "Thu, 12 May 2022 10:53:17 GMT" ], "Content-Length": [ "707" @@ -3861,26 +3801,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/triggers/UB4rANdxeXkBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1b0136c3-0000-0100-0000-622764360000\\\"\",\r\n \"_ts\": 1646748726\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/triggers/L8ZzAKEvB-MBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1a00ddfc-0000-0100-0000-627ce7030000\\\"\",\r\n \"_ts\": 1652352771\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "795bf2cb-3bbd-4a32-bf23-f491cc07311f" + "9be959a8-fdbf-4d50-8e0c-90888253f986" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3897,13 +3837,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/0621d9be-3e64-4a64-ba22-439d632ca6fd?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/8fb139e1-42d7-4c81-96dc-cd8177f52b9a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0621d9be-3e64-4a64-ba22-439d632ca6fd?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8fb139e1-42d7-4c81-96dc-cd8177f52b9a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "0621d9be-3e64-4a64-ba22-439d632ca6fd" + "8fb139e1-42d7-4c81-96dc-cd8177f52b9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3915,19 +3855,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "01b8b95e-f5d1-49b5-ac8f-53d0dafbc738" + "199d77a5-f0c1-4751-8f23-0fe0a348100c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140717Z:01b8b95e-f5d1-49b5-ac8f-53d0dafbc738" + "CENTRALINDIA:20220512T104729Z:199d77a5-f0c1-4751-8f23-0fe0a348100c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:16 GMT" + "Thu, 12 May 2022 10:47:29 GMT" ], "Content-Length": [ "21" @@ -3940,22 +3880,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var x = 10;}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ace86260-9919-43e9-a1ba-256319ca64d9" + "f1c2e7d4-9c97-4026-b0df-5e8138689e84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3972,13 +3912,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/fa31e7a7-8c3f-4afc-a8ed-ea49ebae8384?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/66571a84-b1d2-47de-8c51-a32a90726f0d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fa31e7a7-8c3f-4afc-a8ed-ea49ebae8384?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66571a84-b1d2-47de-8c51-a32a90726f0d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "fa31e7a7-8c3f-4afc-a8ed-ea49ebae8384" + "66571a84-b1d2-47de-8c51-a32a90726f0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3990,19 +3930,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-correlation-request-id": [ - "624132c0-f542-434b-b3ff-aac12f1afbeb" + "726549be-a560-4fc8-83d3-78bfea5169c1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140924Z:624132c0-f542-434b-b3ff-aac12f1afbeb" + "JIOINDIACENTRAL:20220512T104954Z:726549be-a560-4fc8-83d3-78bfea5169c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:09:23 GMT" + "Thu, 12 May 2022 10:49:54 GMT" ], "Content-Length": [ "21" @@ -4015,22 +3955,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a4ec2016-4f43-48be-95d2-b4ef177b4ac0" + "18599c9a-858f-4544-a8a1-d93e3cb4e253" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4047,13 +3987,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/a4399430-1f0a-40d6-a877-5fe55b35e0e1?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/b07707a0-791b-41be-806e-9d074790bba5?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a4399430-1f0a-40d6-a877-5fe55b35e0e1?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b07707a0-791b-41be-806e-9d074790bba5?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a4399430-1f0a-40d6-a877-5fe55b35e0e1" + "b07707a0-791b-41be-806e-9d074790bba5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4065,19 +4005,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1199" ], "x-ms-correlation-request-id": [ - "9074e512-079d-4608-81e8-a110781bda4c" + "89229b11-489d-473d-a16e-841f409234a7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141202Z:9074e512-079d-4608-81e8-a110781bda4c" + "CENTRALINDIA:20220512T105246Z:89229b11-489d-473d-a16e-841f409234a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:12:01 GMT" + "Thu, 12 May 2022 10:52:46 GMT" ], "Content-Length": [ "21" @@ -4090,19 +4030,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0621d9be-3e64-4a64-ba22-439d632ca6fd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDYyMWQ5YmUtM2U2NC00YTY0LWJhMjItNDM5ZDYzMmNhNmZkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8fb139e1-42d7-4c81-96dc-cd8177f52b9a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGZiMTM5ZTEtNDJkNy00YzgxLTk2ZGMtY2Q4MTc3ZjUyYjlhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "795bf2cb-3bbd-4a32-bf23-f491cc07311f" + "9be959a8-fdbf-4d50-8e0c-90888253f986" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4122,22 +4062,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11995" ], "x-ms-request-id": [ - "7953aaa3-235c-437d-a103-425c40259c88" + "2777af43-9e7d-475d-95a6-65d92dd05e67" ], "x-ms-correlation-request-id": [ - "7953aaa3-235c-437d-a103-425c40259c88" + "2777af43-9e7d-475d-95a6-65d92dd05e67" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140747Z:7953aaa3-235c-437d-a103-425c40259c88" + "CENTRALINDIA:20220512T104800Z:2777af43-9e7d-475d-95a6-65d92dd05e67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:07:46 GMT" + "Thu, 12 May 2022 10:48:00 GMT" ], "Content-Length": [ "22" @@ -4150,19 +4090,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b17d12cf-189f-459c-9161-d0837e2d0bb7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjE3ZDEyY2YtMTg5Zi00NTljLTkxNjEtZDA4MzdlMmQwYmI3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66a3c711-0565-4040-ae25-449ffab0ca22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjZhM2M3MTEtMDU2NS00MDQwLWFlMjUtNDQ5ZmZhYjBjYTIyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8088d873-3026-4689-b2b9-b666811779c2" + "a1d8c592-e939-4700-b846-b09aa9b9a3e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4182,22 +4122,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11978" ], "x-ms-request-id": [ - "eaeb99d5-20a7-478e-8752-40599d2570d0" + "cc47a722-99b8-4fa0-b3f5-fac54b2c59e4" ], "x-ms-correlation-request-id": [ - "eaeb99d5-20a7-478e-8752-40599d2570d0" + "cc47a722-99b8-4fa0-b3f5-fac54b2c59e4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140820Z:eaeb99d5-20a7-478e-8752-40599d2570d0" + "JIOINDIACENTRAL:20220512T104843Z:cc47a722-99b8-4fa0-b3f5-fac54b2c59e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:08:19 GMT" + "Thu, 12 May 2022 10:48:43 GMT" ], "Content-Length": [ "22" @@ -4210,19 +4150,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2bed61ea-d8cf-4577-8b6c-581963144d1b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmJlZDYxZWEtZDhjZi00NTc3LThiNmMtNTgxOTYzMTQ0ZDFiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b7f3b00d-3bb2-4cb2-b7b4-2096b83a4ae4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjdmM2IwMGQtM2JiMi00Y2IyLWI3YjQtMjA5NmI4M2E0YWU0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d3df162-bf8e-40a5-b542-fa1974fe1b4a" + "5b300226-0e24-4f42-822c-c3b5f7bc6b6f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4242,22 +4182,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11982" ], "x-ms-request-id": [ - "fc1f71a1-ae8a-40cd-82ed-022f0fcd11b4" + "425c32f0-d067-401e-837f-1736051546b1" ], "x-ms-correlation-request-id": [ - "fc1f71a1-ae8a-40cd-82ed-022f0fcd11b4" + "425c32f0-d067-401e-837f-1736051546b1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140852Z:fc1f71a1-ae8a-40cd-82ed-022f0fcd11b4" + "JIOINDIACENTRAL:20220512T104917Z:425c32f0-d067-401e-837f-1736051546b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:08:51 GMT" + "Thu, 12 May 2022 10:49:17 GMT" ], "Content-Length": [ "22" @@ -4270,19 +4210,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/59e175f5-8ffc-4561-bc98-af333feff815?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTllMTc1ZjUtOGZmYy00NTYxLWJjOTgtYWYzMzNmZWZmODE1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6641e57c-c0f8-4d66-a9a7-ffa6ef0d44de?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjY0MWU1N2MtYzBmOC00ZDY2LWE5YTctZmZhNmVmMGQ0NGRlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53771f16-9714-478e-afb3-ea310430d26d" + "9d8f7322-62fe-4842-bf04-1caa71c48d98" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4302,22 +4242,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11982" ], "x-ms-request-id": [ - "d88de607-b589-4b41-a717-5e9ead4081ec" + "a2af7645-e824-4a8c-8062-b00fc29de941" ], "x-ms-correlation-request-id": [ - "d88de607-b589-4b41-a717-5e9ead4081ec" + "a2af7645-e824-4a8c-8062-b00fc29de941" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140923Z:d88de607-b589-4b41-a717-5e9ead4081ec" + "JIOINDIACENTRAL:20220512T104951Z:a2af7645-e824-4a8c-8062-b00fc29de941" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:09:22 GMT" + "Thu, 12 May 2022 10:49:50 GMT" ], "Content-Length": [ "22" @@ -4330,19 +4270,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fa31e7a7-8c3f-4afc-a8ed-ea49ebae8384?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmEzMWU3YTctOGMzZi00YWZjLWE4ZWQtZWE0OWViYWU4Mzg0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66571a84-b1d2-47de-8c51-a32a90726f0d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjY1NzFhODQtYjFkMi00N2RlLThjNTEtYTMyYTkwNzI2ZjBkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ace86260-9919-43e9-a1ba-256319ca64d9" + "f1c2e7d4-9c97-4026-b0df-5e8138689e84" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4362,22 +4302,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11988" ], "x-ms-request-id": [ - "01167f34-2f6f-4baa-bcc8-f09927b54676" + "b684efcd-9d69-4874-a1c5-1f40595672fd" ], "x-ms-correlation-request-id": [ - "01167f34-2f6f-4baa-bcc8-f09927b54676" + "b684efcd-9d69-4874-a1c5-1f40595672fd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T140954Z:01167f34-2f6f-4baa-bcc8-f09927b54676" + "JIOINDIACENTRAL:20220512T105025Z:b684efcd-9d69-4874-a1c5-1f40595672fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:09:53 GMT" + "Thu, 12 May 2022 10:50:24 GMT" ], "Content-Length": [ "22" @@ -4390,19 +4330,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dd203b9b-91fa-4523-a65f-0cb32f51c184?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGQyMDNiOWItOTFmYS00NTIzLWE2NWYtMGNiMzJmNTFjMTg0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ff9d816-df35-453e-ba9b-f2297bf092f0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2ZmOWQ4MTYtZGYzNS00NTNlLWJhOWItZjIyOTdiZjA5MmYwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71f7ff6d-cfa0-4808-b14e-b5d81e142b41" + "71914b34-aab5-43cb-b92e-7d6f3b4120b2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4422,22 +4362,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11979" ], "x-ms-request-id": [ - "d75c0df2-fa11-450e-b561-b276931d6e1e" + "6ad13842-2179-42c5-ac37-92d9c6185722" ], "x-ms-correlation-request-id": [ - "d75c0df2-fa11-450e-b561-b276931d6e1e" + "6ad13842-2179-42c5-ac37-92d9c6185722" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141026Z:d75c0df2-fa11-450e-b561-b276931d6e1e" + "JIOINDIACENTRAL:20220512T105058Z:6ad13842-2179-42c5-ac37-92d9c6185722" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:10:25 GMT" + "Thu, 12 May 2022 10:50:58 GMT" ], "Content-Length": [ "22" @@ -4450,19 +4390,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dacaebc5-6003-45c6-95da-1d9640292767?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGFjYWViYzUtNjAwMy00NWM2LTk1ZGEtMWQ5NjQwMjkyNzY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9f0be6a7-4451-4415-a870-eb1409decf42?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWYwYmU2YTctNDQ1MS00NDE1LWE4NzAtZWIxNDA5ZGVjZjQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30bb1e93-7d7f-450d-8bc1-c5093dd62179" + "cc3410c9-1611-4c14-8c14-66ed4b517d44" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4482,22 +4422,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11985" ], "x-ms-request-id": [ - "07003b19-e96f-4623-b14d-286e95cf2759" + "70a97961-be2f-49f0-a1a8-0dd73f9a9db4" ], "x-ms-correlation-request-id": [ - "07003b19-e96f-4623-b14d-286e95cf2759" + "70a97961-be2f-49f0-a1a8-0dd73f9a9db4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141057Z:07003b19-e96f-4623-b14d-286e95cf2759" + "JIOINDIACENTRAL:20220512T105132Z:70a97961-be2f-49f0-a1a8-0dd73f9a9db4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:10:57 GMT" + "Thu, 12 May 2022 10:51:31 GMT" ], "Content-Length": [ "22" @@ -4510,19 +4450,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9bc6b658-08d4-46b4-8ad4-a0ab87eb620b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWJjNmI2NTgtMDhkNC00NmI0LThhZDQtYTBhYjg3ZWI2MjBiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/900a414d-b4c7-4960-874a-9675a9621b24?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTAwYTQxNGQtYjRjNy00OTYwLTg3NGEtOTY3NWE5NjIxYjI0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59269416-889f-42e6-8756-c56d341d0945" + "73a42360-df0e-46a5-8fb6-74e8b7b7c15b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4542,22 +4482,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11996" ], "x-ms-request-id": [ - "dcbd730c-c5ba-48c8-8adb-bb0f9fb32514" + "b59846db-7e9c-488f-b64f-2b71baa72f2f" ], "x-ms-correlation-request-id": [ - "dcbd730c-c5ba-48c8-8adb-bb0f9fb32514" + "b59846db-7e9c-488f-b64f-2b71baa72f2f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141128Z:dcbd730c-c5ba-48c8-8adb-bb0f9fb32514" + "CENTRALINDIA:20220512T105207Z:b59846db-7e9c-488f-b64f-2b71baa72f2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:11:28 GMT" + "Thu, 12 May 2022 10:52:07 GMT" ], "Content-Length": [ "22" @@ -4570,19 +4510,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/626df01d-09a6-437a-8a37-a997b956e73d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjI2ZGYwMWQtMDlhNi00MzdhLThhMzctYTk5N2I5NTZlNzNkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f4fc0276-2a01-4782-83da-045a15fe8c02?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjRmYzAyNzYtMmEwMS00NzgyLTgzZGEtMDQ1YTE1ZmU4YzAyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e92b71d-06e4-4c16-b4ad-02a4948985d3" + "f49a1089-24a0-4de4-a1b2-4c29094b5297" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4602,22 +4542,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11993" ], "x-ms-request-id": [ - "3021a271-7e99-43c1-a08c-c94bea677ee3" + "1b79b3f2-b608-48b7-b212-d55a762b20f5" ], "x-ms-correlation-request-id": [ - "3021a271-7e99-43c1-a08c-c94bea677ee3" + "1b79b3f2-b608-48b7-b212-d55a762b20f5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141201Z:3021a271-7e99-43c1-a08c-c94bea677ee3" + "CENTRALINDIA:20220512T105241Z:1b79b3f2-b608-48b7-b212-d55a762b20f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:12:00 GMT" + "Thu, 12 May 2022 10:52:41 GMT" ], "Content-Length": [ "22" @@ -4630,19 +4570,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a4399430-1f0a-40d6-a877-5fe55b35e0e1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTQzOTk0MzAtMWYwYS00MGQ2LWE4NzctNWZlNTViMzVlMGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b07707a0-791b-41be-806e-9d074790bba5?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjA3NzA3YTAtNzkxYi00MWJlLTgwNmUtOWQwNzQ3OTBiYmE1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4ec2016-4f43-48be-95d2-b4ef177b4ac0" + "18599c9a-858f-4544-a8a1-d93e3cb4e253" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4662,22 +4602,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11997" ], "x-ms-request-id": [ - "57d3e618-4b7c-4ed7-a8dc-dc1ad517ac0a" + "cee4ab65-631f-4f2a-980e-69cc53c39396" ], "x-ms-correlation-request-id": [ - "57d3e618-4b7c-4ed7-a8dc-dc1ad517ac0a" + "cee4ab65-631f-4f2a-980e-69cc53c39396" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141232Z:57d3e618-4b7c-4ed7-a8dc-dc1ad517ac0a" + "CENTRALINDIA:20220512T105317Z:cee4ab65-631f-4f2a-980e-69cc53c39396" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:12:32 GMT" + "Thu, 12 May 2022 10:53:17 GMT" ], "Content-Length": [ "22" @@ -4690,19 +4630,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a9c9b986-9c3f-420b-a63b-fefb4c9e069d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTljOWI5ODYtOWMzZi00MjBiLWE2M2ItZmVmYjRjOWUwNjlkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a5d5470a-f502-44a3-aeb2-b4a3e1e46e55?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTVkNTQ3MGEtZjUwMi00NGEzLWFlYjItYjRhM2UxZTQ2ZTU1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d83431ef-0c94-4f6d-a01d-ec02d3cdd692" + "a9f8dcea-74f0-470c-877d-5902c6a70871" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4722,22 +4662,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11998" ], "x-ms-request-id": [ - "1246b1fb-40d3-45d6-81e6-28ea3eb3c376" + "faa910d0-94ef-4a25-9b51-7673de259b43" ], "x-ms-correlation-request-id": [ - "1246b1fb-40d3-45d6-81e6-28ea3eb3c376" + "faa910d0-94ef-4a25-9b51-7673de259b43" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141303Z:1246b1fb-40d3-45d6-81e6-28ea3eb3c376" + "CENTRALINDIA:20220512T105353Z:faa910d0-94ef-4a25-9b51-7673de259b43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:03 GMT" + "Thu, 12 May 2022 10:53:53 GMT" ], "Content-Length": [ "22" @@ -4750,22 +4690,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75d74bcd-fbc4-4872-ab63-6c246b934608" + "42567db9-aec9-4962-9325-0fd18d5424ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4785,22 +4725,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11996" ], "x-ms-request-id": [ - "144ae29d-5be5-4990-888e-281c1e3b9e0d" + "b31269ce-b828-4e64-b0a7-3ff53315b76b" ], "x-ms-correlation-request-id": [ - "144ae29d-5be5-4990-888e-281c1e3b9e0d" + "b31269ce-b828-4e64-b0a7-3ff53315b76b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141304Z:144ae29d-5be5-4990-888e-281c1e3b9e0d" + "CENTRALINDIA:20220512T105354Z:b31269ce-b828-4e64-b0a7-3ff53315b76b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:03 GMT" + "Thu, 12 May 2022 10:53:54 GMT" ], "Content-Length": [ "1391" @@ -4809,26 +4749,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"UB4rANdxeXk=\",\r\n \"_ts\": 1646748349,\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/\",\r\n \"_etag\": \"\\\"00008001-0000-0100-0000-622762bd0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"L8ZzAKEvB-M=\",\r\n \"_ts\": 1652352350,\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/\",\r\n \"_etag\": \"\\\"0000a709-0000-0100-0000-627ce55e0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd0090b2-c2b4-4f2d-acaa-95dbe9f2b09e" + "e7169284-83e4-4e9b-af95-c2ba7bc5df34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4848,22 +4788,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11996" ], "x-ms-request-id": [ - "48451b18-6e5b-4277-b9c8-be0d96c40bfd" + "1c9fccab-8145-4e15-9eea-b96f610d8c7e" ], "x-ms-correlation-request-id": [ - "48451b18-6e5b-4277-b9c8-be0d96c40bfd" + "1c9fccab-8145-4e15-9eea-b96f610d8c7e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141304Z:48451b18-6e5b-4277-b9c8-be0d96c40bfd" + "CENTRALINDIA:20220512T105355Z:1c9fccab-8145-4e15-9eea-b96f610d8c7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:04 GMT" + "Thu, 12 May 2022 10:53:54 GMT" ], "Content-Length": [ "457" @@ -4872,26 +4812,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"UB4rAA==\",\r\n \"_self\": \"dbs/UB4rAA==/\",\r\n \"_etag\": \"\\\"00007e01-0000-0100-0000-6227629a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646748314\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L8ZzAA==\",\r\n \"_self\": \"dbs/L8ZzAA==/\",\r\n \"_etag\": \"\\\"0000a509-0000-0100-0000-627ce53a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652352314\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba66a5e1-5762-4575-9238-68ee49bc8c1b" + "a66086d5-e435-4534-bbcb-09a87c2b1bc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4911,22 +4851,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11988" ], "x-ms-request-id": [ - "d717ea3b-1356-487c-8e5d-d48b0ee5d8fb" + "7f421d0f-3c4a-417f-b883-bb7429bc06a9" ], "x-ms-correlation-request-id": [ - "d717ea3b-1356-487c-8e5d-d48b0ee5d8fb" + "7f421d0f-3c4a-417f-b883-bb7429bc06a9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141305Z:d717ea3b-1356-487c-8e5d-d48b0ee5d8fb" + "CENTRALINDIA:20220512T105356Z:7f421d0f-3c4a-417f-b883-bb7429bc06a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:04 GMT" + "Thu, 12 May 2022 10:53:56 GMT" ], "Content-Length": [ "712" @@ -4935,26 +4875,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/sprocs/UB4rANdxeXkBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1b0147c1-0000-0100-0000-622764180000\\\"\",\r\n \"_ts\": 1646748696\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\",\r\n \"name\": \"storedProcedure\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"storedProcedure\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/sprocs/L8ZzAKEvB-MBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"1a00dbfc-0000-0100-0000-627ce6df0000\\\"\",\r\n \"_ts\": 1652352735\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58dd2ecc-d2d7-4199-99b8-4845bb764622" + "f3abfd81-48d3-4d60-831e-33372648aa99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4974,22 +4914,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11999" ], "x-ms-request-id": [ - "bfe908a2-c8eb-46db-9d5e-ca3b25115a48" + "e2c9de6c-90c1-4596-b392-9cf8495dff46" ], "x-ms-correlation-request-id": [ - "bfe908a2-c8eb-46db-9d5e-ca3b25115a48" + "e2c9de6c-90c1-4596-b392-9cf8495dff46" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141305Z:bfe908a2-c8eb-46db-9d5e-ca3b25115a48" + "CENTRALINDIA:20220512T105358Z:e2c9de6c-90c1-4596-b392-9cf8495dff46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:04 GMT" + "Thu, 12 May 2022 10:53:57 GMT" ], "Content-Length": [ "682" @@ -4998,26 +4938,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/udfs/UB4rANdxeXkBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1b0109c5-0000-0100-0000-622764560000\\\"\",\r\n \"_ts\": 1646748758\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\",\r\n \"name\": \"udf\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"udf\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/udfs/L8ZzAKEvB-MBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"1a00dffc-0000-0100-0000-627ce7270000\\\"\",\r\n \"_ts\": 1652352807\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9e67cea-a391-41ec-8bff-9f76e4cb8122" + "2dd8a55a-fb80-46a5-b359-efbd0b4f97e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5037,22 +4977,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11995" ], "x-ms-request-id": [ - "0224c357-7b7f-4bd2-9bca-8e1cd7c76c98" + "d8024b71-219a-439c-aec0-422b0f886af6" ], "x-ms-correlation-request-id": [ - "0224c357-7b7f-4bd2-9bca-8e1cd7c76c98" + "d8024b71-219a-439c-aec0-422b0f886af6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141305Z:0224c357-7b7f-4bd2-9bca-8e1cd7c76c98" + "CENTRALINDIA:20220512T105358Z:d8024b71-219a-439c-aec0-422b0f886af6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:05 GMT" + "Thu, 12 May 2022 10:53:58 GMT" ], "Content-Length": [ "719" @@ -5061,26 +5001,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"UB4rANdxeXkBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/UB4rAA==/colls/UB4rANdxeXk=/triggers/UB4rANdxeXkBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1b0136c3-0000-0100-0000-622764360000\\\"\",\r\n \"_ts\": 1646748726\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\",\r\n \"name\": \"trigger\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"trigger\",\r\n \"body\": \"function () { var context = getContext(); var response = context.getResponse();response.setBody('Hello, World');}\",\r\n \"triggerType\": \"Pre\",\r\n \"triggerOperation\": \"All\",\r\n \"_rid\": \"L8ZzAKEvB-MBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/L8ZzAA==/colls/L8ZzAKEvB-M=/triggers/L8ZzAKEvB-MBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"1a00ddfc-0000-0100-0000-627ce7030000\\\"\",\r\n \"_ts\": 1652352771\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5522da24-b9dc-49e2-93fe-d48dae868d56" + "2042cc4c-ef00-4109-bddd-0740f54a281a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5091,13 +5031,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/832cf6d6-8176-421a-ad29-6dbdc26226d5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/7cef5574-c45d-4976-b29f-dbc769fac957?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/832cf6d6-8176-421a-ad29-6dbdc26226d5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7cef5574-c45d-4976-b29f-dbc769fac957?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "832cf6d6-8176-421a-ad29-6dbdc26226d5" + "7cef5574-c45d-4976-b29f-dbc769fac957" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5112,16 +5052,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "6f3745c2-dc18-4fe4-88a7-9da45c3dbf3b" + "9b17aef8-04ca-40b2-aa51-f2498db9cd46" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141306Z:6f3745c2-dc18-4fe4-88a7-9da45c3dbf3b" + "CENTRALINDIA:20220512T105401Z:9b17aef8-04ca-40b2-aa51-f2498db9cd46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:05 GMT" + "Thu, 12 May 2022 10:54:01 GMT" ], "Content-Length": [ "21" @@ -5134,19 +5074,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/832cf6d6-8176-421a-ad29-6dbdc26226d5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODMyY2Y2ZDYtODE3Ni00MjFhLWFkMjktNmRiZGMyNjIyNmQ1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7cef5574-c45d-4976-b29f-dbc769fac957?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2NlZjU1NzQtYzQ1ZC00OTc2LWIyOWYtZGJjNzY5ZmFjOTU3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5522da24-b9dc-49e2-93fe-d48dae868d56" + "2042cc4c-ef00-4109-bddd-0740f54a281a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5166,22 +5106,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11999" ], "x-ms-request-id": [ - "00897101-a69e-4118-bd45-7764bba73a14" + "64c38789-d0bb-4813-b6da-cc5689a735cb" ], "x-ms-correlation-request-id": [ - "00897101-a69e-4118-bd45-7764bba73a14" + "64c38789-d0bb-4813-b6da-cc5689a735cb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141336Z:00897101-a69e-4118-bd45-7764bba73a14" + "CENTRALINDIA:20220512T105432Z:64c38789-d0bb-4813-b6da-cc5689a735cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:35 GMT" + "Thu, 12 May 2022 10:54:32 GMT" ], "Content-Length": [ "22" @@ -5194,19 +5134,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/832cf6d6-8176-421a-ad29-6dbdc26226d5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmUvb3BlcmF0aW9uUmVzdWx0cy84MzJjZjZkNi04MTc2LTQyMWEtYWQyOS02ZGJkYzI2MjI2ZDU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/7cef5574-c45d-4976-b29f-dbc769fac957?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvc3RvcmVkUHJvY2VkdXJlcy9zdG9yZWRQcm9jZWR1cmUvb3BlcmF0aW9uUmVzdWx0cy83Y2VmNTU3NC1jNDVkLTQ5NzYtYjI5Zi1kYmM3NjlmYWM5NTc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5522da24-b9dc-49e2-93fe-d48dae868d56" + "2042cc4c-ef00-4109-bddd-0740f54a281a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5226,22 +5166,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11998" ], "x-ms-request-id": [ - "40450b55-3fee-4051-b603-c8bed3aab971" + "2e9b5c9d-8385-488d-8190-a8538cb7edf7" ], "x-ms-correlation-request-id": [ - "40450b55-3fee-4051-b603-c8bed3aab971" + "2e9b5c9d-8385-488d-8190-a8538cb7edf7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141336Z:40450b55-3fee-4051-b603-c8bed3aab971" + "CENTRALINDIA:20220512T105433Z:2e9b5c9d-8385-488d-8190-a8538cb7edf7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:35 GMT" + "Thu, 12 May 2022 10:54:33 GMT" ], "Content-Type": [ "application/json" @@ -5251,22 +5191,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlcj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0009714-2c99-464d-9796-07a546c9b7f8" + "0577386c-b98f-490e-a853-d3c8a5bf19b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5277,13 +5217,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/69d221fa-a046-4b45-8c18-24eda8ceb93c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/527b5f41-cb0c-4313-9d70-3eb61aae1ffc?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/69d221fa-a046-4b45-8c18-24eda8ceb93c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/527b5f41-cb0c-4313-9d70-3eb61aae1ffc?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "69d221fa-a046-4b45-8c18-24eda8ceb93c" + "527b5f41-cb0c-4313-9d70-3eb61aae1ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5295,19 +5235,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "b166a63a-0721-426c-86c1-caeda6984afe" + "ba88561a-eac9-4d95-bdda-6b9465b281d6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141338Z:b166a63a-0721-426c-86c1-caeda6984afe" + "JIOINDIACENTRAL:20220512T105434Z:ba88561a-eac9-4d95-bdda-6b9465b281d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:13:37 GMT" + "Thu, 12 May 2022 10:54:34 GMT" ], "Content-Length": [ "21" @@ -5320,19 +5260,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/69d221fa-a046-4b45-8c18-24eda8ceb93c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjlkMjIxZmEtYTA0Ni00YjQ1LThjMTgtMjRlZGE4Y2ViOTNjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/527b5f41-cb0c-4313-9d70-3eb61aae1ffc?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTI3YjVmNDEtY2IwYy00MzEzLTlkNzAtM2ViNjFhYWUxZmZjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0009714-2c99-464d-9796-07a546c9b7f8" + "0577386c-b98f-490e-a853-d3c8a5bf19b4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5352,22 +5292,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" ], "x-ms-request-id": [ - "4558da73-968a-43bb-b7d2-e5234767220b" + "82353ffe-14b7-479a-a5d1-78dde2444478" ], "x-ms-correlation-request-id": [ - "4558da73-968a-43bb-b7d2-e5234767220b" + "82353ffe-14b7-479a-a5d1-78dde2444478" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141409Z:4558da73-968a-43bb-b7d2-e5234767220b" + "JIOINDIACENTRAL:20220512T105505Z:82353ffe-14b7-479a-a5d1-78dde2444478" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:14:08 GMT" + "Thu, 12 May 2022 10:55:05 GMT" ], "Content-Length": [ "22" @@ -5380,19 +5320,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/69d221fa-a046-4b45-8c18-24eda8ceb93c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlci9vcGVyYXRpb25SZXN1bHRzLzY5ZDIyMWZhLWEwNDYtNGI0NS04YzE4LTI0ZWRhOGNlYjkzYz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/527b5f41-cb0c-4313-9d70-3eb61aae1ffc?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdHJpZ2dlcnMvdHJpZ2dlci9vcGVyYXRpb25SZXN1bHRzLzUyN2I1ZjQxLWNiMGMtNDMxMy05ZDcwLTNlYjYxYWFlMWZmYz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0009714-2c99-464d-9796-07a546c9b7f8" + "0577386c-b98f-490e-a853-d3c8a5bf19b4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5412,22 +5352,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11982" ], "x-ms-request-id": [ - "11e84acd-1734-4691-afc3-aa7a14a460c4" + "95d3e0a6-ff04-44b3-9ebb-9f5dbe79d0cf" ], "x-ms-correlation-request-id": [ - "11e84acd-1734-4691-afc3-aa7a14a460c4" + "95d3e0a6-ff04-44b3-9ebb-9f5dbe79d0cf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141409Z:11e84acd-1734-4691-afc3-aa7a14a460c4" + "JIOINDIACENTRAL:20220512T105506Z:95d3e0a6-ff04-44b3-9ebb-9f5dbe79d0cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:14:09 GMT" + "Thu, 12 May 2022 10:55:06 GMT" ], "Content-Type": [ "application/json" @@ -5437,22 +5377,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "867b0645-2061-46c0-a92e-3ab13211bf4a" + "fab796ce-2d31-410a-873d-17cdb2084df0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5463,13 +5403,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/f4ab0aa6-592c-44bc-bd70-9083c53ecc49?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/d90339af-833f-4981-b682-6ad9a72ac679?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f4ab0aa6-592c-44bc-bd70-9083c53ecc49?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d90339af-833f-4981-b682-6ad9a72ac679?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f4ab0aa6-592c-44bc-bd70-9083c53ecc49" + "d90339af-833f-4981-b682-6ad9a72ac679" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5484,16 +5424,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "8c54c7dd-1450-4149-8104-26456cbd6925" + "d1bf7592-375a-4176-864e-07ecb934655f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141411Z:8c54c7dd-1450-4149-8104-26456cbd6925" + "JIOINDIACENTRAL:20220512T105508Z:d1bf7592-375a-4176-864e-07ecb934655f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:14:11 GMT" + "Thu, 12 May 2022 10:55:07 GMT" ], "Content-Length": [ "21" @@ -5506,19 +5446,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f4ab0aa6-592c-44bc-bd70-9083c53ecc49?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjRhYjBhYTYtNTkyYy00NGJjLWJkNzAtOTA4M2M1M2VjYzQ5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d90339af-833f-4981-b682-6ad9a72ac679?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDkwMzM5YWYtODMzZi00OTgxLWI2ODItNmFkOWE3MmFjNjc5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "867b0645-2061-46c0-a92e-3ab13211bf4a" + "fab796ce-2d31-410a-873d-17cdb2084df0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5538,22 +5478,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11977" ], "x-ms-request-id": [ - "1a254582-689c-4bd3-9561-574238a8ff65" + "311cdb55-7f80-4433-bda6-d2af2e45c57e" ], "x-ms-correlation-request-id": [ - "1a254582-689c-4bd3-9561-574238a8ff65" + "311cdb55-7f80-4433-bda6-d2af2e45c57e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141442Z:1a254582-689c-4bd3-9561-574238a8ff65" + "JIOINDIACENTRAL:20220512T105539Z:311cdb55-7f80-4433-bda6-d2af2e45c57e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:14:42 GMT" + "Thu, 12 May 2022 10:55:39 GMT" ], "Content-Length": [ "22" @@ -5566,19 +5506,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/f4ab0aa6-592c-44bc-bd70-9083c53ecc49?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmL29wZXJhdGlvblJlc3VsdHMvZjRhYjBhYTYtNTkyYy00NGJjLWJkNzAtOTA4M2M1M2VjYzQ5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/d90339af-833f-4981-b682-6ad9a72ac679?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvdXNlckRlZmluZWRGdW5jdGlvbnMvdWRmL29wZXJhdGlvblJlc3VsdHMvZDkwMzM5YWYtODMzZi00OTgxLWI2ODItNmFkOWE3MmFjNjc5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "867b0645-2061-46c0-a92e-3ab13211bf4a" + "fab796ce-2d31-410a-873d-17cdb2084df0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5598,22 +5538,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11976" ], "x-ms-request-id": [ - "a86fffc5-acd3-4319-905c-b4b75cbbe986" + "5a926f5a-b9fe-4d8f-a29e-5e25abad6ae0" ], "x-ms-correlation-request-id": [ - "a86fffc5-acd3-4319-905c-b4b75cbbe986" + "5a926f5a-b9fe-4d8f-a29e-5e25abad6ae0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141442Z:a86fffc5-acd3-4319-905c-b4b75cbbe986" + "JIOINDIACENTRAL:20220512T105540Z:5a926f5a-b9fe-4d8f-a29e-5e25abad6ae0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:14:42 GMT" + "Thu, 12 May 2022 10:55:39 GMT" ], "Content-Type": [ "application/json" @@ -5623,22 +5563,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9464011a-f4ce-4294-95d7-3718c31e7675" + "2cef2e9f-5eed-4593-9561-b117d7d1e38c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5649,13 +5589,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/49716fd3-25ee-4cfd-a33f-37647a45e831?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/c8a64863-8fb8-482e-8f26-aa6486d3048a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/49716fd3-25ee-4cfd-a33f-37647a45e831?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c8a64863-8fb8-482e-8f26-aa6486d3048a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "49716fd3-25ee-4cfd-a33f-37647a45e831" + "c8a64863-8fb8-482e-8f26-aa6486d3048a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5667,19 +5607,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "7c1e6ebc-7381-48db-a028-dc244c572fb6" + "24a93c83-219d-4e8d-a39e-cff97209e96a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141444Z:7c1e6ebc-7381-48db-a028-dc244c572fb6" + "CENTRALINDIA:20220512T105542Z:24a93c83-219d-4e8d-a39e-cff97209e96a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:14:43 GMT" + "Thu, 12 May 2022 10:55:42 GMT" ], "Content-Length": [ "21" @@ -5692,22 +5632,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74ff9062-b797-446c-8b71-fe1419ce2b4e" + "9a04925f-f8ec-4c54-8055-b5a8d0db4b40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5718,13 +5658,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/4607401a-e331-45e9-9e83-fc17a325689c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/f4847f18-ab20-4cc6-a0df-d1a3c7329907?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4607401a-e331-45e9-9e83-fc17a325689c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f4847f18-ab20-4cc6-a0df-d1a3c7329907?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "4607401a-e331-45e9-9e83-fc17a325689c" + "f4847f18-ab20-4cc6-a0df-d1a3c7329907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5736,19 +5676,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "94d5a18a-9ebd-4be1-9cc9-2510720aa8fc" + "dbe87fcf-bfb8-4999-8675-8c07a544c3fb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141550Z:94d5a18a-9ebd-4be1-9cc9-2510720aa8fc" + "JIOINDIACENTRAL:20220512T105647Z:dbe87fcf-bfb8-4999-8675-8c07a544c3fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:15:49 GMT" + "Thu, 12 May 2022 10:56:47 GMT" ], "Content-Length": [ "21" @@ -5761,19 +5701,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/49716fd3-25ee-4cfd-a33f-37647a45e831?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDk3MTZmZDMtMjVlZS00Y2ZkLWEzM2YtMzc2NDdhNDVlODMxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c8a64863-8fb8-482e-8f26-aa6486d3048a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzhhNjQ4NjMtOGZiOC00ODJlLThmMjYtYWE2NDg2ZDMwNDhhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9464011a-f4ce-4294-95d7-3718c31e7675" + "2cef2e9f-5eed-4593-9561-b117d7d1e38c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5793,22 +5733,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "9eda78fc-fd88-4829-a11a-970f26baf00d" + "f2565938-7145-4e3c-b74c-0f9d368285fe" ], "x-ms-correlation-request-id": [ - "9eda78fc-fd88-4829-a11a-970f26baf00d" + "f2565938-7145-4e3c-b74c-0f9d368285fe" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141515Z:9eda78fc-fd88-4829-a11a-970f26baf00d" + "CENTRALINDIA:20220512T105612Z:f2565938-7145-4e3c-b74c-0f9d368285fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:15:15 GMT" + "Thu, 12 May 2022 10:56:12 GMT" ], "Content-Length": [ "22" @@ -5821,19 +5761,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/49716fd3-25ee-4cfd-a33f-37647a45e831?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvb3BlcmF0aW9uUmVzdWx0cy80OTcxNmZkMy0yNWVlLTRjZmQtYTMzZi0zNzY0N2E0NWU4MzE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/c8a64863-8fb8-482e-8f26-aa6486d3048a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvb3BlcmF0aW9uUmVzdWx0cy9jOGE2NDg2My04ZmI4LTQ4MmUtOGYyNi1hYTY0ODZkMzA0OGE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9464011a-f4ce-4294-95d7-3718c31e7675" + "2cef2e9f-5eed-4593-9561-b117d7d1e38c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5853,22 +5793,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "d2472274-042b-45c7-a127-bd4c8d16d75c" + "dce40ce9-43b3-46af-b220-6a0ffc6eb81a" ], "x-ms-correlation-request-id": [ - "d2472274-042b-45c7-a127-bd4c8d16d75c" + "dce40ce9-43b3-46af-b220-6a0ffc6eb81a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141515Z:d2472274-042b-45c7-a127-bd4c8d16d75c" + "CENTRALINDIA:20220512T105612Z:dce40ce9-43b3-46af-b220-6a0ffc6eb81a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:15:15 GMT" + "Thu, 12 May 2022 10:56:12 GMT" ], "Content-Type": [ "application/json" @@ -5878,22 +5818,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2140e27c-856b-4726-9833-ae8fe3774d72" + "8b0145d7-80cb-49a0-9fff-2e60018660ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5904,13 +5844,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/55824737-3c88-4346-928f-d9c524bcb882?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/c6a29236-5622-40e2-af71-f71fd883c005?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/55824737-3c88-4346-928f-d9c524bcb882?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c6a29236-5622-40e2-af71-f71fd883c005?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "55824737-3c88-4346-928f-d9c524bcb882" + "c6a29236-5622-40e2-af71-f71fd883c005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5922,19 +5862,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "1eea243d-2031-4a77-9d0e-c1b2472c9d2c" + "152fe264-7dbc-4de3-bc15-5af4bad60335" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141517Z:1eea243d-2031-4a77-9d0e-c1b2472c9d2c" + "CENTRALINDIA:20220512T105614Z:152fe264-7dbc-4de3-bc15-5af4bad60335" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:15:17 GMT" + "Thu, 12 May 2022 10:56:13 GMT" ], "Content-Length": [ "21" @@ -5947,22 +5887,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6d1df69-f8ae-42ae-9057-18b6ffef7a96" + "9711fb05-2ef6-4459-b9f5-d8fd6fb5e178" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5973,13 +5913,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/565e1916-3128-4e53-b2f6-3c0eaef2c13d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/930b3c45-6a1a-45f3-bee0-90bda8c85f9a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/565e1916-3128-4e53-b2f6-3c0eaef2c13d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/930b3c45-6a1a-45f3-bee0-90bda8c85f9a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "565e1916-3128-4e53-b2f6-3c0eaef2c13d" + "930b3c45-6a1a-45f3-bee0-90bda8c85f9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5991,19 +5931,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "76045ba5-1cdc-4cec-8ede-b10a1d1e413a" + "0d51b9f3-cc93-4896-9f54-ba2a77c90579" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141623Z:76045ba5-1cdc-4cec-8ede-b10a1d1e413a" + "JIOINDIACENTRAL:20220512T105720Z:0d51b9f3-cc93-4896-9f54-ba2a77c90579" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:16:22 GMT" + "Thu, 12 May 2022 10:57:20 GMT" ], "Content-Length": [ "21" @@ -6016,19 +5956,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/55824737-3c88-4346-928f-d9c524bcb882?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTU4MjQ3MzctM2M4OC00MzQ2LTkyOGYtZDljNTI0YmNiODgyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c6a29236-5622-40e2-af71-f71fd883c005?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzZhMjkyMzYtNTYyMi00MGUyLWFmNzEtZjcxZmQ4ODNjMDA1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2140e27c-856b-4726-9833-ae8fe3774d72" + "8b0145d7-80cb-49a0-9fff-2e60018660ff" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -6048,22 +5988,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "5c21e5d5-6f50-4c7b-aa1d-6557500c46cc" + "6ef40b10-b56c-4ef5-a090-0d5c9b1adc26" ], "x-ms-correlation-request-id": [ - "5c21e5d5-6f50-4c7b-aa1d-6557500c46cc" + "6ef40b10-b56c-4ef5-a090-0d5c9b1adc26" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141547Z:5c21e5d5-6f50-4c7b-aa1d-6557500c46cc" + "CENTRALINDIA:20220512T105645Z:6ef40b10-b56c-4ef5-a090-0d5c9b1adc26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:15:47 GMT" + "Thu, 12 May 2022 10:56:44 GMT" ], "Content-Length": [ "22" @@ -6076,19 +6016,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/55824737-3c88-4346-928f-d9c524bcb882?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzU1ODI0NzM3LTNjODgtNDM0Ni05MjhmLWQ5YzUyNGJjYjg4Mj9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/c6a29236-5622-40e2-af71-f71fd883c005?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzL2M2YTI5MjM2LTU2MjItNDBlMi1hZjcxLWY3MWZkODgzYzAwNT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2140e27c-856b-4726-9833-ae8fe3774d72" + "8b0145d7-80cb-49a0-9fff-2e60018660ff" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -6108,22 +6048,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-request-id": [ - "a93d683a-8996-44ab-9e84-6a455646a327" + "6c6bb983-f02e-4569-8fde-d9a52a9a600c" ], "x-ms-correlation-request-id": [ - "a93d683a-8996-44ab-9e84-6a455646a327" + "6c6bb983-f02e-4569-8fde-d9a52a9a600c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141548Z:a93d683a-8996-44ab-9e84-6a455646a327" + "CENTRALINDIA:20220512T105645Z:6c6bb983-f02e-4569-8fde-d9a52a9a600c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:15:47 GMT" + "Thu, 12 May 2022 10:56:44 GMT" ], "Content-Type": [ "application/json" @@ -6133,19 +6073,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4607401a-e331-45e9-9e83-fc17a325689c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDYwNzQwMWEtZTMzMS00NWU5LTllODMtZmMxN2EzMjU2ODljP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f4847f18-ab20-4cc6-a0df-d1a3c7329907?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjQ4NDdmMTgtYWIyMC00Y2M2LWEwZGYtZDFhM2M3MzI5OTA3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74ff9062-b797-446c-8b71-fe1419ce2b4e" + "9a04925f-f8ec-4c54-8055-b5a8d0db4b40" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -6165,22 +6105,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-request-id": [ - "65489a98-4c63-43b7-a748-d021dc2234fc" + "f399abcd-9c4e-4473-8c8a-2f4446b89f21" ], "x-ms-correlation-request-id": [ - "65489a98-4c63-43b7-a748-d021dc2234fc" + "f399abcd-9c4e-4473-8c8a-2f4446b89f21" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141621Z:65489a98-4c63-43b7-a748-d021dc2234fc" + "JIOINDIACENTRAL:20220512T105718Z:f399abcd-9c4e-4473-8c8a-2f4446b89f21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:16:21 GMT" + "Thu, 12 May 2022 10:57:18 GMT" ], "Content-Length": [ "22" @@ -6193,19 +6133,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/4607401a-e331-45e9-9e83-fc17a325689c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvb3BlcmF0aW9uUmVzdWx0cy80NjA3NDAxYS1lMzMxLTQ1ZTktOWU4My1mYzE3YTMyNTY4OWM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/containers/container1/operationResults/f4847f18-ab20-4cc6-a0df-d1a3c7329907?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9jb250YWluZXJzL2NvbnRhaW5lcjEvb3BlcmF0aW9uUmVzdWx0cy9mNDg0N2YxOC1hYjIwLTRjYzYtYTBkZi1kMWEzYzczMjk5MDc/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74ff9062-b797-446c-8b71-fe1419ce2b4e" + "9a04925f-f8ec-4c54-8055-b5a8d0db4b40" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -6225,22 +6165,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-request-id": [ - "47c7ca23-7905-4d1f-b70c-1abd6409e648" + "d7c06ae9-a55c-4fcd-b76a-3036fbf34e5c" ], "x-ms-correlation-request-id": [ - "47c7ca23-7905-4d1f-b70c-1abd6409e648" + "d7c06ae9-a55c-4fcd-b76a-3036fbf34e5c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T141621Z:47c7ca23-7905-4d1f-b70c-1abd6409e648" + "JIOINDIACENTRAL:20220512T105718Z:d7c06ae9-a55c-4fcd-b76a-3036fbf34e5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:16:21 GMT" + "Thu, 12 May 2022 10:57:18 GMT" ], "Content-Type": [ "application/json" @@ -6250,19 +6190,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/565e1916-3128-4e53-b2f6-3c0eaef2c13d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY1ZTE5MTYtMzEyOC00ZTUzLWIyZjYtM2MwZWFlZjJjMTNkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/930b3c45-6a1a-45f3-bee0-90bda8c85f9a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTMwYjNjNDUtNmExYS00NWYzLWJlZTAtOTBiZGE4Yzg1ZjlhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6d1df69-f8ae-42ae-9057-18b6ffef7a96" + "9711fb05-2ef6-4459-b9f5-d8fd6fb5e178" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -6282,22 +6222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11976" ], "x-ms-request-id": [ - "1df36780-f93b-4523-a8d0-efcd806c6e20" + "f1c81e88-12d6-48ff-a2d6-c908b08b660e" ], "x-ms-correlation-request-id": [ - "1df36780-f93b-4523-a8d0-efcd806c6e20" + "f1c81e88-12d6-48ff-a2d6-c908b08b660e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141653Z:1df36780-f93b-4523-a8d0-efcd806c6e20" + "JIOINDIACENTRAL:20220512T105751Z:f1c81e88-12d6-48ff-a2d6-c908b08b660e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:16:53 GMT" + "Thu, 12 May 2022 10:57:51 GMT" ], "Content-Length": [ "22" @@ -6310,19 +6250,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/565e1916-3128-4e53-b2f6-3c0eaef2c13d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzU2NWUxOTE2LTMxMjgtNGU1My1iMmY2LTNjMGVhZWYyYzEzZD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup61/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount61-1/sqlDatabases/dbName/operationResults/930b3c45-6a1a-45f3-bee0-90bda8c85f9a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYxLTEvc3FsRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzkzMGIzYzQ1LTZhMWEtNDVmMy1iZWUwLTkwYmRhOGM4NWY5YT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6d1df69-f8ae-42ae-9057-18b6ffef7a96" + "9711fb05-2ef6-4459-b9f5-d8fd6fb5e178" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -6342,22 +6282,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11975" ], "x-ms-request-id": [ - "6c28df42-d244-4557-a450-9590753568fa" + "5334c2e8-d3d7-49af-b401-bc7c00d9e233" ], "x-ms-correlation-request-id": [ - "6c28df42-d244-4557-a450-9590753568fa" + "5334c2e8-d3d7-49af-b401-bc7c00d9e233" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T141654Z:6c28df42-d244-4557-a450-9590753568fa" + "JIOINDIACENTRAL:20220512T105751Z:5334c2e8-d3d7-49af-b401-bc7c00d9e233" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:16:54 GMT" + "Thu, 12 May 2022 10:57:51 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlRoleCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlRoleCmdlets.json index d5f54a589d4e..ca55c8e2da47 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlRoleCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlRoleCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3f5eec68-eb6b-4683-a869-603a9a37f609" + "5937972d-abc1-4f1d-ab4a-325b0fbd0108" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "e8827865-1013-4ba8-a969-c87f0ae65d04" + "c500d5a7-e132-452f-8c28-72afce6f9c8d" ], "x-ms-correlation-request-id": [ - "e8827865-1013-4ba8-a969-c87f0ae65d04" + "c500d5a7-e132-452f-8c28-72afce6f9c8d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142431Z:e8827865-1013-4ba8-a969-c87f0ae65d04" + "JIOINDIACENTRAL:20220512T110549Z:c500d5a7-e132-452f-8c28-72afce6f9c8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:24:31 GMT" + "Thu, 12 May 2022 11:05:49 GMT" ], "Content-Length": [ "185" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef4cc34-72e5-4dda-bac1-f61643511508" + "7d50ff56-e150-438c-9976-8999af85f58b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "90258cbb-8506-478c-a828-d675861237bd" + "cd791992-d4e4-4185-b7a5-e7ec9272c71b" ], "x-ms-correlation-request-id": [ - "90258cbb-8506-478c-a828-d675861237bd" + "cd791992-d4e4-4185-b7a5-e7ec9272c71b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142432Z:90258cbb-8506-478c-a828-d675861237bd" + "JIOINDIACENTRAL:20220512T110549Z:cd791992-d4e4-4185-b7a5-e7ec9272c71b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:24:31 GMT" + "Thu, 12 May 2022 11:05:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef4cc34-72e5-4dda-bac1-f61643511508" + "7d50ff56-e150-438c-9976-8999af85f58b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11988" ], "x-ms-request-id": [ - "20975adc-81df-48fa-92a2-957c420ce192" + "443a2a79-120a-4cf6-8462-d6a8c3332a07" ], "x-ms-correlation-request-id": [ - "20975adc-81df-48fa-92a2-957c420ce192" + "443a2a79-120a-4cf6-8462-d6a8c3332a07" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142643Z:20975adc-81df-48fa-92a2-957c420ce192" + "JIOINDIACENTRAL:20220512T110735Z:443a2a79-120a-4cf6-8462-d6a8c3332a07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:26:43 GMT" + "Thu, 12 May 2022 11:07:35 GMT" ], "Content-Length": [ "2320" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\",\r\n \"name\": \"rbactestps73\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:25:51.3325633Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://rbactestps73.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e3237fd1-2dbb-4620-b6de-2d9794fb69e0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\",\r\n \"name\": \"rbactestps73\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:07:10.8766362Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://rbactestps73.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"37a7aa56-043c-4c99-b790-fb1962eb2a3c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42641c9b-0a2d-4a6f-8edb-ad7b4bc1efbe" + "2c512af9-b5df-4f09-8b91-50c7761e18f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "1c86ba6a-f1c2-4df3-9cea-060ec87742d8" + "d0e45230-6ba2-4ed9-b8d2-3ae6c8e14200" ], "x-ms-correlation-request-id": [ - "1c86ba6a-f1c2-4df3-9cea-060ec87742d8" + "d0e45230-6ba2-4ed9-b8d2-3ae6c8e14200" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142716Z:1c86ba6a-f1c2-4df3-9cea-060ec87742d8" + "JIOINDIACENTRAL:20220512T110810Z:d0e45230-6ba2-4ed9-b8d2-3ae6c8e14200" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:16 GMT" + "Thu, 12 May 2022 11:08:10 GMT" ], "Content-Length": [ "2320" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\",\r\n \"name\": \"rbactestps73\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:25:51.3325633Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://rbactestps73.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e3237fd1-2dbb-4620-b6de-2d9794fb69e0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\",\r\n \"name\": \"rbactestps73\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:07:10.8766362Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://rbactestps73.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"37a7aa56-043c-4c99-b790-fb1962eb2a3c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5ec0f30-b628-42d2-8b57-060f3daf84a1" + "4547036d-858e-4a2b-8db8-e97eafffebb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -285,22 +285,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11995" ], "x-ms-request-id": [ - "75b3c43d-22e3-42f7-9901-6d10054b07dc" + "c8943177-ed9d-4f6b-b98f-7b03b6f08e9b" ], "x-ms-correlation-request-id": [ - "75b3c43d-22e3-42f7-9901-6d10054b07dc" + "c8943177-ed9d-4f6b-b98f-7b03b6f08e9b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143451Z:75b3c43d-22e3-42f7-9901-6d10054b07dc" + "CENTRALINDIA:20220512T111629Z:c8943177-ed9d-4f6b-b98f-7b03b6f08e9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:34:51 GMT" + "Thu, 12 May 2022 11:16:28 GMT" ], "Content-Length": [ "2320" @@ -309,26 +309,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\",\r\n \"name\": \"rbactestps73\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:25:51.3325633Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://rbactestps73.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e3237fd1-2dbb-4620-b6de-2d9794fb69e0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\",\r\n \"name\": \"rbactestps73\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:07:10.8766362Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://rbactestps73.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"37a7aa56-043c-4c99-b790-fb1962eb2a3c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://rbactestps73-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef4cc34-72e5-4dda-bac1-f61643511508" + "7d50ff56-e150-438c-9976-8999af85f58b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -345,13 +345,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/operationResults/7a8ac809-840f-481f-b64f-42747663f129?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/operationResults/e8b5c3be-d518-4ffe-8bb2-4c1eb0104a1d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "7a8ac809-840f-481f-b64f-42747663f129" + "e8b5c3be-d518-4ffe-8bb2-4c1eb0104a1d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7a8ac809-840f-481f-b64f-42747663f129?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8b5c3be-d518-4ffe-8bb2-4c1eb0104a1d?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,19 +363,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "c0785f5c-eb9d-49e2-8e7e-f522143c66c4" + "d3475760-2aca-4069-a38d-b6f9f0220b76" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142442Z:c0785f5c-eb9d-49e2-8e7e-f522143c66c4" + "JIOINDIACENTRAL:20220512T110603Z:d3475760-2aca-4069-a38d-b6f9f0220b76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:24:42 GMT" + "Thu, 12 May 2022 11:06:02 GMT" ], "Content-Length": [ "2013" @@ -384,83 +384,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\",\r\n \"name\": \"rbactestps73\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:24:39.6399985Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e3237fd1-2dbb-4620-b6de-2d9794fb69e0\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7a8ac809-840f-481f-b64f-42747663f129?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2E4YWM4MDktODQwZi00ODFmLWI2NGYtNDI3NDc2NjNmMTI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ef4cc34-72e5-4dda-bac1-f61643511508" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "b90490c0-f118-4be4-a558-b6f1ca9b9d4c" - ], - "x-ms-correlation-request-id": [ - "b90490c0-f118-4be4-a558-b6f1ca9b9d4c" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142512Z:b90490c0-f118-4be4-a558-b6f1ca9b9d4c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 14:25:12 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\",\r\n \"name\": \"rbactestps73\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:05:58.4832692Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"37a7aa56-043c-4c99-b790-fb1962eb2a3c\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"rbactestps73-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7a8ac809-840f-481f-b64f-42747663f129?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2E4YWM4MDktODQwZi00ODFmLWI2NGYtNDI3NDc2NjNmMTI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8b5c3be-d518-4ffe-8bb2-4c1eb0104a1d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZThiNWMzYmUtZDUxOC00ZmZlLThiYjItNGMxZWIwMTA0YTFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef4cc34-72e5-4dda-bac1-f61643511508" + "7d50ff56-e150-438c-9976-8999af85f58b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -480,22 +420,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-request-id": [ - "e7662034-28cc-40e1-aa69-58ba7f02b261" + "ec076e83-acb2-4719-b946-b1348662754d" ], "x-ms-correlation-request-id": [ - "e7662034-28cc-40e1-aa69-58ba7f02b261" + "ec076e83-acb2-4719-b946-b1348662754d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142543Z:e7662034-28cc-40e1-aa69-58ba7f02b261" + "JIOINDIACENTRAL:20220512T110633Z:ec076e83-acb2-4719-b946-b1348662754d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:25:42 GMT" + "Thu, 12 May 2022 11:06:32 GMT" ], "Content-Length": [ "21" @@ -508,19 +448,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7a8ac809-840f-481f-b64f-42747663f129?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2E4YWM4MDktODQwZi00ODFmLWI2NGYtNDI3NDc2NjNmMTI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8b5c3be-d518-4ffe-8bb2-4c1eb0104a1d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZThiNWMzYmUtZDUxOC00ZmZlLThiYjItNGMxZWIwMTA0YTFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef4cc34-72e5-4dda-bac1-f61643511508" + "7d50ff56-e150-438c-9976-8999af85f58b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -540,22 +480,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-request-id": [ - "bb40b8df-9a88-40a1-ba6c-ae4632a74af1" + "0c18c3d8-3608-4f4a-bb75-fa3afc548ffd" ], "x-ms-correlation-request-id": [ - "bb40b8df-9a88-40a1-ba6c-ae4632a74af1" + "0c18c3d8-3608-4f4a-bb75-fa3afc548ffd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142613Z:bb40b8df-9a88-40a1-ba6c-ae4632a74af1" + "JIOINDIACENTRAL:20220512T110704Z:0c18c3d8-3608-4f4a-bb75-fa3afc548ffd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:26:12 GMT" + "Thu, 12 May 2022 11:07:04 GMT" ], "Content-Length": [ "21" @@ -568,19 +508,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7a8ac809-840f-481f-b64f-42747663f129?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2E4YWM4MDktODQwZi00ODFmLWI2NGYtNDI3NDc2NjNmMTI5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8b5c3be-d518-4ffe-8bb2-4c1eb0104a1d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZThiNWMzYmUtZDUxOC00ZmZlLThiYjItNGMxZWIwMTA0YTFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef4cc34-72e5-4dda-bac1-f61643511508" + "7d50ff56-e150-438c-9976-8999af85f58b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -600,22 +540,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11989" ], "x-ms-request-id": [ - "a7f3f389-9e1f-47bb-b9d5-f557b38ad92b" + "792facf9-284c-46ee-a450-a21245a07b48" ], "x-ms-correlation-request-id": [ - "a7f3f389-9e1f-47bb-b9d5-f557b38ad92b" + "792facf9-284c-46ee-a450-a21245a07b48" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142643Z:a7f3f389-9e1f-47bb-b9d5-f557b38ad92b" + "JIOINDIACENTRAL:20220512T110734Z:792facf9-284c-46ee-a450-a21245a07b48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:26:43 GMT" + "Thu, 12 May 2022 11:07:34 GMT" ], "Content-Length": [ "22" @@ -628,22 +568,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5f8392d-f0da-4c07-9d75-4b8caa1b093b" + "fad38085-96de-467e-a11b-169c4027adef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -663,47 +603,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "5ad4e6b6-5ff8-4dab-a0de-aa973b1854f7" + "c2640776-9807-4ceb-b487-8dbdfd67c709" ], "x-ms-correlation-request-id": [ - "5ad4e6b6-5ff8-4dab-a0de-aa973b1854f7" + "c2640776-9807-4ceb-b487-8dbdfd67c709" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142644Z:5ad4e6b6-5ff8-4dab-a0de-aa973b1854f7" + "JIOINDIACENTRAL:20220512T110736Z:c2640776-9807-4ceb-b487-8dbdfd67c709" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:26:44 GMT" + "Thu, 12 May 2022 11:07:36 GMT" ], "Content-Length": [ - "5578" + "6289" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: f5f8392d-f0da-4c07-9d75-4b8caa1b093b, Request URI: /apps/ac164aa3-c1d8-4db6-8504-335fa58c4469/services/876d092b-3f3c-4ed0-bd90-9ba065e5d57a/partitions/f6474a93-8e42-4df4-9880-a7d96223dc6a/replicas/132912132061820267s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:26:44.4923120Z, RequestEndTime: 2022-03-08T14:26:44.4923120Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:25:37.7331417Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.475,\\\\\\\"memory\\\\\\\":630393380.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0092,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:25:47.7430204Z\\\\\\\",\\\\\\\"cpu\\\\\\\":5.741,\\\\\\\"memory\\\\\\\":629745084.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0121,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:25:57.7528977Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.625,\\\\\\\"memory\\\\\\\":629721524.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:26:07.7627726Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.884,\\\\\\\"memory\\\\\\\":629287112.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0076,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:26:17.7726453Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.134,\\\\\\\"memory\\\\\\\":628686256.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:26:37.7723954Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.805,\\\\\\\"memory\\\\\\\":631099524.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:26:44.4923120Z; ResponseTime: 2022-03-08T14:26:44.4923120Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ac164aa3-c1d8-4db6-8504-335fa58c4469/services/876d092b-3f3c-4ed0-bd90-9ba065e5d57a/partitions/f6474a93-8e42-4df4-9880-a7d96223dc6a/replicas/132912132061820267s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.792, ActivityId: f5f8392d-f0da-4c07-9d75-4b8caa1b093b, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4923120Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0096},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4923216Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0023},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4923239Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0923},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4924162Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0259},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4934421Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0221},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4934642Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:26:44.4923120Z; ResponseTime: 2022-03-08T14:26:44.4923120Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/ac164aa3-c1d8-4db6-8504-335fa58c4469/services/876d092b-3f3c-4ed0-bd90-9ba065e5d57a/partitions/f6474a93-8e42-4df4-9880-a7d96223dc6a/replicas/132912132061820266s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.718, ActivityId: f5f8392d-f0da-4c07-9d75-4b8caa1b093b, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4923120Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4923151Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4923163Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0552},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4923715Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0087},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4933802Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0303},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:26:44.4934105Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: fad38085-96de-467e-a11b-169c4027adef, Request URI: /apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/60b98cf0-7e79-4786-95c5-02f110f2342e/partitions/70eb1bab-6fc0-4124-a0b7-a164fe9ec96a/replicas/132965802345219142s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:07:36.6238457Z, RequestEndTime: 2022-05-12T11:07:36.6238457Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:06:43.9441267Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.113,\\\\\\\"memory\\\\\\\":656484448.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0094,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:06:53.9540535Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.259,\\\\\\\"memory\\\\\\\":656144592.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0158,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:07:03.9640369Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.324,\\\\\\\"memory\\\\\\\":656123760.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0098,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:07:13.9739983Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.204,\\\\\\\"memory\\\\\\\":656582100.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.02,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:07:23.9839491Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.203,\\\\\\\"memory\\\\\\\":656560108.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0122,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:07:33.9938723Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.254,\\\\\\\"memory\\\\\\\":656550596.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0118,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:07:36.6238457Z; ResponseTime: 2022-05-12T11:07:36.6238457Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/60b98cf0-7e79-4786-95c5-02f110f2342e/partitions/70eb1bab-6fc0-4124-a0b7-a164fe9ec96a/replicas/132965802345219142s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.737, ActivityId: fad38085-96de-467e-a11b-169c4027adef, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6238457Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0068},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6238525Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6238547Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1085},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6239632Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9038},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6248670Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0613},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6249283Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:07:36.5238449Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:07:36.5238449Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:07:36.5238449Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":451,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:07:36.6238457Z; ResponseTime: 2022-05-12T11:07:36.6238457Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/60b98cf0-7e79-4786-95c5-02f110f2342e/partitions/70eb1bab-6fc0-4124-a0b7-a164fe9ec96a/replicas/132965802345219144s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.722, ActivityId: fad38085-96de-467e-a11b-169c4027adef, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6238457Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6238485Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6238493Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0572},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6239065Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9273},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6248338Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0542},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:07:36.6248880Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:07:36.5838442Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:07:36.5838442Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:07:36.5838442Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":451,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5f8392d-f0da-4c07-9d75-4b8caa1b093b" + "fad38085-96de-467e-a11b-169c4027adef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -723,22 +663,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "8b618b12-aaf2-4db7-82c9-a60d7aafebce" + "43933afe-90bd-41fb-94a0-dd3012afd7e5" ], "x-ms-correlation-request-id": [ - "8b618b12-aaf2-4db7-82c9-a60d7aafebce" + "43933afe-90bd-41fb-94a0-dd3012afd7e5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142716Z:8b618b12-aaf2-4db7-82c9-a60d7aafebce" + "JIOINDIACENTRAL:20220512T110809Z:43933afe-90bd-41fb-94a0-dd3012afd7e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:16 GMT" + "Thu, 12 May 2022 11:08:08 GMT" ], "Content-Length": [ "437" @@ -747,26 +687,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"3r8vAA==\",\r\n \"_self\": \"dbs/3r8vAA==/\",\r\n \"_etag\": \"\\\"00001504-0000-0100-0000-622767aa0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646749610\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"7dQrAA==\",\r\n \"_self\": \"dbs/7dQrAA==/\",\r\n \"_etag\": \"\\\"0000761d-0000-0100-0000-627cea7e0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652353662\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f5f8392d-f0da-4c07-9d75-4b8caa1b093b" + "fad38085-96de-467e-a11b-169c4027adef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,13 +723,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName/operationResults/55685aaa-bf9e-4795-922d-5927fdc67b07?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlDatabases/dbName/operationResults/11355092-7b4e-4a9d-bfe1-27cd8c196995?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/55685aaa-bf9e-4795-922d-5927fdc67b07?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/11355092-7b4e-4a9d-bfe1-27cd8c196995?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "55685aaa-bf9e-4795-922d-5927fdc67b07" + "11355092-7b4e-4a9d-bfe1-27cd8c196995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -801,19 +741,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "bbbbcf23-0074-4fa9-8e48-d75236f791bb" + "7ca25605-4f73-47eb-961e-e9ccfe5cd0da" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142646Z:bbbbcf23-0074-4fa9-8e48-d75236f791bb" + "JIOINDIACENTRAL:20220512T110738Z:7ca25605-4f73-47eb-961e-e9ccfe5cd0da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:26:45 GMT" + "Thu, 12 May 2022 11:07:38 GMT" ], "Content-Length": [ "21" @@ -826,19 +766,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/55685aaa-bf9e-4795-922d-5927fdc67b07?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTU2ODVhYWEtYmY5ZS00Nzk1LTkyMmQtNTkyN2ZkYzY3YjA3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/11355092-7b4e-4a9d-bfe1-27cd8c196995?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTEzNTUwOTItN2I0ZS00YTlkLWJmZTEtMjdjZDhjMTk2OTk1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5f8392d-f0da-4c07-9d75-4b8caa1b093b" + "fad38085-96de-467e-a11b-169c4027adef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -858,22 +798,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "bb4e4894-ec8d-4f5c-9ed9-e1930f6b131a" + "f67412e5-ef6d-4b1b-a1ee-334fc40e914b" ], "x-ms-correlation-request-id": [ - "bb4e4894-ec8d-4f5c-9ed9-e1930f6b131a" + "f67412e5-ef6d-4b1b-a1ee-334fc40e914b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142716Z:bb4e4894-ec8d-4f5c-9ed9-e1930f6b131a" + "JIOINDIACENTRAL:20220512T110808Z:f67412e5-ef6d-4b1b-a1ee-334fc40e914b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:15 GMT" + "Thu, 12 May 2022 11:08:08 GMT" ], "Content-Length": [ "22" @@ -886,22 +826,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d6c9e88-2b31-4a49-a6d6-814998c0e069" + "30f9bef8-b2bf-4b52-852c-b7a65531fee6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -921,22 +861,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11979" ], "x-ms-request-id": [ - "5e36c09e-c1bb-4ffd-b14e-69070153316a" + "f871ea29-6114-43b0-a8d8-7acacbff4555" ], "x-ms-correlation-request-id": [ - "5e36c09e-c1bb-4ffd-b14e-69070153316a" + "f871ea29-6114-43b0-a8d8-7acacbff4555" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142717Z:5e36c09e-c1bb-4ffd-b14e-69070153316a" + "JIOINDIACENTRAL:20220512T110812Z:f871ea29-6114-43b0-a8d8-7acacbff4555" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:16 GMT" + "Thu, 12 May 2022 11:08:12 GMT" ], "Content-Length": [ "209" @@ -945,23 +885,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Definition with ID [cf31c3a1-20f5-4ff1-bdd0-5e0782617e22].\\r\\nActivityId: 7d6c9e88-2b31-4a49-a6d6-814998c0e069, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Definition with ID [cf31c3a1-20f5-4ff1-bdd0-5e0782617e22].\\r\\nActivityId: 30f9bef8-b2bf-4b52-852c-b7a65531fee6, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d6c9e88-2b31-4a49-a6d6-814998c0e069" + "30f9bef8-b2bf-4b52-852c-b7a65531fee6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -981,22 +921,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11977" ], "x-ms-request-id": [ - "d69242c6-c5b1-4d04-8c80-7b1aee24049a" + "49538855-72e5-4209-92ac-8ae5fc76fa8a" ], "x-ms-correlation-request-id": [ - "d69242c6-c5b1-4d04-8c80-7b1aee24049a" + "49538855-72e5-4209-92ac-8ae5fc76fa8a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142749Z:d69242c6-c5b1-4d04-8c80-7b1aee24049a" + "JIOINDIACENTRAL:20220512T110845Z:49538855-72e5-4209-92ac-8ae5fc76fa8a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:48 GMT" + "Thu, 12 May 2022 11:08:45 GMT" ], "Content-Length": [ "685" @@ -1009,22 +949,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d210062-d944-4d4e-bb65-d776aad5a8d0" + "05b624ae-b2db-496b-aa0b-f988ecfba0ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1044,22 +984,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11984" ], "x-ms-request-id": [ - "85216b59-e912-4e92-a292-f1caf6b05f28" + "9709ca9d-4654-414f-a41f-6903cc647acf" ], "x-ms-correlation-request-id": [ - "85216b59-e912-4e92-a292-f1caf6b05f28" + "9709ca9d-4654-414f-a41f-6903cc647acf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143000Z:85216b59-e912-4e92-a292-f1caf6b05f28" + "JIOINDIACENTRAL:20220512T111108Z:9709ca9d-4654-414f-a41f-6903cc647acf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:30:00 GMT" + "Thu, 12 May 2022 11:11:08 GMT" ], "Content-Length": [ "685" @@ -1072,22 +1012,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5cd3683-2540-49ae-afaf-c2e89c7852aa" + "9367b524-43aa-4b28-a74e-848eea2d6793" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1107,22 +1047,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11998" ], "x-ms-request-id": [ - "be9f9e10-29c6-4b35-b385-9d7cca4c1363" + "61142456-a824-4a03-a799-94c5079860f9" ], "x-ms-correlation-request-id": [ - "be9f9e10-29c6-4b35-b385-9d7cca4c1363" + "61142456-a824-4a03-a799-94c5079860f9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143001Z:be9f9e10-29c6-4b35-b385-9d7cca4c1363" + "JIOINDIACENTRAL:20220512T111111Z:61142456-a824-4a03-a799-94c5079860f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:30:00 GMT" + "Thu, 12 May 2022 11:11:11 GMT" ], "Content-Length": [ "685" @@ -1135,19 +1075,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5cd3683-2540-49ae-afaf-c2e89c7852aa" + "9367b524-43aa-4b28-a74e-848eea2d6793" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1167,22 +1107,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11996" ], "x-ms-request-id": [ - "9ae59382-a158-45d4-9aad-3891a8d3f786" + "89867337-2eba-4a41-934a-14dd7a1392c8" ], "x-ms-correlation-request-id": [ - "9ae59382-a158-45d4-9aad-3891a8d3f786" + "89867337-2eba-4a41-934a-14dd7a1392c8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143032Z:9ae59382-a158-45d4-9aad-3891a8d3f786" + "JIOINDIACENTRAL:20220512T111146Z:89867337-2eba-4a41-934a-14dd7a1392c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:30:32 GMT" + "Thu, 12 May 2022 11:11:46 GMT" ], "Content-Length": [ "700" @@ -1195,22 +1135,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e934c05a-b170-41ea-93c7-f843d498ea0d" + "ad584cdc-f9fb-43de-a660-ea8a3d0fc8dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1230,22 +1170,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11982" ], "x-ms-request-id": [ - "8f676d07-6504-43d1-8045-f974cd0f91f7" + "aec118db-df74-4377-9e42-ea9e9604fe17" ], "x-ms-correlation-request-id": [ - "8f676d07-6504-43d1-8045-f974cd0f91f7" + "aec118db-df74-4377-9e42-ea9e9604fe17" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143033Z:8f676d07-6504-43d1-8045-f974cd0f91f7" + "JIOINDIACENTRAL:20220512T111148Z:aec118db-df74-4377-9e42-ea9e9604fe17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:30:33 GMT" + "Thu, 12 May 2022 11:11:47 GMT" ], "Content-Length": [ "700" @@ -1258,19 +1198,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e934c05a-b170-41ea-93c7-f843d498ea0d" + "ad584cdc-f9fb-43de-a660-ea8a3d0fc8dd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1290,22 +1230,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11980" ], "x-ms-request-id": [ - "6790b4bc-721b-4726-8e55-b9e9d2db1d0d" + "6f3d8f70-d5ee-4c25-9fe2-cdf0393f2220" ], "x-ms-correlation-request-id": [ - "6790b4bc-721b-4726-8e55-b9e9d2db1d0d" + "6f3d8f70-d5ee-4c25-9fe2-cdf0393f2220" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143104Z:6790b4bc-721b-4726-8e55-b9e9d2db1d0d" + "JIOINDIACENTRAL:20220512T111221Z:6f3d8f70-d5ee-4c25-9fe2-cdf0393f2220" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:04 GMT" + "Thu, 12 May 2022 11:12:20 GMT" ], "Content-Length": [ "700" @@ -1318,22 +1258,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ba6d7db-a8a4-445c-a986-af5b917b4352" + "4f8e6840-586c-4ae3-add5-f8c559f5cff9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1353,22 +1293,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11999" ], "x-ms-request-id": [ - "4cba533f-9c38-465a-8d1f-035b72a924dd" + "2e51d3e3-36ca-42b6-9095-35bb593611ad" ], "x-ms-correlation-request-id": [ - "4cba533f-9c38-465a-8d1f-035b72a924dd" + "2e51d3e3-36ca-42b6-9095-35bb593611ad" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143105Z:4cba533f-9c38-465a-8d1f-035b72a924dd" + "CENTRALINDIA:20220512T111223Z:2e51d3e3-36ca-42b6-9095-35bb593611ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:04 GMT" + "Thu, 12 May 2022 11:12:23 GMT" ], "Content-Length": [ "700" @@ -1381,19 +1321,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ba6d7db-a8a4-445c-a986-af5b917b4352" + "4f8e6840-586c-4ae3-add5-f8c559f5cff9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1413,22 +1353,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11997" ], "x-ms-request-id": [ - "ff928fdb-3986-47a0-8ef9-01444dea3f62" + "ea95dde3-8652-42b7-8bee-f14666e27309" ], "x-ms-correlation-request-id": [ - "ff928fdb-3986-47a0-8ef9-01444dea3f62" + "ea95dde3-8652-42b7-8bee-f14666e27309" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143136Z:ff928fdb-3986-47a0-8ef9-01444dea3f62" + "CENTRALINDIA:20220512T111256Z:ea95dde3-8652-42b7-8bee-f14666e27309" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:36 GMT" + "Thu, 12 May 2022 11:12:55 GMT" ], "Content-Length": [ "686" @@ -1441,22 +1381,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleName\": \"roleDefinitionName\",\r\n \"type\": \"CustomRole\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"dataActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/items/read\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7d6c9e88-2b31-4a49-a6d6-814998c0e069" + "30f9bef8-b2bf-4b52-852c-b7a65531fee6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1473,13 +1413,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/47f424cd-2b36-434f-b32f-cee5c40eba41?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/37cfcd91-0fcb-4a81-a730-a915b98f5ca3?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47f424cd-2b36-434f-b32f-cee5c40eba41?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37cfcd91-0fcb-4a81-a730-a915b98f5ca3?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "47f424cd-2b36-434f-b32f-cee5c40eba41" + "37cfcd91-0fcb-4a81-a730-a915b98f5ca3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,19 +1431,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "8638cb3f-10ba-47c3-aa64-05f68607498d" + "8ac79568-edc0-45bf-98a7-df4c07f0100a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142718Z:8638cb3f-10ba-47c3-aa64-05f68607498d" + "JIOINDIACENTRAL:20220512T110813Z:8ac79568-edc0-45bf-98a7-df4c07f0100a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:17 GMT" + "Thu, 12 May 2022 11:08:13 GMT" ], "Content-Length": [ "21" @@ -1516,22 +1456,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleName\": \"roleDefinitionName3\",\r\n \"type\": \"CustomRole\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"dataActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/items/replace\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c5cd3683-2540-49ae-afaf-c2e89c7852aa" + "9367b524-43aa-4b28-a74e-848eea2d6793" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1548,13 +1488,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/b25c207c-17aa-4006-8ff7-ab2c43b1c83d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/3f979fbf-5591-4455-b82a-5fa9b6895f53?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b25c207c-17aa-4006-8ff7-ab2c43b1c83d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3f979fbf-5591-4455-b82a-5fa9b6895f53?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b25c207c-17aa-4006-8ff7-ab2c43b1c83d" + "3f979fbf-5591-4455-b82a-5fa9b6895f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1566,19 +1506,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "d947c8b7-d873-4d78-953e-f31d21adc70c" + "b66f65c8-bc0d-4f9a-aaf4-a07e2090ca7c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143002Z:d947c8b7-d873-4d78-953e-f31d21adc70c" + "JIOINDIACENTRAL:20220512T111114Z:b66f65c8-bc0d-4f9a-aaf4-a07e2090ca7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:30:01 GMT" + "Thu, 12 May 2022 11:11:14 GMT" ], "Content-Length": [ "21" @@ -1591,22 +1531,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleName\": \"roleDefinitionName4\",\r\n \"type\": \"CustomRole\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"dataActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/items/replace\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e934c05a-b170-41ea-93c7-f843d498ea0d" + "ad584cdc-f9fb-43de-a660-ea8a3d0fc8dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1623,13 +1563,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/99752070-c38c-434c-92c8-c2536d13846d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/d48e0296-9d13-41d4-be5b-c10c6c22049b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/99752070-c38c-434c-92c8-c2536d13846d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d48e0296-9d13-41d4-be5b-c10c6c22049b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "99752070-c38c-434c-92c8-c2536d13846d" + "d48e0296-9d13-41d4-be5b-c10c6c22049b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,19 +1581,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-correlation-request-id": [ - "64db9452-6971-4a7e-89af-b3da1a3d1b71" + "6654333f-fdcf-4cc7-865c-116f65280d42" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143034Z:64db9452-6971-4a7e-89af-b3da1a3d1b71" + "JIOINDIACENTRAL:20220512T111149Z:6654333f-fdcf-4cc7-865c-116f65280d42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:30:33 GMT" + "Thu, 12 May 2022 11:11:48 GMT" ], "Content-Length": [ "21" @@ -1666,22 +1606,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleName\": \"roleDefinitionName5\",\r\n \"type\": \"CustomRole\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"dataActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/items/read\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6ba6d7db-a8a4-445c-a986-af5b917b4352" + "4f8e6840-586c-4ae3-add5-f8c559f5cff9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1698,13 +1638,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/bac95ff5-d0b1-4159-902d-09038d80a8c2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/a901d586-fc4d-4485-ad64-b7d97b7e56b4?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bac95ff5-d0b1-4159-902d-09038d80a8c2?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a901d586-fc4d-4485-ad64-b7d97b7e56b4?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "bac95ff5-d0b1-4159-902d-09038d80a8c2" + "a901d586-fc4d-4485-ad64-b7d97b7e56b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,19 +1656,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-correlation-request-id": [ - "98e6031f-7bf2-441c-86a0-0a1b229caf24" + "be55746a-3308-4320-84ff-ab1d1d5297fe" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143106Z:98e6031f-7bf2-441c-86a0-0a1b229caf24" + "CENTRALINDIA:20220512T111225Z:be55746a-3308-4320-84ff-ab1d1d5297fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:05 GMT" + "Thu, 12 May 2022 11:12:25 GMT" ], "Content-Length": [ "21" @@ -1741,19 +1681,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47f424cd-2b36-434f-b32f-cee5c40eba41?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDdmNDI0Y2QtMmIzNi00MzRmLWIzMmYtY2VlNWM0MGViYTQxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37cfcd91-0fcb-4a81-a730-a915b98f5ca3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzdjZmNkOTEtMGZjYi00YTgxLWE3MzAtYTkxNWI5OGY1Y2EzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d6c9e88-2b31-4a49-a6d6-814998c0e069" + "30f9bef8-b2bf-4b52-852c-b7a65531fee6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1773,22 +1713,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11978" ], "x-ms-request-id": [ - "b8bbd9e9-6359-4de5-a533-5062fd8f490c" + "2c477159-21b5-45e9-a169-122c3dffae90" ], "x-ms-correlation-request-id": [ - "b8bbd9e9-6359-4de5-a533-5062fd8f490c" + "2c477159-21b5-45e9-a169-122c3dffae90" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142748Z:b8bbd9e9-6359-4de5-a533-5062fd8f490c" + "JIOINDIACENTRAL:20220512T110844Z:2c477159-21b5-45e9-a169-122c3dffae90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:48 GMT" + "Thu, 12 May 2022 11:08:44 GMT" ], "Content-Length": [ "22" @@ -1801,22 +1741,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5328b5c3-38bc-48ec-b6ac-58193ddbce76" + "4f7fc072-7016-4553-9e18-6731b8409662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1836,22 +1776,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11978" ], "x-ms-request-id": [ - "f22dde7f-aa0d-4e2d-99cc-b4dc05fd1312" + "1d13dd70-4471-4a67-a67c-300951914c08" ], "x-ms-correlation-request-id": [ - "f22dde7f-aa0d-4e2d-99cc-b4dc05fd1312" + "1d13dd70-4471-4a67-a67c-300951914c08" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142750Z:f22dde7f-aa0d-4e2d-99cc-b4dc05fd1312" + "JIOINDIACENTRAL:20220512T110847Z:1d13dd70-4471-4a67-a67c-300951914c08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:49 GMT" + "Thu, 12 May 2022 11:08:47 GMT" ], "Content-Length": [ "209" @@ -1860,23 +1800,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Definition with ID [a36e56a5-9afc-4819-aa78-3a8083a3ee74].\\r\\nActivityId: 5328b5c3-38bc-48ec-b6ac-58193ddbce76, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Definition with ID [a36e56a5-9afc-4819-aa78-3a8083a3ee74].\\r\\nActivityId: 4f7fc072-7016-4553-9e18-6731b8409662, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5328b5c3-38bc-48ec-b6ac-58193ddbce76" + "4f7fc072-7016-4553-9e18-6731b8409662" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1896,22 +1836,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11976" ], "x-ms-request-id": [ - "f776bf18-9219-4d82-82e0-94cd75a8fe1c" + "1aee9596-e51e-491c-93ba-6539866e281d" ], "x-ms-correlation-request-id": [ - "f776bf18-9219-4d82-82e0-94cd75a8fe1c" + "1aee9596-e51e-491c-93ba-6539866e281d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142821Z:f776bf18-9219-4d82-82e0-94cd75a8fe1c" + "JIOINDIACENTRAL:20220512T110921Z:1aee9596-e51e-491c-93ba-6539866e281d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:21 GMT" + "Thu, 12 May 2022 11:09:21 GMT" ], "Content-Length": [ "699" @@ -1924,22 +1864,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleName\": \"roleDefinitionName2\",\r\n \"type\": \"CustomRole\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"dataActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/items/create\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5328b5c3-38bc-48ec-b6ac-58193ddbce76" + "4f7fc072-7016-4553-9e18-6731b8409662" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1956,13 +1896,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74/operationResults/609ec434-80c8-4376-83c6-b6cbf067eb87?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74/operationResults/ff007efd-fbf3-4f0b-b3c1-f6372353dcec?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/609ec434-80c8-4376-83c6-b6cbf067eb87?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ff007efd-fbf3-4f0b-b3c1-f6372353dcec?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "609ec434-80c8-4376-83c6-b6cbf067eb87" + "ff007efd-fbf3-4f0b-b3c1-f6372353dcec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,16 +1917,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "7494dd54-aaff-4d8a-88ca-13c94f64319d" + "e7f65403-cb9e-4ee4-99d5-5981d15c2a00" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142751Z:7494dd54-aaff-4d8a-88ca-13c94f64319d" + "JIOINDIACENTRAL:20220512T110850Z:e7f65403-cb9e-4ee4-99d5-5981d15c2a00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:27:50 GMT" + "Thu, 12 May 2022 11:08:50 GMT" ], "Content-Length": [ "21" @@ -1999,19 +1939,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/609ec434-80c8-4376-83c6-b6cbf067eb87?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjA5ZWM0MzQtODBjOC00Mzc2LTgzYzYtYjZjYmYwNjdlYjg3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ff007efd-fbf3-4f0b-b3c1-f6372353dcec?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmYwMDdlZmQtZmJmMy00ZjBiLWIzYzEtZjYzNzIzNTNkY2VjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5328b5c3-38bc-48ec-b6ac-58193ddbce76" + "4f7fc072-7016-4553-9e18-6731b8409662" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2031,22 +1971,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11977" ], "x-ms-request-id": [ - "108cee9f-ce74-4b22-8398-871c44b52dad" + "fcc9fa48-b63e-416b-8e87-1a7d00e389ef" ], "x-ms-correlation-request-id": [ - "108cee9f-ce74-4b22-8398-871c44b52dad" + "fcc9fa48-b63e-416b-8e87-1a7d00e389ef" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142821Z:108cee9f-ce74-4b22-8398-871c44b52dad" + "JIOINDIACENTRAL:20220512T110920Z:fcc9fa48-b63e-416b-8e87-1a7d00e389ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:20 GMT" + "Thu, 12 May 2022 11:09:20 GMT" ], "Content-Length": [ "22" @@ -2059,22 +1999,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29d7d02b-21d3-4ebb-bdd3-8882a505f8ae" + "e22ce3aa-ce23-403a-a3dd-7420d79baa15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2094,22 +2034,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11988" ], "x-ms-request-id": [ - "c1bbf504-f307-40f7-99b6-5ca64747eb89" + "8bb7ea2d-025b-4280-afc9-6e352b5891c2" ], "x-ms-correlation-request-id": [ - "c1bbf504-f307-40f7-99b6-5ca64747eb89" + "8bb7ea2d-025b-4280-afc9-6e352b5891c2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142822Z:c1bbf504-f307-40f7-99b6-5ca64747eb89" + "JIOINDIACENTRAL:20220512T110922Z:8bb7ea2d-025b-4280-afc9-6e352b5891c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:21 GMT" + "Thu, 12 May 2022 11:09:22 GMT" ], "Content-Length": [ "3125" @@ -2122,22 +2062,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "276d0333-9b13-42f1-957d-15314bd0789b" + "93183503-f3eb-4ec7-aafa-13244697ff3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2157,22 +2097,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-request-id": [ - "4c493d8f-6d39-48f1-8775-8fd17d36ae95" + "3c4f2e92-5a0b-4977-8989-538037e93f85" ], "x-ms-correlation-request-id": [ - "4c493d8f-6d39-48f1-8775-8fd17d36ae95" + "3c4f2e92-5a0b-4977-8989-538037e93f85" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143000Z:4c493d8f-6d39-48f1-8775-8fd17d36ae95" + "JIOINDIACENTRAL:20220512T111107Z:3c4f2e92-5a0b-4977-8989-538037e93f85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:29:59 GMT" + "Thu, 12 May 2022 11:11:07 GMT" ], "Content-Length": [ "3125" @@ -2185,22 +2125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "457c8c3d-8705-49a6-8f27-40e1886fbea0" + "808256ae-b620-4efe-9036-76b9c9fefec6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2220,22 +2160,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11999" ], "x-ms-request-id": [ - "4d135573-be42-4a09-b30d-f6571338bd47" + "0f888460-5014-4e57-8bca-551562f1aff4" ], "x-ms-correlation-request-id": [ - "4d135573-be42-4a09-b30d-f6571338bd47" + "0f888460-5014-4e57-8bca-551562f1aff4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143137Z:4d135573-be42-4a09-b30d-f6571338bd47" + "CENTRALINDIA:20220512T111257Z:0f888460-5014-4e57-8bca-551562f1aff4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:36 GMT" + "Thu, 12 May 2022 11:12:57 GMT" ], "Content-Length": [ "3126" @@ -2248,22 +2188,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "591e218d-d39a-453a-a4b6-11703323c8a5" + "dd9cc887-1912-4c4c-9761-5e66e52a6019" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2283,22 +2223,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11995" ], "x-ms-request-id": [ - "a6b3a8ef-b83a-4665-90dd-e58a8b9168ec" + "82f6e744-c090-493e-9d1b-6c114fea4ea3" ], "x-ms-correlation-request-id": [ - "a6b3a8ef-b83a-4665-90dd-e58a8b9168ec" + "82f6e744-c090-493e-9d1b-6c114fea4ea3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143345Z:a6b3a8ef-b83a-4665-90dd-e58a8b9168ec" + "CENTRALINDIA:20220512T111516Z:82f6e744-c090-493e-9d1b-6c114fea4ea3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:45 GMT" + "Thu, 12 May 2022 11:15:15 GMT" ], "Content-Length": [ "3126" @@ -2311,22 +2251,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29d7d02b-21d3-4ebb-bdd3-8882a505f8ae" + "e22ce3aa-ce23-403a-a3dd-7420d79baa15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2346,22 +2286,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11987" ], "x-ms-request-id": [ - "efaebec7-f862-459b-bb3d-4c245f134bdf" + "edbc8c42-3bfe-4a04-abce-f21c989bce20" ], "x-ms-correlation-request-id": [ - "efaebec7-f862-459b-bb3d-4c245f134bdf" + "edbc8c42-3bfe-4a04-abce-f21c989bce20" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142822Z:efaebec7-f862-459b-bb3d-4c245f134bdf" + "JIOINDIACENTRAL:20220512T110923Z:edbc8c42-3bfe-4a04-abce-f21c989bce20" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:22 GMT" + "Thu, 12 May 2022 11:09:22 GMT" ], "Content-Length": [ "209" @@ -2370,23 +2310,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Assignment with ID [a2ccaf94-3c39-4728-b892-95edeef0e754].\\r\\nActivityId: 29d7d02b-21d3-4ebb-bdd3-8882a505f8ae, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Assignment with ID [a2ccaf94-3c39-4728-b892-95edeef0e754].\\r\\nActivityId: e22ce3aa-ce23-403a-a3dd-7420d79baa15, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29d7d02b-21d3-4ebb-bdd3-8882a505f8ae" + "e22ce3aa-ce23-403a-a3dd-7420d79baa15" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2406,22 +2346,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11985" ], "x-ms-request-id": [ - "da504b0a-5024-49af-bab4-6bf7246c7dc6" + "61084e51-8eb7-4793-9dd3-80cc16bbff56" ], "x-ms-correlation-request-id": [ - "da504b0a-5024-49af-bab4-6bf7246c7dc6" + "61084e51-8eb7-4793-9dd3-80cc16bbff56" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142854Z:da504b0a-5024-49af-bab4-6bf7246c7dc6" + "JIOINDIACENTRAL:20220512T110955Z:61084e51-8eb7-4793-9dd3-80cc16bbff56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:54 GMT" + "Thu, 12 May 2022 11:09:55 GMT" ], "Content-Length": [ "777" @@ -2434,22 +2374,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ab105e5-fd51-4ad7-a430-92736f254072" + "4edd0817-6b61-4108-a047-f59cc82e35b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2469,22 +2409,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11976" ], "x-ms-request-id": [ - "56232892-557e-4cea-8b86-299009fe9b01" + "4380c119-1d70-4679-8b60-72d9be66cb44" ], "x-ms-correlation-request-id": [ - "56232892-557e-4cea-8b86-299009fe9b01" + "4380c119-1d70-4679-8b60-72d9be66cb44" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143001Z:56232892-557e-4cea-8b86-299009fe9b01" + "JIOINDIACENTRAL:20220512T111110Z:4380c119-1d70-4679-8b60-72d9be66cb44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:30:00 GMT" + "Thu, 12 May 2022 11:11:10 GMT" ], "Content-Length": [ "777" @@ -2497,22 +2437,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "457c8c3d-8705-49a6-8f27-40e1886fbea0" + "808256ae-b620-4efe-9036-76b9c9fefec6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2532,22 +2472,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11998" ], "x-ms-request-id": [ - "fe784295-9983-4211-b02f-443bd5d8d27a" + "c001d775-e1a6-4df9-8509-bd6cdc4457da" ], "x-ms-correlation-request-id": [ - "fe784295-9983-4211-b02f-443bd5d8d27a" + "c001d775-e1a6-4df9-8509-bd6cdc4457da" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143137Z:fe784295-9983-4211-b02f-443bd5d8d27a" + "CENTRALINDIA:20220512T111258Z:c001d775-e1a6-4df9-8509-bd6cdc4457da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:37 GMT" + "Thu, 12 May 2022 11:12:58 GMT" ], "Content-Length": [ "777" @@ -2560,19 +2500,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "457c8c3d-8705-49a6-8f27-40e1886fbea0" + "808256ae-b620-4efe-9036-76b9c9fefec6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2592,22 +2532,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11996" ], "x-ms-request-id": [ - "19e1a0de-c68b-4ce2-875e-0c7d2def0713" + "ed9772e7-89de-4c3e-baa8-35d953bb337f" ], "x-ms-correlation-request-id": [ - "19e1a0de-c68b-4ce2-875e-0c7d2def0713" + "ed9772e7-89de-4c3e-baa8-35d953bb337f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143209Z:19e1a0de-c68b-4ce2-875e-0c7d2def0713" + "CENTRALINDIA:20220512T111331Z:ed9772e7-89de-4c3e-baa8-35d953bb337f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:32:08 GMT" + "Thu, 12 May 2022 11:13:31 GMT" ], "Content-Length": [ "777" @@ -2620,22 +2560,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcae3dd3-5b87-42a7-a633-25bc6b22eb1c" + "73da8099-5193-483f-aa5c-aee1e2b0c9be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2655,22 +2595,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11999" ], "x-ms-request-id": [ - "c29a6b17-86ab-401a-a6cc-50e21203433e" + "2ca5d876-8851-4dc5-839a-968b12e7df18" ], "x-ms-correlation-request-id": [ - "c29a6b17-86ab-401a-a6cc-50e21203433e" + "2ca5d876-8851-4dc5-839a-968b12e7df18" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143209Z:c29a6b17-86ab-401a-a6cc-50e21203433e" + "CENTRALINDIA:20220512T111333Z:2ca5d876-8851-4dc5-839a-968b12e7df18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:32:09 GMT" + "Thu, 12 May 2022 11:13:32 GMT" ], "Content-Length": [ "777" @@ -2683,19 +2623,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcae3dd3-5b87-42a7-a633-25bc6b22eb1c" + "73da8099-5193-483f-aa5c-aee1e2b0c9be" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2715,22 +2655,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11997" ], "x-ms-request-id": [ - "e55f0ef0-c784-45c5-9bb6-9defd31b8345" + "90de6d59-4451-4297-9eb1-8005df7eaff1" ], "x-ms-correlation-request-id": [ - "e55f0ef0-c784-45c5-9bb6-9defd31b8345" + "90de6d59-4451-4297-9eb1-8005df7eaff1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143241Z:e55f0ef0-c784-45c5-9bb6-9defd31b8345" + "CENTRALINDIA:20220512T111406Z:90de6d59-4451-4297-9eb1-8005df7eaff1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:32:41 GMT" + "Thu, 12 May 2022 11:14:06 GMT" ], "Content-Length": [ "777" @@ -2743,22 +2683,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\",\r\n \"principalId\": \"ed4c2395-a18c-4018-afb3-6e521e7534d2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "29d7d02b-21d3-4ebb-bdd3-8882a505f8ae" + "e22ce3aa-ce23-403a-a3dd-7420d79baa15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2775,13 +2715,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/1ee72bfd-3f39-42bb-9e01-49f33fd0b0a8?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/f397c894-5b8a-4f93-ad75-0b17fea9126a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1ee72bfd-3f39-42bb-9e01-49f33fd0b0a8?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f397c894-5b8a-4f93-ad75-0b17fea9126a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1ee72bfd-3f39-42bb-9e01-49f33fd0b0a8" + "f397c894-5b8a-4f93-ad75-0b17fea9126a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2793,19 +2733,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "0669e253-8b0d-4189-b7a3-af6f934dfb06" + "7805d100-c99d-4e2d-8575-d5d59b6ea361" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142823Z:0669e253-8b0d-4189-b7a3-af6f934dfb06" + "JIOINDIACENTRAL:20220512T110924Z:7805d100-c99d-4e2d-8575-d5d59b6ea361" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:22 GMT" + "Thu, 12 May 2022 11:09:24 GMT" ], "Content-Length": [ "21" @@ -2818,22 +2758,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\",\r\n \"principalId\": \"ed4c2395-a18c-4018-afb3-6e521e7534d2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "457c8c3d-8705-49a6-8f27-40e1886fbea0" + "808256ae-b620-4efe-9036-76b9c9fefec6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2850,13 +2790,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/a6ee51ba-fccc-46e9-80c4-d727536110a9?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/d35e8145-a05f-4c58-8cbc-bd1476c5e7d5?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6ee51ba-fccc-46e9-80c4-d727536110a9?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d35e8145-a05f-4c58-8cbc-bd1476c5e7d5?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a6ee51ba-fccc-46e9-80c4-d727536110a9" + "d35e8145-a05f-4c58-8cbc-bd1476c5e7d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2868,19 +2808,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "f8d1ea81-f73d-4ba5-8b80-6e06927135d4" + "90f40fb8-9d31-4f2c-b051-768ed0f9b85b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143138Z:f8d1ea81-f73d-4ba5-8b80-6e06927135d4" + "CENTRALINDIA:20220512T111300Z:90f40fb8-9d31-4f2c-b051-768ed0f9b85b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:37 GMT" + "Thu, 12 May 2022 11:12:59 GMT" ], "Content-Length": [ "21" @@ -2893,22 +2833,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\",\r\n \"principalId\": \"ed4c2395-a18c-4018-afb3-6e521e7534d2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fcae3dd3-5b87-42a7-a633-25bc6b22eb1c" + "73da8099-5193-483f-aa5c-aee1e2b0c9be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2925,13 +2865,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/e6574c38-1f78-4fa0-91a7-66ad429478da?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/9142a571-c3a1-4073-8ed4-9cc0c80e7b4d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e6574c38-1f78-4fa0-91a7-66ad429478da?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9142a571-c3a1-4073-8ed4-9cc0c80e7b4d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e6574c38-1f78-4fa0-91a7-66ad429478da" + "9142a571-c3a1-4073-8ed4-9cc0c80e7b4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2943,19 +2883,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1199" ], "x-ms-correlation-request-id": [ - "8eb1376d-7f14-4b21-b069-adb945d1d8aa" + "dcf8b0c8-cd98-4360-a63d-06ccb52dfe61" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143210Z:8eb1376d-7f14-4b21-b069-adb945d1d8aa" + "CENTRALINDIA:20220512T111335Z:dcf8b0c8-cd98-4360-a63d-06ccb52dfe61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:32:10 GMT" + "Thu, 12 May 2022 11:13:35 GMT" ], "Content-Length": [ "21" @@ -2968,19 +2908,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1ee72bfd-3f39-42bb-9e01-49f33fd0b0a8?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWVlNzJiZmQtM2YzOS00MmJiLTllMDEtNDlmMzNmZDBiMGE4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f397c894-5b8a-4f93-ad75-0b17fea9126a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjM5N2M4OTQtNWI4YS00ZjkzLWFkNzUtMGIxN2ZlYTkxMjZhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29d7d02b-21d3-4ebb-bdd3-8882a505f8ae" + "e22ce3aa-ce23-403a-a3dd-7420d79baa15" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3000,22 +2940,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11986" ], "x-ms-request-id": [ - "79204e73-9757-4f57-938e-aee8f347fa46" + "d01f1fbb-321c-48d0-a927-9d6adc47c425" ], "x-ms-correlation-request-id": [ - "79204e73-9757-4f57-938e-aee8f347fa46" + "d01f1fbb-321c-48d0-a927-9d6adc47c425" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142854Z:79204e73-9757-4f57-938e-aee8f347fa46" + "JIOINDIACENTRAL:20220512T110955Z:d01f1fbb-321c-48d0-a927-9d6adc47c425" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:54 GMT" + "Thu, 12 May 2022 11:09:54 GMT" ], "Content-Length": [ "22" @@ -3028,22 +2968,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce35c267-37da-4ac2-9313-89c167dce67a" + "374e4158-c73c-45c8-91ba-5c1f8b554498" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3063,22 +3003,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11984" ], "x-ms-request-id": [ - "facac21b-5893-4e15-a281-d3d4d2190e62" + "e25f5df2-bf05-41b2-8dad-4d87239b6327" ], "x-ms-correlation-request-id": [ - "facac21b-5893-4e15-a281-d3d4d2190e62" + "e25f5df2-bf05-41b2-8dad-4d87239b6327" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142855Z:facac21b-5893-4e15-a281-d3d4d2190e62" + "JIOINDIACENTRAL:20220512T110956Z:e25f5df2-bf05-41b2-8dad-4d87239b6327" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:55 GMT" + "Thu, 12 May 2022 11:09:55 GMT" ], "Content-Length": [ "209" @@ -3087,23 +3027,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Assignment with ID [8f3f78c4-a8df-4088-9cbb-a3947e27076b].\\r\\nActivityId: ce35c267-37da-4ac2-9313-89c167dce67a, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Assignment with ID [8f3f78c4-a8df-4088-9cbb-a3947e27076b].\\r\\nActivityId: 374e4158-c73c-45c8-91ba-5c1f8b554498, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce35c267-37da-4ac2-9313-89c167dce67a" + "374e4158-c73c-45c8-91ba-5c1f8b554498" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3123,22 +3063,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11984" ], "x-ms-request-id": [ - "46054a8b-a614-46c1-ac1e-9eaa363cf32b" + "be0a254c-21a5-4c3a-a15b-c2883630e0c3" ], "x-ms-correlation-request-id": [ - "46054a8b-a614-46c1-ac1e-9eaa363cf32b" + "be0a254c-21a5-4c3a-a15b-c2883630e0c3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142927Z:46054a8b-a614-46c1-ac1e-9eaa363cf32b" + "JIOINDIACENTRAL:20220512T111029Z:be0a254c-21a5-4c3a-a15b-c2883630e0c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:29:26 GMT" + "Thu, 12 May 2022 11:10:28 GMT" ], "Content-Length": [ "777" @@ -3151,22 +3091,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26f2f94b-7fb6-4237-9fb0-85ce94584ac0" + "7228e527-221b-46b3-bd2d-eda5cfcb2e1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3186,22 +3126,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11979" ], "x-ms-request-id": [ - "7e79401d-3513-47ec-b3f3-f513db14cfa3" + "56d14921-6bdc-4686-875a-a789a61f1daa" ], "x-ms-correlation-request-id": [ - "7e79401d-3513-47ec-b3f3-f513db14cfa3" + "56d14921-6bdc-4686-875a-a789a61f1daa" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143241Z:7e79401d-3513-47ec-b3f3-f513db14cfa3" + "JIOINDIACENTRAL:20220512T111408Z:56d14921-6bdc-4686-875a-a789a61f1daa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:32:41 GMT" + "Thu, 12 May 2022 11:14:08 GMT" ], "Content-Length": [ "777" @@ -3214,19 +3154,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26f2f94b-7fb6-4237-9fb0-85ce94584ac0" + "7228e527-221b-46b3-bd2d-eda5cfcb2e1c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3246,22 +3186,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11977" ], "x-ms-request-id": [ - "767f8a5e-7846-449d-b115-3906f2a19962" + "8e9a2a65-d0e6-4cc3-ac67-5596211fd1df" ], "x-ms-correlation-request-id": [ - "767f8a5e-7846-449d-b115-3906f2a19962" + "8e9a2a65-d0e6-4cc3-ac67-5596211fd1df" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143313Z:767f8a5e-7846-449d-b115-3906f2a19962" + "JIOINDIACENTRAL:20220512T111441Z:8e9a2a65-d0e6-4cc3-ac67-5596211fd1df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:13 GMT" + "Thu, 12 May 2022 11:14:40 GMT" ], "Content-Length": [ "777" @@ -3274,22 +3214,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f61697-6625-41f2-bee1-0879ffad78ab" + "e1e5040d-6368-4c72-bffa-eb5a8281c8ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3309,22 +3249,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11982" ], "x-ms-request-id": [ - "a1cb098f-9d49-4c0c-bbf3-4b7fb7ce2640" + "368efe69-a5f9-480e-9bb2-49d1f7c928a9" ], "x-ms-correlation-request-id": [ - "a1cb098f-9d49-4c0c-bbf3-4b7fb7ce2640" + "368efe69-a5f9-480e-9bb2-49d1f7c928a9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143313Z:a1cb098f-9d49-4c0c-bbf3-4b7fb7ce2640" + "JIOINDIACENTRAL:20220512T111442Z:368efe69-a5f9-480e-9bb2-49d1f7c928a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:13 GMT" + "Thu, 12 May 2022 11:14:41 GMT" ], "Content-Length": [ "777" @@ -3337,19 +3277,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f61697-6625-41f2-bee1-0879ffad78ab" + "e1e5040d-6368-4c72-bffa-eb5a8281c8ad" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3369,22 +3309,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11982" ], "x-ms-request-id": [ - "5d7ed585-d757-42c8-a637-1983aa957c76" + "56379ae4-f688-472c-a9d4-5a16fa27f6e2" ], "x-ms-correlation-request-id": [ - "5d7ed585-d757-42c8-a637-1983aa957c76" + "56379ae4-f688-472c-a9d4-5a16fa27f6e2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143345Z:5d7ed585-d757-42c8-a637-1983aa957c76" + "JIOINDIACENTRAL:20220512T111515Z:56379ae4-f688-472c-a9d4-5a16fa27f6e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:44 GMT" + "Thu, 12 May 2022 11:15:14 GMT" ], "Content-Length": [ "777" @@ -3397,22 +3337,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\",\r\n \"principalId\": \"d60019b0-c5a8-4e38-beb9-fb80daa3ce90\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ce35c267-37da-4ac2-9313-89c167dce67a" + "374e4158-c73c-45c8-91ba-5c1f8b554498" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3429,13 +3369,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/d77b347e-3ed6-4bd0-8192-5c7e6c66b81b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/8808b91f-b95b-4d8e-bd2f-3c8340e0e013?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d77b347e-3ed6-4bd0-8192-5c7e6c66b81b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8808b91f-b95b-4d8e-bd2f-3c8340e0e013?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d77b347e-3ed6-4bd0-8192-5c7e6c66b81b" + "8808b91f-b95b-4d8e-bd2f-3c8340e0e013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3447,19 +3387,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "ae2c6803-d8f0-4b04-b221-c7cb7d51d9c9" + "c8f4e9ac-96a5-43f0-abbf-f792fb05e9b2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142855Z:ae2c6803-d8f0-4b04-b221-c7cb7d51d9c9" + "JIOINDIACENTRAL:20220512T110958Z:c8f4e9ac-96a5-43f0-abbf-f792fb05e9b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:28:55 GMT" + "Thu, 12 May 2022 11:09:57 GMT" ], "Content-Length": [ "21" @@ -3472,22 +3412,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\",\r\n \"principalId\": \"d60019b0-c5a8-4e38-beb9-fb80daa3ce90\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "26f2f94b-7fb6-4237-9fb0-85ce94584ac0" + "7228e527-221b-46b3-bd2d-eda5cfcb2e1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3504,13 +3444,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/d52b0555-ef7b-4de4-ac85-baac952674e5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/0fae8feb-9d96-49f7-b344-c1d834628f84?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d52b0555-ef7b-4de4-ac85-baac952674e5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0fae8feb-9d96-49f7-b344-c1d834628f84?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d52b0555-ef7b-4de4-ac85-baac952674e5" + "0fae8feb-9d96-49f7-b344-c1d834628f84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3522,19 +3462,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1195" ], "x-ms-correlation-request-id": [ - "40c93b76-db8d-4f9b-8d8c-0d6a988b0841" + "6eb848f1-fe0e-4533-9a72-573cf4d5a9b1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143242Z:40c93b76-db8d-4f9b-8d8c-0d6a988b0841" + "JIOINDIACENTRAL:20220512T111410Z:6eb848f1-fe0e-4533-9a72-573cf4d5a9b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:32:42 GMT" + "Thu, 12 May 2022 11:14:09 GMT" ], "Content-Length": [ "21" @@ -3547,22 +3487,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\",\r\n \"principalId\": \"d60019b0-c5a8-4e38-beb9-fb80daa3ce90\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f61697-6625-41f2-bee1-0879ffad78ab" + "e1e5040d-6368-4c72-bffa-eb5a8281c8ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3579,13 +3519,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/25279f89-a713-44e0-8ea2-464268f4e79a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/9a7d8208-49ba-4ccd-a34e-f10d4a9d9b07?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/25279f89-a713-44e0-8ea2-464268f4e79a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9a7d8208-49ba-4ccd-a34e-f10d4a9d9b07?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "25279f89-a713-44e0-8ea2-464268f4e79a" + "9a7d8208-49ba-4ccd-a34e-f10d4a9d9b07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3597,19 +3537,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1197" ], "x-ms-correlation-request-id": [ - "8d46fa16-d7e0-414c-9db9-b0c42c51ec7f" + "78df4a54-4e62-4a26-a69e-84d5e7cd4b32" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143314Z:8d46fa16-d7e0-414c-9db9-b0c42c51ec7f" + "JIOINDIACENTRAL:20220512T111443Z:78df4a54-4e62-4a26-a69e-84d5e7cd4b32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:14 GMT" + "Thu, 12 May 2022 11:14:43 GMT" ], "Content-Length": [ "21" @@ -3622,19 +3562,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d77b347e-3ed6-4bd0-8192-5c7e6c66b81b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDc3YjM0N2UtM2VkNi00YmQwLTgxOTItNWM3ZTZjNjZiODFiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8808b91f-b95b-4d8e-bd2f-3c8340e0e013?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODgwOGI5MWYtYjk1Yi00ZDhlLWJkMmYtM2M4MzQwZTBlMDEzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce35c267-37da-4ac2-9313-89c167dce67a" + "374e4158-c73c-45c8-91ba-5c1f8b554498" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3654,22 +3594,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11985" ], "x-ms-request-id": [ - "812aeef1-ada7-4f59-ac4a-3855d423cda2" + "473dd795-33ec-4443-a08d-e6ae09dd6bfd" ], "x-ms-correlation-request-id": [ - "812aeef1-ada7-4f59-ac4a-3855d423cda2" + "473dd795-33ec-4443-a08d-e6ae09dd6bfd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142926Z:812aeef1-ada7-4f59-ac4a-3855d423cda2" + "JIOINDIACENTRAL:20220512T111029Z:473dd795-33ec-4443-a08d-e6ae09dd6bfd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:29:25 GMT" + "Thu, 12 May 2022 11:10:28 GMT" ], "Content-Length": [ "22" @@ -3682,22 +3622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b36dcc9c-5fa5-4df8-b3e8-119be4ba66cc" + "f14750ee-763c-4f33-a085-1c5d2b4d0376" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3717,22 +3657,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11994" ], "x-ms-request-id": [ - "505fd98e-e56f-4f7c-8608-4e2e585e086f" + "46c66203-cbfe-4b5c-aeeb-856b3217d9fe" ], "x-ms-correlation-request-id": [ - "505fd98e-e56f-4f7c-8608-4e2e585e086f" + "46c66203-cbfe-4b5c-aeeb-856b3217d9fe" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142927Z:505fd98e-e56f-4f7c-8608-4e2e585e086f" + "CENTRALINDIA:20220512T111031Z:46c66203-cbfe-4b5c-aeeb-856b3217d9fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:29:27 GMT" + "Thu, 12 May 2022 11:10:30 GMT" ], "Content-Length": [ "209" @@ -3741,23 +3681,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Assignment with ID [e7a0b8a5-b381-495d-a020-5467c534e619].\\r\\nActivityId: b36dcc9c-5fa5-4df8-b3e8-119be4ba66cc, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Assignment with ID [e7a0b8a5-b381-495d-a020-5467c534e619].\\r\\nActivityId: f14750ee-763c-4f33-a085-1c5d2b4d0376, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b36dcc9c-5fa5-4df8-b3e8-119be4ba66cc" + "f14750ee-763c-4f33-a085-1c5d2b4d0376" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3777,22 +3717,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11992" ], "x-ms-request-id": [ - "c0490b74-978c-4789-a0a9-521e64b7d67c" + "4ac20405-65e7-46f4-b9ea-3befb213ce38" ], "x-ms-correlation-request-id": [ - "c0490b74-978c-4789-a0a9-521e64b7d67c" + "4ac20405-65e7-46f4-b9ea-3befb213ce38" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142959Z:c0490b74-978c-4789-a0a9-521e64b7d67c" + "CENTRALINDIA:20220512T111103Z:4ac20405-65e7-46f4-b9ea-3befb213ce38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:29:58 GMT" + "Thu, 12 May 2022 11:11:02 GMT" ], "Content-Length": [ "766" @@ -3805,22 +3745,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/\",\r\n \"principalId\": \"ed4c2395-a18c-4018-afb3-6e521e7534d2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b36dcc9c-5fa5-4df8-b3e8-119be4ba66cc" + "f14750ee-763c-4f33-a085-1c5d2b4d0376" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3837,13 +3777,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619/operationResults/d3a96520-4ee6-48fd-a694-26ce40486580?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619/operationResults/db3a1b53-fb76-4ff3-8047-ac5893deae1e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3a96520-4ee6-48fd-a694-26ce40486580?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db3a1b53-fb76-4ff3-8047-ac5893deae1e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d3a96520-4ee6-48fd-a694-26ce40486580" + "db3a1b53-fb76-4ff3-8047-ac5893deae1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3855,19 +3795,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "c8ba2674-9018-44a9-bb7d-c11b79deb8f0" + "9fed6ddd-f23a-422f-87a7-a3e8986ee005" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142928Z:c8ba2674-9018-44a9-bb7d-c11b79deb8f0" + "CENTRALINDIA:20220512T111032Z:9fed6ddd-f23a-422f-87a7-a3e8986ee005" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:29:28 GMT" + "Thu, 12 May 2022 11:10:31 GMT" ], "Content-Length": [ "21" @@ -3880,19 +3820,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3a96520-4ee6-48fd-a694-26ce40486580?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDNhOTY1MjAtNGVlNi00OGZkLWE2OTQtMjZjZTQwNDg2NTgwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db3a1b53-fb76-4ff3-8047-ac5893deae1e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGIzYTFiNTMtZmI3Ni00ZmYzLTgwNDctYWM1ODkzZGVhZTFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b36dcc9c-5fa5-4df8-b3e8-119be4ba66cc" + "f14750ee-763c-4f33-a085-1c5d2b4d0376" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3912,22 +3852,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11993" ], "x-ms-request-id": [ - "66e696e4-033f-41b8-9ad6-a2492fe1dee9" + "2cd66759-ed92-4587-980e-4d0a30a5c79b" ], "x-ms-correlation-request-id": [ - "66e696e4-033f-41b8-9ad6-a2492fe1dee9" + "2cd66759-ed92-4587-980e-4d0a30a5c79b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142958Z:66e696e4-033f-41b8-9ad6-a2492fe1dee9" + "CENTRALINDIA:20220512T111102Z:2cd66759-ed92-4587-980e-4d0a30a5c79b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:29:58 GMT" + "Thu, 12 May 2022 11:11:02 GMT" ], "Content-Length": [ "22" @@ -3940,22 +3880,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/00000000-0000-0000-0000-000000000000?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy8wMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/00000000-0000-0000-0000-000000000000?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy8wMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDA/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4030474f-4ada-4597-afe3-cec82efe5581" + "61fd03b8-83df-4f2e-b5f6-8207a419424e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3975,22 +3915,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11983" ], "x-ms-request-id": [ - "c23601fb-b47e-4607-89f7-9c14e992be77" + "a2f933c2-1c82-46c6-88be-bc506665b4cf" ], "x-ms-correlation-request-id": [ - "c23601fb-b47e-4607-89f7-9c14e992be77" + "a2f933c2-1c82-46c6-88be-bc506665b4cf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T142959Z:c23601fb-b47e-4607-89f7-9c14e992be77" + "JIOINDIACENTRAL:20220512T111104Z:a2f933c2-1c82-46c6-88be-bc506665b4cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:29:59 GMT" + "Thu, 12 May 2022 11:11:03 GMT" ], "Content-Length": [ "209" @@ -3999,23 +3939,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Definition with ID [00000000-0000-0000-0000-000000000000].\\r\\nActivityId: 4030474f-4ada-4597-afe3-cec82efe5581, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Definition with ID [00000000-0000-0000-0000-000000000000].\\r\\nActivityId: 61fd03b8-83df-4f2e-b5f6-8207a419424e, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b25c207c-17aa-4006-8ff7-ab2c43b1c83d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjI1YzIwN2MtMTdhYS00MDA2LThmZjctYWIyYzQzYjFjODNkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3f979fbf-5591-4455-b82a-5fa9b6895f53?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2Y5NzlmYmYtNTU5MS00NDU1LWI4MmEtNWZhOWI2ODk1ZjUzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5cd3683-2540-49ae-afaf-c2e89c7852aa" + "9367b524-43aa-4b28-a74e-848eea2d6793" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4035,22 +3975,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11997" ], "x-ms-request-id": [ - "faa005cc-6595-43c4-8d86-1d4569c10394" + "f1bff1e7-e669-4ea8-8627-9ccbc661f306" ], "x-ms-correlation-request-id": [ - "faa005cc-6595-43c4-8d86-1d4569c10394" + "f1bff1e7-e669-4ea8-8627-9ccbc661f306" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143032Z:faa005cc-6595-43c4-8d86-1d4569c10394" + "JIOINDIACENTRAL:20220512T111145Z:f1bff1e7-e669-4ea8-8627-9ccbc661f306" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:30:32 GMT" + "Thu, 12 May 2022 11:11:45 GMT" ], "Content-Length": [ "22" @@ -4063,19 +4003,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/99752070-c38c-434c-92c8-c2536d13846d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTk3NTIwNzAtYzM4Yy00MzRjLTkyYzgtYzI1MzZkMTM4NDZkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d48e0296-9d13-41d4-be5b-c10c6c22049b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDQ4ZTAyOTYtOWQxMy00MWQ0LWJlNWItYzEwYzZjMjIwNDliP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e934c05a-b170-41ea-93c7-f843d498ea0d" + "ad584cdc-f9fb-43de-a660-ea8a3d0fc8dd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4095,22 +4035,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11981" ], "x-ms-request-id": [ - "55fb1704-531a-45a8-a1f9-2cd102a46c13" + "8f1bbdc7-d1c8-4a6c-a6e5-96d8f2f1365f" ], "x-ms-correlation-request-id": [ - "55fb1704-531a-45a8-a1f9-2cd102a46c13" + "8f1bbdc7-d1c8-4a6c-a6e5-96d8f2f1365f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143104Z:55fb1704-531a-45a8-a1f9-2cd102a46c13" + "JIOINDIACENTRAL:20220512T111220Z:8f1bbdc7-d1c8-4a6c-a6e5-96d8f2f1365f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:03 GMT" + "Thu, 12 May 2022 11:12:19 GMT" ], "Content-Length": [ "22" @@ -4123,19 +4063,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bac95ff5-d0b1-4159-902d-09038d80a8c2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFjOTVmZjUtZDBiMS00MTU5LTkwMmQtMDkwMzhkODBhOGMyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a901d586-fc4d-4485-ad64-b7d97b7e56b4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwMWQ1ODYtZmM0ZC00NDg1LWFkNjQtYjdkOTdiN2U1NmI0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ba6d7db-a8a4-445c-a986-af5b917b4352" + "4f8e6840-586c-4ae3-add5-f8c559f5cff9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4155,22 +4095,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11998" ], "x-ms-request-id": [ - "075f861c-720c-4a95-901a-6405e983b41b" + "c634b02b-a8d1-4acb-a9c5-f060b3f53d4b" ], "x-ms-correlation-request-id": [ - "075f861c-720c-4a95-901a-6405e983b41b" + "c634b02b-a8d1-4acb-a9c5-f060b3f53d4b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143136Z:075f861c-720c-4a95-901a-6405e983b41b" + "CENTRALINDIA:20220512T111255Z:c634b02b-a8d1-4acb-a9c5-f060b3f53d4b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:31:35 GMT" + "Thu, 12 May 2022 11:12:54 GMT" ], "Content-Length": [ "22" @@ -4183,19 +4123,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6ee51ba-fccc-46e9-80c4-d727536110a9?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZlZTUxYmEtZmNjYy00NmU5LTgwYzQtZDcyNzUzNjExMGE5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d35e8145-a05f-4c58-8cbc-bd1476c5e7d5?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDM1ZTgxNDUtYTA1Zi00YzU4LThjYmMtYmQxNDc2YzVlN2Q1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "457c8c3d-8705-49a6-8f27-40e1886fbea0" + "808256ae-b620-4efe-9036-76b9c9fefec6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4215,22 +4155,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11997" ], "x-ms-request-id": [ - "66f9062a-84a8-4b45-97cb-f1e197b9cd16" + "45778b97-0738-472e-bec8-1fea021a1380" ], "x-ms-correlation-request-id": [ - "66f9062a-84a8-4b45-97cb-f1e197b9cd16" + "45778b97-0738-472e-bec8-1fea021a1380" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143208Z:66f9062a-84a8-4b45-97cb-f1e197b9cd16" + "CENTRALINDIA:20220512T111331Z:45778b97-0738-472e-bec8-1fea021a1380" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:32:08 GMT" + "Thu, 12 May 2022 11:13:30 GMT" ], "Content-Length": [ "22" @@ -4243,19 +4183,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e6574c38-1f78-4fa0-91a7-66ad429478da?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTY1NzRjMzgtMWY3OC00ZmEwLTkxYTctNjZhZDQyOTQ3OGRhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9142a571-c3a1-4073-8ed4-9cc0c80e7b4d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTE0MmE1NzEtYzNhMS00MDczLThlZDQtOWNjMGM4MGU3YjRkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcae3dd3-5b87-42a7-a633-25bc6b22eb1c" + "73da8099-5193-483f-aa5c-aee1e2b0c9be" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4275,22 +4215,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11998" ], "x-ms-request-id": [ - "1556c97b-4d4e-4d2b-b042-97a98cbad6ad" + "0d6852ab-9937-4544-9e6d-5f473bf75d24" ], "x-ms-correlation-request-id": [ - "1556c97b-4d4e-4d2b-b042-97a98cbad6ad" + "0d6852ab-9937-4544-9e6d-5f473bf75d24" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143240Z:1556c97b-4d4e-4d2b-b042-97a98cbad6ad" + "CENTRALINDIA:20220512T111406Z:0d6852ab-9937-4544-9e6d-5f473bf75d24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:32:40 GMT" + "Thu, 12 May 2022 11:14:05 GMT" ], "Content-Length": [ "22" @@ -4303,19 +4243,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d52b0555-ef7b-4de4-ac85-baac952674e5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDUyYjA1NTUtZWY3Yi00ZGU0LWFjODUtYmFhYzk1MjY3NGU1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0fae8feb-9d96-49f7-b344-c1d834628f84?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhZThmZWItOWQ5Ni00OWY3LWIzNDQtYzFkODM0NjI4Zjg0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26f2f94b-7fb6-4237-9fb0-85ce94584ac0" + "7228e527-221b-46b3-bd2d-eda5cfcb2e1c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4335,22 +4275,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11978" ], "x-ms-request-id": [ - "b8c11883-d6cb-4d33-9d58-936d011f069a" + "105f5fbb-2873-4bb7-8841-e9a4e60aeacf" ], "x-ms-correlation-request-id": [ - "b8c11883-d6cb-4d33-9d58-936d011f069a" + "105f5fbb-2873-4bb7-8841-e9a4e60aeacf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143312Z:b8c11883-d6cb-4d33-9d58-936d011f069a" + "JIOINDIACENTRAL:20220512T111440Z:105f5fbb-2873-4bb7-8841-e9a4e60aeacf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:12 GMT" + "Thu, 12 May 2022 11:14:39 GMT" ], "Content-Length": [ "22" @@ -4363,19 +4303,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/25279f89-a713-44e0-8ea2-464268f4e79a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjUyNzlmODktYTcxMy00NGUwLThlYTItNDY0MjY4ZjRlNzlhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9a7d8208-49ba-4ccd-a34e-f10d4a9d9b07?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWE3ZDgyMDgtNDliYS00Y2NkLWEzNGUtZjEwZDRhOWQ5YjA3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f61697-6625-41f2-bee1-0879ffad78ab" + "e1e5040d-6368-4c72-bffa-eb5a8281c8ad" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4395,22 +4335,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11983" ], "x-ms-request-id": [ - "99d585e7-cba0-483f-8a32-c6b3a9c7df4c" + "7b7e3d1b-5fbb-468a-aa3c-f5f9090a71b4" ], "x-ms-correlation-request-id": [ - "99d585e7-cba0-483f-8a32-c6b3a9c7df4c" + "7b7e3d1b-5fbb-468a-aa3c-f5f9090a71b4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143344Z:99d585e7-cba0-483f-8a32-c6b3a9c7df4c" + "JIOINDIACENTRAL:20220512T111514Z:7b7e3d1b-5fbb-468a-aa3c-f5f9090a71b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:44 GMT" + "Thu, 12 May 2022 11:15:13 GMT" ], "Content-Length": [ "22" @@ -4423,22 +4363,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4b28c7e-f86b-4442-b402-98bf09747177" + "2c77105e-9290-4013-be5a-42e688f69d63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4458,22 +4398,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11998" ], "x-ms-request-id": [ - "adc87967-f232-487a-88de-cd0cd7a2b923" + "20c8be17-6f09-4d72-addc-ecfdc2d03283" ], "x-ms-correlation-request-id": [ - "adc87967-f232-487a-88de-cd0cd7a2b923" + "20c8be17-6f09-4d72-addc-ecfdc2d03283" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143346Z:adc87967-f232-487a-88de-cd0cd7a2b923" + "CENTRALINDIA:20220512T111518Z:20c8be17-6f09-4d72-addc-ecfdc2d03283" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:45 GMT" + "Thu, 12 May 2022 11:15:18 GMT" ], "Content-Length": [ "2334" @@ -4482,26 +4422,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619\",\r\n \"name\": \"e7a0b8a5-b381-495d-a020-5467c534e619\",\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22\",\r\n \"principalId\": \"ed4c2395-a18c-4018-afb3-6e521e7534d2\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\"\r\n },\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b\",\r\n \"name\": \"8f3f78c4-a8df-4088-9cbb-a3947e27076b\",\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74\",\r\n \"principalId\": \"d60019b0-c5a8-4e38-beb9-fb80daa3ce90\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\"\r\n },\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754\",\r\n \"name\": \"a2ccaf94-3c39-4728-b892-95edeef0e754\",\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22\",\r\n \"principalId\": \"ed4c2395-a18c-4018-afb3-6e521e7534d2\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\"\r\n },\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754\",\r\n \"name\": \"a2ccaf94-3c39-4728-b892-95edeef0e754\",\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22\",\r\n \"principalId\": \"ed4c2395-a18c-4018-afb3-6e521e7534d2\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\"\r\n },\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619\",\r\n \"name\": \"e7a0b8a5-b381-495d-a020-5467c534e619\",\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22\",\r\n \"principalId\": \"ed4c2395-a18c-4018-afb3-6e521e7534d2\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73\"\r\n },\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b\",\r\n \"name\": \"8f3f78c4-a8df-4088-9cbb-a3947e27076b\",\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74\",\r\n \"principalId\": \"d60019b0-c5a8-4e38-beb9-fb80daa3ce90\",\r\n \"scope\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/dbs/dbName\"\r\n },\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/9ee200b5-73fd-4779-b36a-e2a31f9244f3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy85ZWUyMDBiNS03M2ZkLTQ3NzktYjM2YS1lMmEzMWY5MjQ0ZjM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/9ee200b5-73fd-4779-b36a-e2a31f9244f3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy85ZWUyMDBiNS03M2ZkLTQ3NzktYjM2YS1lMmEzMWY5MjQ0ZjM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7269a07-322c-45e1-9cf7-80d71e1baf8a" + "ce3b49dc-9084-4794-9745-879b1cf45207" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4521,22 +4461,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11994" ], "x-ms-request-id": [ - "aa3d68db-23bd-4f59-ab8e-41a1eee99eed" + "0e494c03-1a5d-405c-bf6e-4256aeea93ee" ], "x-ms-correlation-request-id": [ - "aa3d68db-23bd-4f59-ab8e-41a1eee99eed" + "0e494c03-1a5d-405c-bf6e-4256aeea93ee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143346Z:aa3d68db-23bd-4f59-ab8e-41a1eee99eed" + "CENTRALINDIA:20220512T111519Z:0e494c03-1a5d-405c-bf6e-4256aeea93ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:46 GMT" + "Thu, 12 May 2022 11:15:18 GMT" ], "Content-Length": [ "209" @@ -4545,26 +4485,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Definition with ID [9ee200b5-73fd-4779-b36a-e2a31f9244f3].\\r\\nActivityId: a7269a07-322c-45e1-9cf7-80d71e1baf8a, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Unable to find a SQL Role Definition with ID [9ee200b5-73fd-4779-b36a-e2a31f9244f3].\\r\\nActivityId: ce3b49dc-9084-4794-9745-879b1cf45207, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/9ee200b5-73fd-4779-b36a-e2a31f9244f3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy85ZWUyMDBiNS03M2ZkLTQ3NzktYjM2YS1lMmEzMWY5MjQ0ZjM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/9ee200b5-73fd-4779-b36a-e2a31f9244f3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy85ZWUyMDBiNS03M2ZkLTQ3NzktYjM2YS1lMmEzMWY5MjQ0ZjM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"roleName\": \"roleDefinitionName6\",\r\n \"type\": \"CustomRole\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"dataActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/items/invalid-action\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a7269a07-322c-45e1-9cf7-80d71e1baf8a" + "ce3b49dc-9084-4794-9745-879b1cf45207" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4590,22 +4530,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1199" ], "x-ms-request-id": [ - "71d6909f-de5e-4b21-a1b0-32f42432071d" + "87d7594a-c04a-4010-b229-27acc4d422a9" ], "x-ms-correlation-request-id": [ - "71d6909f-de5e-4b21-a1b0-32f42432071d" + "87d7594a-c04a-4010-b229-27acc4d422a9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143346Z:71d6909f-de5e-4b21-a1b0-32f42432071d" + "CENTRALINDIA:20220512T111520Z:87d7594a-c04a-4010-b229-27acc4d422a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:46 GMT" + "Thu, 12 May 2022 11:15:20 GMT" ], "Content-Length": [ "293" @@ -4614,26 +4554,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided data action string [Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/items/invalid-action] does not correspond to any valid SQL data action.\\r\\nActivityId: a7269a07-322c-45e1-9cf7-80d71e1baf8a, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"BadRequest\",\r\n \"message\": \"The provided data action string [Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/items/invalid-action] does not correspond to any valid SQL data action.\\r\\nActivityId: ce3b49dc-9084-4794-9745-879b1cf45207, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 400 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bf23ec7-099c-4cf2-b392-483f91fdaf1e" + "4e92fec0-a2a8-45c2-bfe6-86d0ceda9dfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4644,13 +4584,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/6f1634bc-20dc-485e-bf4a-2e20b6542f5d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/c481d038-7457-4c19-a2b8-c594897fab9c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6f1634bc-20dc-485e-bf4a-2e20b6542f5d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c481d038-7457-4c19-a2b8-c594897fab9c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "6f1634bc-20dc-485e-bf4a-2e20b6542f5d" + "c481d038-7457-4c19-a2b8-c594897fab9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4662,19 +4602,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "33d86ea8-5a5b-4bc7-a5cf-767d47dfbfb9" + "1ce5f2be-d040-4b37-81d4-e1d6fcbfb85d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143347Z:33d86ea8-5a5b-4bc7-a5cf-767d47dfbfb9" + "CENTRALINDIA:20220512T111524Z:1ce5f2be-d040-4b37-81d4-e1d6fcbfb85d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:33:47 GMT" + "Thu, 12 May 2022 11:15:23 GMT" ], "Content-Length": [ "21" @@ -4687,19 +4627,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6f1634bc-20dc-485e-bf4a-2e20b6542f5d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmYxNjM0YmMtMjBkYy00ODVlLWJmNGEtMmUyMGI2NTQyZjVkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c481d038-7457-4c19-a2b8-c594897fab9c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzQ4MWQwMzgtNzQ1Ny00YzE5LWEyYjgtYzU5NDg5N2ZhYjljP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bf23ec7-099c-4cf2-b392-483f91fdaf1e" + "4e92fec0-a2a8-45c2-bfe6-86d0ceda9dfa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4719,22 +4659,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11996" ], "x-ms-request-id": [ - "9a485871-92a6-4d0a-817b-71a4242402ad" + "f1693afe-af5d-4198-96fb-55007df0a5b6" ], "x-ms-correlation-request-id": [ - "9a485871-92a6-4d0a-817b-71a4242402ad" + "f1693afe-af5d-4198-96fb-55007df0a5b6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143418Z:9a485871-92a6-4d0a-817b-71a4242402ad" + "CENTRALINDIA:20220512T111554Z:f1693afe-af5d-4198-96fb-55007df0a5b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:34:17 GMT" + "Thu, 12 May 2022 11:15:53 GMT" ], "Content-Length": [ "22" @@ -4747,19 +4687,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/6f1634bc-20dc-485e-bf4a-2e20b6542f5d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQvb3BlcmF0aW9uUmVzdWx0cy82ZjE2MzRiYy0yMGRjLTQ4NWUtYmY0YS0yZTIwYjY1NDJmNWQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/a2ccaf94-3c39-4728-b892-95edeef0e754/operationResults/c481d038-7457-4c19-a2b8-c594897fab9c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9hMmNjYWY5NC0zYzM5LTQ3MjgtYjg5Mi05NWVkZWVmMGU3NTQvb3BlcmF0aW9uUmVzdWx0cy9jNDgxZDAzOC03NDU3LTRjMTktYTJiOC1jNTk0ODk3ZmFiOWM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bf23ec7-099c-4cf2-b392-483f91fdaf1e" + "4e92fec0-a2a8-45c2-bfe6-86d0ceda9dfa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4779,22 +4719,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11995" ], "x-ms-request-id": [ - "508495e2-070f-4cbb-a91a-235db0ccf1ef" + "ef32e5a4-15ae-4b98-985c-3b8305da1488" ], "x-ms-correlation-request-id": [ - "508495e2-070f-4cbb-a91a-235db0ccf1ef" + "ef32e5a4-15ae-4b98-985c-3b8305da1488" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143419Z:508495e2-070f-4cbb-a91a-235db0ccf1ef" + "CENTRALINDIA:20220512T111554Z:ef32e5a4-15ae-4b98-985c-3b8305da1488" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:34:18 GMT" + "Thu, 12 May 2022 11:15:54 GMT" ], "Content-Length": [ "22" @@ -4807,22 +4747,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c638b742-4e7e-4420-856f-565c09b110fe" + "87b6695c-ccf4-4faf-b697-47a1ed66809e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4833,13 +4773,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/47b2649e-fe3f-4a0e-9460-e082382ccd61?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/5bc9e9ae-9545-4aeb-9de9-db8df71ae635?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47b2649e-fe3f-4a0e-9460-e082382ccd61?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5bc9e9ae-9545-4aeb-9de9-db8df71ae635?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "47b2649e-fe3f-4a0e-9460-e082382ccd61" + "5bc9e9ae-9545-4aeb-9de9-db8df71ae635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4851,19 +4791,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "f9818d96-4ffe-4e4c-828e-3e539d0313c0" + "9a23a5cf-3800-4330-b83d-82c33f543e4a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143420Z:f9818d96-4ffe-4e4c-828e-3e539d0313c0" + "CENTRALINDIA:20220512T111556Z:9a23a5cf-3800-4330-b83d-82c33f543e4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:34:19 GMT" + "Thu, 12 May 2022 11:15:56 GMT" ], "Content-Length": [ "21" @@ -4876,19 +4816,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47b2649e-fe3f-4a0e-9460-e082382ccd61?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDdiMjY0OWUtZmUzZi00YTBlLTk0NjAtZTA4MjM4MmNjZDYxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5bc9e9ae-9545-4aeb-9de9-db8df71ae635?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWJjOWU5YWUtOTU0NS00YWViLTlkZTktZGI4ZGY3MWFlNjM1P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c638b742-4e7e-4420-856f-565c09b110fe" + "87b6695c-ccf4-4faf-b697-47a1ed66809e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4908,22 +4848,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11996" ], "x-ms-request-id": [ - "fde84fce-fcfd-4f6c-89e0-9c9c4d485437" + "464a9623-a3a9-44b9-90fd-dc8e5967798f" ], "x-ms-correlation-request-id": [ - "fde84fce-fcfd-4f6c-89e0-9c9c4d485437" + "464a9623-a3a9-44b9-90fd-dc8e5967798f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143450Z:fde84fce-fcfd-4f6c-89e0-9c9c4d485437" + "CENTRALINDIA:20220512T111627Z:464a9623-a3a9-44b9-90fd-dc8e5967798f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:34:50 GMT" + "Thu, 12 May 2022 11:16:27 GMT" ], "Content-Length": [ "22" @@ -4936,19 +4876,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/47b2649e-fe3f-4a0e-9460-e082382ccd61?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmIvb3BlcmF0aW9uUmVzdWx0cy80N2IyNjQ5ZS1mZTNmLTRhMGUtOTQ2MC1lMDgyMzgyY2NkNjE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/8f3f78c4-a8df-4088-9cbb-a3947e27076b/operationResults/5bc9e9ae-9545-4aeb-9de9-db8df71ae635?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy84ZjNmNzhjNC1hOGRmLTQwODgtOWNiYi1hMzk0N2UyNzA3NmIvb3BlcmF0aW9uUmVzdWx0cy81YmM5ZTlhZS05NTQ1LTRhZWItOWRlOS1kYjhkZjcxYWU2MzU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c638b742-4e7e-4420-856f-565c09b110fe" + "87b6695c-ccf4-4faf-b697-47a1ed66809e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4968,22 +4908,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11995" ], "x-ms-request-id": [ - "fbd0b642-237d-4778-b29a-ae36112a2d5c" + "8f59ae97-3a8c-456b-8a37-77fdba043205" ], "x-ms-correlation-request-id": [ - "fbd0b642-237d-4778-b29a-ae36112a2d5c" + "8f59ae97-3a8c-456b-8a37-77fdba043205" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143450Z:fbd0b642-237d-4778-b29a-ae36112a2d5c" + "CENTRALINDIA:20220512T111627Z:8f59ae97-3a8c-456b-8a37-77fdba043205" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:34:50 GMT" + "Thu, 12 May 2022 11:16:27 GMT" ], "Content-Length": [ "22" @@ -4996,22 +4936,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d29bbf2a-382f-4809-bb3b-ffd6ccc9bca0" + "5a04a99d-28ad-4f73-8aa0-6b651841f08f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5022,13 +4962,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619/operationResults/d1dd2e60-147f-42fd-85d6-72587c90c8ff?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619/operationResults/c30755fb-0a38-4d01-bd19-e38aea0e3d79?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1dd2e60-147f-42fd-85d6-72587c90c8ff?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c30755fb-0a38-4d01-bd19-e38aea0e3d79?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d1dd2e60-147f-42fd-85d6-72587c90c8ff" + "c30755fb-0a38-4d01-bd19-e38aea0e3d79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5040,19 +4980,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "4b31d2c9-0aae-4c6c-9925-fde266f31daa" + "19cda43e-26f7-42f6-bb7e-9ca405866e32" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143452Z:4b31d2c9-0aae-4c6c-9925-fde266f31daa" + "CENTRALINDIA:20220512T111631Z:19cda43e-26f7-42f6-bb7e-9ca405866e32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:34:52 GMT" + "Thu, 12 May 2022 11:16:31 GMT" ], "Content-Length": [ "21" @@ -5065,19 +5005,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1dd2e60-147f-42fd-85d6-72587c90c8ff?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFkZDJlNjAtMTQ3Zi00MmZkLTg1ZDYtNzI1ODdjOTBjOGZmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c30755fb-0a38-4d01-bd19-e38aea0e3d79?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzMwNzU1ZmItMGEzOC00ZDAxLWJkMTktZTM4YWVhMGUzZDc5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d29bbf2a-382f-4809-bb3b-ffd6ccc9bca0" + "5a04a99d-28ad-4f73-8aa0-6b651841f08f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5097,22 +5037,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11995" ], "x-ms-request-id": [ - "502accbc-c9ee-4382-a89d-92abda2d097f" + "78941caf-4c52-4050-b3f0-f9736788dad9" ], "x-ms-correlation-request-id": [ - "502accbc-c9ee-4382-a89d-92abda2d097f" + "78941caf-4c52-4050-b3f0-f9736788dad9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143522Z:502accbc-c9ee-4382-a89d-92abda2d097f" + "CENTRALINDIA:20220512T111701Z:78941caf-4c52-4050-b3f0-f9736788dad9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:35:22 GMT" + "Thu, 12 May 2022 11:17:01 GMT" ], "Content-Length": [ "22" @@ -5125,19 +5065,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619/operationResults/d1dd2e60-147f-42fd-85d6-72587c90c8ff?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTkvb3BlcmF0aW9uUmVzdWx0cy9kMWRkMmU2MC0xNDdmLTQyZmQtODVkNi03MjU4N2M5MGM4ZmY/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleAssignments/e7a0b8a5-b381-495d-a020-5467c534e619/operationResults/c30755fb-0a38-4d01-bd19-e38aea0e3d79?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVBc3NpZ25tZW50cy9lN2EwYjhhNS1iMzgxLTQ5NWQtYTAyMC01NDY3YzUzNGU2MTkvb3BlcmF0aW9uUmVzdWx0cy9jMzA3NTVmYi0wYTM4LTRkMDEtYmQxOS1lMzhhZWEwZTNkNzk/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d29bbf2a-382f-4809-bb3b-ffd6ccc9bca0" + "5a04a99d-28ad-4f73-8aa0-6b651841f08f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5157,22 +5097,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11994" ], "x-ms-request-id": [ - "8054ea4b-12a6-42d5-bb47-2df8246086d2" + "0d870e36-bce5-4e10-8b35-9af6ff0f38ca" ], "x-ms-correlation-request-id": [ - "8054ea4b-12a6-42d5-bb47-2df8246086d2" + "0d870e36-bce5-4e10-8b35-9af6ff0f38ca" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143522Z:8054ea4b-12a6-42d5-bb47-2df8246086d2" + "CENTRALINDIA:20220512T111702Z:0d870e36-bce5-4e10-8b35-9af6ff0f38ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:35:22 GMT" + "Thu, 12 May 2022 11:17:02 GMT" ], "Content-Length": [ "22" @@ -5185,22 +5125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cebc29fb-33fd-43bb-945c-939245db0527" + "15d7b1b1-1e8e-4d5a-97c1-99e8ab7212d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5211,13 +5151,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/a3700f50-b964-40d3-9fad-fda53240807a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/68ad0ca0-1232-47ef-baa4-d92990269a0b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a3700f50-b964-40d3-9fad-fda53240807a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/68ad0ca0-1232-47ef-baa4-d92990269a0b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a3700f50-b964-40d3-9fad-fda53240807a" + "68ad0ca0-1232-47ef-baa4-d92990269a0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5229,19 +5169,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "d7df75bd-23e6-4e27-a99e-2575fb45e2ce" + "4b1738eb-e8f5-46a9-bb74-ec540f6d818f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143523Z:d7df75bd-23e6-4e27-a99e-2575fb45e2ce" + "CENTRALINDIA:20220512T111704Z:4b1738eb-e8f5-46a9-bb74-ec540f6d818f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:35:23 GMT" + "Thu, 12 May 2022 11:17:04 GMT" ], "Content-Length": [ "21" @@ -5254,19 +5194,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a3700f50-b964-40d3-9fad-fda53240807a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTM3MDBmNTAtYjk2NC00MGQzLTlmYWQtZmRhNTMyNDA4MDdhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/68ad0ca0-1232-47ef-baa4-d92990269a0b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjhhZDBjYTAtMTIzMi00N2VmLWJhYTQtZDkyOTkwMjY5YTBiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cebc29fb-33fd-43bb-945c-939245db0527" + "15d7b1b1-1e8e-4d5a-97c1-99e8ab7212d3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5286,22 +5226,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11999" ], "x-ms-request-id": [ - "c0f1a758-8c71-4273-a692-9a79387925dd" + "9cac696f-9244-4fd3-8237-ec0c36b2cabc" ], "x-ms-correlation-request-id": [ - "c0f1a758-8c71-4273-a692-9a79387925dd" + "9cac696f-9244-4fd3-8237-ec0c36b2cabc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143553Z:c0f1a758-8c71-4273-a692-9a79387925dd" + "CENTRALINDIA:20220512T111734Z:9cac696f-9244-4fd3-8237-ec0c36b2cabc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:35:53 GMT" + "Thu, 12 May 2022 11:17:34 GMT" ], "Content-Length": [ "22" @@ -5314,19 +5254,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/a3700f50-b964-40d3-9fad-fda53240807a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjIvb3BlcmF0aW9uUmVzdWx0cy9hMzcwMGY1MC1iOTY0LTQwZDMtOWZhZC1mZGE1MzI0MDgwN2E/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/cf31c3a1-20f5-4ff1-bdd0-5e0782617e22/operationResults/68ad0ca0-1232-47ef-baa4-d92990269a0b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9jZjMxYzNhMS0yMGY1LTRmZjEtYmRkMC01ZTA3ODI2MTdlMjIvb3BlcmF0aW9uUmVzdWx0cy82OGFkMGNhMC0xMjMyLTQ3ZWYtYmFhNC1kOTI5OTAyNjlhMGI/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cebc29fb-33fd-43bb-945c-939245db0527" + "15d7b1b1-1e8e-4d5a-97c1-99e8ab7212d3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5346,22 +5286,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11998" ], "x-ms-request-id": [ - "62274c1d-72f5-4e97-af8d-2181b767de4f" + "73b6ea76-1692-4e8b-b6b3-de9f6815c325" ], "x-ms-correlation-request-id": [ - "62274c1d-72f5-4e97-af8d-2181b767de4f" + "73b6ea76-1692-4e8b-b6b3-de9f6815c325" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143554Z:62274c1d-72f5-4e97-af8d-2181b767de4f" + "CENTRALINDIA:20220512T111735Z:73b6ea76-1692-4e8b-b6b3-de9f6815c325" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:35:54 GMT" + "Thu, 12 May 2022 11:17:34 GMT" ], "Content-Length": [ "22" @@ -5374,22 +5314,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b663b4a-108a-45e2-9a08-d22ac485ef11" + "8c00ecb1-ffc2-4739-bf7d-44dc8c60c2ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5400,13 +5340,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74/operationResults/636b3b21-dd91-41c5-aa0c-1fd72b9d1d07?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74/operationResults/8be48eda-d5fd-4742-8336-32f7b7954138?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/636b3b21-dd91-41c5-aa0c-1fd72b9d1d07?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8be48eda-d5fd-4742-8336-32f7b7954138?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "636b3b21-dd91-41c5-aa0c-1fd72b9d1d07" + "8be48eda-d5fd-4742-8336-32f7b7954138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5418,19 +5358,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "1f629c0d-692f-43d0-a14a-7c159ef2b700" + "07099143-fac9-404c-be27-2052dc4698c9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143555Z:1f629c0d-692f-43d0-a14a-7c159ef2b700" + "JIOINDIACENTRAL:20220512T111737Z:07099143-fac9-404c-be27-2052dc4698c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:35:54 GMT" + "Thu, 12 May 2022 11:17:37 GMT" ], "Content-Length": [ "21" @@ -5443,19 +5383,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/636b3b21-dd91-41c5-aa0c-1fd72b9d1d07?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjM2YjNiMjEtZGQ5MS00MWM1LWFhMGMtMWZkNzJiOWQxZDA3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8be48eda-d5fd-4742-8336-32f7b7954138?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGJlNDhlZGEtZDVmZC00NzQyLTgzMzYtMzJmN2I3OTU0MTM4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b663b4a-108a-45e2-9a08-d22ac485ef11" + "8c00ecb1-ffc2-4739-bf7d-44dc8c60c2ab" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5475,22 +5415,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11992" ], "x-ms-request-id": [ - "a1b71f85-7154-496f-9f0e-d0090b1495ea" + "cacb2d89-4208-4d05-869f-6e0134e0b665" ], "x-ms-correlation-request-id": [ - "a1b71f85-7154-496f-9f0e-d0090b1495ea" + "cacb2d89-4208-4d05-869f-6e0134e0b665" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143625Z:a1b71f85-7154-496f-9f0e-d0090b1495ea" + "JIOINDIACENTRAL:20220512T111808Z:cacb2d89-4208-4d05-869f-6e0134e0b665" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:36:25 GMT" + "Thu, 12 May 2022 11:18:08 GMT" ], "Content-Length": [ "22" @@ -5503,19 +5443,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74/operationResults/636b3b21-dd91-41c5-aa0c-1fd72b9d1d07?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQvb3BlcmF0aW9uUmVzdWx0cy82MzZiM2IyMS1kZDkxLTQxYzUtYWEwYy0xZmQ3MmI5ZDFkMDc/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/a36e56a5-9afc-4819-aa78-3a8083a3ee74/operationResults/8be48eda-d5fd-4742-8336-32f7b7954138?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy9hMzZlNTZhNS05YWZjLTQ4MTktYWE3OC0zYTgwODNhM2VlNzQvb3BlcmF0aW9uUmVzdWx0cy84YmU0OGVkYS1kNWZkLTQ3NDItODMzNi0zMmY3Yjc5NTQxMzg/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b663b4a-108a-45e2-9a08-d22ac485ef11" + "8c00ecb1-ffc2-4739-bf7d-44dc8c60c2ab" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5535,22 +5475,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11991" ], "x-ms-request-id": [ - "8e687bea-d5ba-4290-bd6e-57454cf4b69d" + "75e3f8cb-a9ec-4478-b723-cc3894e52501" ], "x-ms-correlation-request-id": [ - "8e687bea-d5ba-4290-bd6e-57454cf4b69d" + "75e3f8cb-a9ec-4478-b723-cc3894e52501" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143625Z:8e687bea-d5ba-4290-bd6e-57454cf4b69d" + "JIOINDIACENTRAL:20220512T111810Z:75e3f8cb-a9ec-4478-b723-cc3894e52501" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:36:25 GMT" + "Thu, 12 May 2022 11:18:09 GMT" ], "Content-Length": [ "22" @@ -5563,22 +5503,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/9ee200b5-73fd-4779-b36a-e2a31f9244f3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy85ZWUyMDBiNS03M2ZkLTQ3NzktYjM2YS1lMmEzMWY5MjQ0ZjM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232873/providers/Microsoft.DocumentDB/databaseAccounts/rbactestps73/sqlRoleDefinitions/9ee200b5-73fd-4779-b36a-e2a31f9244f3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvcmJhY3Rlc3RwczczL3NxbFJvbGVEZWZpbml0aW9ucy85ZWUyMDBiNS03M2ZkLTQ3NzktYjM2YS1lMmEzMWY5MjQ0ZjM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd03c317-1010-491d-9a85-0c4b9f5d0dac" + "c9bdcbe4-7e83-4890-88cb-007ad2654da6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -5592,28 +5532,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "fd03c317-1010-491d-9a85-0c4b9f5d0dac" + "c9bdcbe4-7e83-4890-88cb-007ad2654da6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14997" ], "x-ms-request-id": [ - "046906a0-74d9-4003-b7a6-b6aa4633d118" + "4336c56b-0b5c-4783-b485-dd4ce809138c" ], "x-ms-correlation-request-id": [ - "046906a0-74d9-4003-b7a6-b6aa4633d118" + "4336c56b-0b5c-4783-b485-dd4ce809138c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143626Z:046906a0-74d9-4003-b7a6-b6aa4633d118" + "JIOINDIACENTRAL:20220512T111814Z:4336c56b-0b5c-4783-b485-dd4ce809138c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:36:25 GMT" + "Thu, 12 May 2022 11:18:13 GMT" ] }, "ResponseBody": "", diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlThroughputCmdlets.json index aa3f2b31e00d..f63e14cd9d74 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a427bbda-afec-4211-819a-cdfa82321fe5" + "63ce5535-93d2-43a8-a839-551427bada15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "1416f161-cad5-427b-8204-6e50c4f15e57" + "1ab2c929-04a2-4e58-95f4-2f4468d1954f" ], "x-ms-correlation-request-id": [ - "1416f161-cad5-427b-8204-6e50c4f15e57" + "1ab2c929-04a2-4e58-95f4-2f4468d1954f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T143642Z:1416f161-cad5-427b-8204-6e50c4f15e57" + "CENTRALINDIA:20220512T111829Z:1ab2c929-04a2-4e58-95f4-2f4468d1954f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:36:42 GMT" + "Thu, 12 May 2022 11:18:29 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fadd966-f022-4be0-a74d-e9b9bfc5556e" + "0011ed69-7db8-4519-9e5e-cf088b956162" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "e5841a9e-1b6a-4046-a13a-e18f65a8cac8" + "f6eb7c52-056a-4aa0-b568-5a884009fed1" ], "x-ms-correlation-request-id": [ - "e5841a9e-1b6a-4046-a13a-e18f65a8cac8" + "f6eb7c52-056a-4aa0-b568-5a884009fed1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143643Z:e5841a9e-1b6a-4046-a13a-e18f65a8cac8" + "CENTRALINDIA:20220512T111830Z:f6eb7c52-056a-4aa0-b568-5a884009fed1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:36:42 GMT" + "Thu, 12 May 2022 11:18:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fadd966-f022-4be0-a74d-e9b9bfc5556e" + "0011ed69-7db8-4519-9e5e-cf088b956162" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "2ccc3977-2b42-43cb-be64-a2c989b70a18" + "3ddf5281-00ba-4c0d-b216-6e9456ba17f1" ], "x-ms-correlation-request-id": [ - "2ccc3977-2b42-43cb-be64-a2c989b70a18" + "3ddf5281-00ba-4c0d-b216-6e9456ba17f1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143855Z:2ccc3977-2b42-43cb-be64-a2c989b70a18" + "CENTRALINDIA:20220512T112041Z:3ddf5281-00ba-4c0d-b216-6e9456ba17f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:38:55 GMT" + "Thu, 12 May 2022 11:20:40 GMT" ], "Content-Length": [ "2337" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:38:01.9651287Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount62-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"885878ab-5880-4b3e-b73a-689088779a71\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:19:46.3347001Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount62-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d6db6000-0abc-47ce-a8d6-275019694960\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc52dcd2-87f7-42e6-a8bc-999e79fb6ab3" + "10a19524-c23c-455f-957d-a2f59b2056e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "a10082a1-09c2-4b4c-a4c2-1b6e29face35" + "0cb94dba-976d-4621-8b35-be5c91f742e1" ], "x-ms-correlation-request-id": [ - "a10082a1-09c2-4b4c-a4c2-1b6e29face35" + "0cb94dba-976d-4621-8b35-be5c91f742e1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144030Z:a10082a1-09c2-4b4c-a4c2-1b6e29face35" + "JIOINDIACENTRAL:20220512T112225Z:0cb94dba-976d-4621-8b35-be5c91f742e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:40:30 GMT" + "Thu, 12 May 2022 11:22:25 GMT" ], "Content-Length": [ "2337" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:38:01.9651287Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount62-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"885878ab-5880-4b3e-b73a-689088779a71\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:19:46.3347001Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount62-1.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d6db6000-0abc-47ce-a8d6-275019694960\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://dbaccount62-1-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTE/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7fadd966-f022-4be0-a74d-e9b9bfc5556e" + "0011ed69-7db8-4519-9e5e-cf088b956162" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/operationResults/07fa4567-1229-4a94-87db-a2a63539bda5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/operationResults/03c958c9-ba68-42b5-8c37-af0f68e88a2c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "07fa4567-1229-4a94-87db-a2a63539bda5" + "03c958c9-ba68-42b5-8c37-af0f68e88a2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/07fa4567-1229-4a94-87db-a2a63539bda5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03c958c9-ba68-42b5-8c37-af0f68e88a2c?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,16 +303,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0acfac12-13fd-4d04-886a-f71c35705b51" + "b29377e6-10db-4908-879c-2e7d1ea3a61c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143654Z:0acfac12-13fd-4d04-886a-f71c35705b51" + "CENTRALINDIA:20220512T111839Z:b29377e6-10db-4908-879c-2e7d1ea3a61c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:36:53 GMT" + "Thu, 12 May 2022 11:18:39 GMT" ], "Content-Length": [ "2026" @@ -321,23 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:36:51.3180985Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"885878ab-5880-4b3e-b73a-689088779a71\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1\",\r\n \"name\": \"dbaccount62-1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:18:36.6043164Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d6db6000-0abc-47ce-a8d6-275019694960\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount62-1-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/07fa4567-1229-4a94-87db-a2a63539bda5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDdmYTQ1NjctMTIyOS00YTk0LTg3ZGItYTJhNjM1MzliZGE1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03c958c9-ba68-42b5-8c37-af0f68e88a2c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNjOTU4YzktYmE2OC00MmI1LThjMzctYWYwZjY4ZTg4YTJjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fadd966-f022-4be0-a74d-e9b9bfc5556e" + "0011ed69-7db8-4519-9e5e-cf088b956162" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -357,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "5b6a86f2-1b46-40c6-a2c4-94b48d5a3035" + "58ba85d3-689e-4dcc-944f-e84da869c3b4" ], "x-ms-correlation-request-id": [ - "5b6a86f2-1b46-40c6-a2c4-94b48d5a3035" + "58ba85d3-689e-4dcc-944f-e84da869c3b4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143724Z:5b6a86f2-1b46-40c6-a2c4-94b48d5a3035" + "CENTRALINDIA:20220512T111909Z:58ba85d3-689e-4dcc-944f-e84da869c3b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:37:23 GMT" + "Thu, 12 May 2022 11:19:09 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/07fa4567-1229-4a94-87db-a2a63539bda5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDdmYTQ1NjctMTIyOS00YTk0LTg3ZGItYTJhNjM1MzliZGE1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03c958c9-ba68-42b5-8c37-af0f68e88a2c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNjOTU4YzktYmE2OC00MmI1LThjMzctYWYwZjY4ZTg4YTJjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fadd966-f022-4be0-a74d-e9b9bfc5556e" + "0011ed69-7db8-4519-9e5e-cf088b956162" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "c020e93d-2912-4dfd-972c-b206d3e8e68e" + "32b02c01-dac0-4645-9673-7ddd7475042d" ], "x-ms-correlation-request-id": [ - "c020e93d-2912-4dfd-972c-b206d3e8e68e" + "32b02c01-dac0-4645-9673-7ddd7475042d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143754Z:c020e93d-2912-4dfd-972c-b206d3e8e68e" + "CENTRALINDIA:20220512T111940Z:32b02c01-dac0-4645-9673-7ddd7475042d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:37:54 GMT" + "Thu, 12 May 2022 11:19:40 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/07fa4567-1229-4a94-87db-a2a63539bda5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDdmYTQ1NjctMTIyOS00YTk0LTg3ZGItYTJhNjM1MzliZGE1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03c958c9-ba68-42b5-8c37-af0f68e88a2c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNjOTU4YzktYmE2OC00MmI1LThjMzctYWYwZjY4ZTg4YTJjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fadd966-f022-4be0-a74d-e9b9bfc5556e" + "0011ed69-7db8-4519-9e5e-cf088b956162" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "9377a8bc-70a8-4485-bc82-3ad3419968f3" + "8b629363-25f4-49fb-9b4f-79947730ff6d" ], "x-ms-correlation-request-id": [ - "9377a8bc-70a8-4485-bc82-3ad3419968f3" + "8b629363-25f4-49fb-9b4f-79947730ff6d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143825Z:9377a8bc-70a8-4485-bc82-3ad3419968f3" + "CENTRALINDIA:20220512T112010Z:8b629363-25f4-49fb-9b4f-79947730ff6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:38:24 GMT" + "Thu, 12 May 2022 11:20:09 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/07fa4567-1229-4a94-87db-a2a63539bda5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDdmYTQ1NjctMTIyOS00YTk0LTg3ZGItYTJhNjM1MzliZGE1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03c958c9-ba68-42b5-8c37-af0f68e88a2c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNjOTU4YzktYmE2OC00MmI1LThjMzctYWYwZjY4ZTg4YTJjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fadd966-f022-4be0-a74d-e9b9bfc5556e" + "0011ed69-7db8-4519-9e5e-cf088b956162" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "0152bbd3-0c01-4098-bf13-9e34180cd1c3" + "c71b954f-d06c-4959-a767-d935fd2adad7" ], "x-ms-correlation-request-id": [ - "0152bbd3-0c01-4098-bf13-9e34180cd1c3" + "c71b954f-d06c-4959-a767-d935fd2adad7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143855Z:0152bbd3-0c01-4098-bf13-9e34180cd1c3" + "CENTRALINDIA:20220512T112040Z:c71b954f-d06c-4959-a767-d935fd2adad7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:38:54 GMT" + "Thu, 12 May 2022 11:20:40 GMT" ], "Content-Length": [ "22" @@ -565,22 +565,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4647ce24-7dd2-4667-b4d9-f43b8543fdc9" + "0e03cd64-e3a0-4496-a5c9-e781335977d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -603,44 +603,44 @@ "11993" ], "x-ms-request-id": [ - "3125ffd9-70f8-484d-a6ea-f92916638ea4" + "ff9871fd-20fd-433e-81b9-dbac681494df" ], "x-ms-correlation-request-id": [ - "3125ffd9-70f8-484d-a6ea-f92916638ea4" + "ff9871fd-20fd-433e-81b9-dbac681494df" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143856Z:3125ffd9-70f8-484d-a6ea-f92916638ea4" + "JIOINDIACENTRAL:20220512T112042Z:ff9871fd-20fd-433e-81b9-dbac681494df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:38:55 GMT" + "Thu, 12 May 2022 11:20:42 GMT" ], "Content-Length": [ - "5578" + "6290" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 4647ce24-7dd2-4667-b4d9-f43b8543fdc9, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619816s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:38:55.9102169Z, RequestEndTime: 2022-03-08T14:38:55.9202171Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:37:47.5503120Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.166,\\\\\\\"memory\\\\\\\":626024844.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0156,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:38:07.5503079Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.186,\\\\\\\"memory\\\\\\\":623008344.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0132,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:38:17.5603056Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.021,\\\\\\\"memory\\\\\\\":621061800.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:38:27.5803209Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.364,\\\\\\\"memory\\\\\\\":628499036.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0336,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:38:37.5802617Z\\\\\\\",\\\\\\\"cpu\\\\\\\":8.074,\\\\\\\"memory\\\\\\\":626128700.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0077,\\\\\\\"availableThreads\\\\\\\":32757,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:38:47.5902308Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.051,\\\\\\\"memory\\\\\\\":623455928.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.014,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:38:55.9102169Z; ResponseTime: 2022-03-08T14:38:55.9202171Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619816s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.876, ActivityId: 4647ce24-7dd2-4667-b4d9-f43b8543fdc9, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9102169Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0065},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9102234Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0021},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9102255Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1946},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9104201Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0017},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9114218Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0739},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9114957Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:38:55.9102169Z; ResponseTime: 2022-03-08T14:38:55.9202171Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619817s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.19, ActivityId: 4647ce24-7dd2-4667-b4d9-f43b8543fdc9, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9102169Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9102195Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0009},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9102204Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1672},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9103876Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6559},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9120435Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0828},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:38:55.9121263Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 0e03cd64-e3a0-4496-a5c9-e781335977d5, Request URI: /apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747637s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:20:42.6984231Z, RequestEndTime: 2022-05-12T11:20:42.6984231Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:19:45.5585505Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.217,\\\\\\\"memory\\\\\\\":646557064.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0106,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:19:55.5684977Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.290,\\\\\\\"memory\\\\\\\":646349980.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0131,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:20:05.5784755Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.566,\\\\\\\"memory\\\\\\\":646014052.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0172,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:20:15.5884550Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.429,\\\\\\\"memory\\\\\\\":645575516.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0134,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:20:25.5984556Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.249,\\\\\\\"memory\\\\\\\":647086984.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:20:35.6184458Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.297,\\\\\\\"memory\\\\\\\":646965312.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0122,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:20:42.6984231Z; ResponseTime: 2022-05-12T11:20:42.6984231Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747637s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.732, ActivityId: 0e03cd64-e3a0-4496-a5c9-e781335977d5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6984231Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0089},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6984320Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6984342Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1919},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6986261Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0436},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6996697Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2721},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6999418Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:20:42.6484196Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:20:42.6484196Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:20:42.6484196Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":454,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:20:42.6984231Z; ResponseTime: 2022-05-12T11:20:42.6984231Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747635s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.011, ActivityId: 0e03cd64-e3a0-4496-a5c9-e781335977d5, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6984231Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6984261Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6984272Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0645},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.6984917Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6617},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.7001534Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.138},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:20:42.7002914Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:20:42.5284204Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:20:42.5284204Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:20:42.5284204Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":454,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4647ce24-7dd2-4667-b4d9-f43b8543fdc9" + "0e03cd64-e3a0-4496-a5c9-e781335977d5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -663,19 +663,19 @@ "11991" ], "x-ms-request-id": [ - "814cc3b4-ae5b-4538-a527-18fa070c883b" + "df8b4f84-7ffc-4ec3-8daa-4f0cdee2d14c" ], "x-ms-correlation-request-id": [ - "814cc3b4-ae5b-4538-a527-18fa070c883b" + "df8b4f84-7ffc-4ec3-8daa-4f0cdee2d14c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143927Z:814cc3b4-ae5b-4538-a527-18fa070c883b" + "JIOINDIACENTRAL:20220512T112115Z:df8b4f84-7ffc-4ec3-8daa-4f0cdee2d14c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:39:26 GMT" + "Thu, 12 May 2022 11:21:14 GMT" ], "Content-Length": [ "448" @@ -684,26 +684,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\",\r\n \"_rid\": \"gQgfAA==\",\r\n \"_self\": \"dbs/gQgfAA==/\",\r\n \"_etag\": \"\\\"00006d11-0000-0100-0000-62276a880000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646750344\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\",\r\n \"_rid\": \"OJhFAA==\",\r\n \"_self\": \"dbs/OJhFAA==/\",\r\n \"_etag\": \"\\\"00007216-0000-0100-0000-627ced920000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652354450\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4647ce24-7dd2-4667-b4d9-f43b8543fdc9" + "0e03cd64-e3a0-4496-a5c9-e781335977d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,13 +720,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/8d67a21a-20a5-4bcf-adb5-43fad897bd44?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/2e592ecc-7e62-403c-8811-96c6d598f9b9?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d67a21a-20a5-4bcf-adb5-43fad897bd44?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2e592ecc-7e62-403c-8811-96c6d598f9b9?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "8d67a21a-20a5-4bcf-adb5-43fad897bd44" + "2e592ecc-7e62-403c-8811-96c6d598f9b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,19 +738,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "9a13dd8c-616d-4acc-9dec-7302e928e4f5" + "617c5682-7839-465a-8af1-96032ab85fa8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143856Z:9a13dd8c-616d-4acc-9dec-7302e928e4f5" + "JIOINDIACENTRAL:20220512T112043Z:617c5682-7839-465a-8af1-96032ab85fa8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:38:56 GMT" + "Thu, 12 May 2022 11:20:43 GMT" ], "Content-Length": [ "21" @@ -763,19 +763,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d67a21a-20a5-4bcf-adb5-43fad897bd44?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ2N2EyMWEtMjBhNS00YmNmLWFkYjUtNDNmYWQ4OTdiZDQ0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2e592ecc-7e62-403c-8811-96c6d598f9b9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmU1OTJlY2MtN2U2Mi00MDNjLTg4MTEtOTZjNmQ1OThmOWI5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4647ce24-7dd2-4667-b4d9-f43b8543fdc9" + "0e03cd64-e3a0-4496-a5c9-e781335977d5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -798,19 +798,19 @@ "11992" ], "x-ms-request-id": [ - "b9754e81-134e-4436-955f-ec5908df4669" + "855b6564-0196-41a8-946c-6179f7fc26a0" ], "x-ms-correlation-request-id": [ - "b9754e81-134e-4436-955f-ec5908df4669" + "855b6564-0196-41a8-946c-6179f7fc26a0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143926Z:b9754e81-134e-4436-955f-ec5908df4669" + "JIOINDIACENTRAL:20220512T112114Z:855b6564-0196-41a8-946c-6179f7fc26a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:39:26 GMT" + "Thu, 12 May 2022 11:21:13 GMT" ], "Content-Length": [ "22" @@ -823,22 +823,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d6c83b1-d539-4942-9160-96554a2b4c6f" + "c2e96059-f88e-4d97-a0ea-22b5ffdd06ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -858,22 +858,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11982" ], "x-ms-request-id": [ - "a9db0393-5141-40c1-9796-d7cb1c68fdb1" + "df6387ed-f8c1-48b9-b3ab-7fd000498e23" ], "x-ms-correlation-request-id": [ - "a9db0393-5141-40c1-9796-d7cb1c68fdb1" + "df6387ed-f8c1-48b9-b3ab-7fd000498e23" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143927Z:a9db0393-5141-40c1-9796-d7cb1c68fdb1" + "JIOINDIACENTRAL:20220512T112117Z:df6387ed-f8c1-48b9-b3ab-7fd000498e23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:39:27 GMT" + "Thu, 12 May 2022 11:21:16 GMT" ], "Content-Length": [ "374" @@ -882,23 +882,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"OP-4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"6d-X\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d5c10de-c0b7-47e7-96f9-85f39e410526" + "d41fee38-a110-4d3b-808c-ed47f85a5bc0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -918,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-request-id": [ - "5a87d436-b416-4bcc-a7bb-b9156b28e5e5" + "686957ca-2f06-4245-931e-ab311dbd35cd" ], "x-ms-correlation-request-id": [ - "5a87d436-b416-4bcc-a7bb-b9156b28e5e5" + "686957ca-2f06-4245-931e-ab311dbd35cd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143958Z:5a87d436-b416-4bcc-a7bb-b9156b28e5e5" + "JIOINDIACENTRAL:20220512T112149Z:686957ca-2f06-4245-931e-ab311dbd35cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:39:58 GMT" + "Thu, 12 May 2022 11:21:49 GMT" ], "Content-Length": [ "374" @@ -942,23 +942,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"OP-4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"6d-X\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0bb0da7-dc3c-4cff-aa72-4dca442bdf38" + "cb5881bf-50c3-4ead-b4cb-dfe54f0743f2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -978,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11974" ], "x-ms-request-id": [ - "b9727673-1114-44bd-a1c2-f89b9f16234a" + "214dc6a1-ca76-47fe-b728-a3b95ee7f6da" ], "x-ms-correlation-request-id": [ - "b9727673-1114-44bd-a1c2-f89b9f16234a" + "214dc6a1-ca76-47fe-b728-a3b95ee7f6da" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144030Z:b9727673-1114-44bd-a1c2-f89b9f16234a" + "JIOINDIACENTRAL:20220512T112224Z:214dc6a1-ca76-47fe-b728-a3b95ee7f6da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:40:29 GMT" + "Thu, 12 May 2022 11:22:24 GMT" ], "Content-Length": [ "374" @@ -1002,23 +1002,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"OP-4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"6d-X\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c5e3b6c-05b0-4f70-9b81-95cefe2653c6" + "7b5229f3-292e-4aae-b52f-dde9f7828615" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11993" ], "x-ms-request-id": [ - "9f6bcff6-898a-4dd5-95ed-5771fca8beb3" + "72e7c755-5bb7-4774-ae15-742cfc2202c4" ], "x-ms-correlation-request-id": [ - "9f6bcff6-898a-4dd5-95ed-5771fca8beb3" + "72e7c755-5bb7-4774-ae15-742cfc2202c4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144102Z:9f6bcff6-898a-4dd5-95ed-5771fca8beb3" + "JIOINDIACENTRAL:20220512T112259Z:72e7c755-5bb7-4774-ae15-742cfc2202c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:41:02 GMT" + "Thu, 12 May 2022 11:22:58 GMT" ], "Content-Length": [ "373" @@ -1062,26 +1062,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"OP-4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"6d-X\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d5c10de-c0b7-47e7-96f9-85f39e410526" + "d41fee38-a110-4d3b-808c-ed47f85a5bc0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1098,13 +1098,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default/operationResults/c71831bd-c718-45ad-9fea-2220a178265f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default/operationResults/850b0b39-0cf5-41a3-81f4-5c1327dd650e?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c71831bd-c718-45ad-9fea-2220a178265f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/850b0b39-0cf5-41a3-81f4-5c1327dd650e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c71831bd-c718-45ad-9fea-2220a178265f" + "850b0b39-0cf5-41a3-81f4-5c1327dd650e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,19 +1116,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "63e77bf0-c38d-47c8-b1fd-44a9e62e3f0b" + "8395ec5e-5085-4821-b311-47b327d414dc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143928Z:63e77bf0-c38d-47c8-b1fd-44a9e62e3f0b" + "JIOINDIACENTRAL:20220512T112118Z:8395ec5e-5085-4821-b311-47b327d414dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:39:27 GMT" + "Thu, 12 May 2022 11:21:18 GMT" ], "Content-Length": [ "21" @@ -1141,22 +1141,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d0bb0da7-dc3c-4cff-aa72-4dca442bdf38" + "cb5881bf-50c3-4ead-b4cb-dfe54f0743f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,13 +1173,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default/operationResults/b7edbf57-5cb0-4263-87fe-9b92f53fa9c8?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default/operationResults/b8c97595-7f2b-4a6b-b95a-5487d3a5550c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b7edbf57-5cb0-4263-87fe-9b92f53fa9c8?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b8c97595-7f2b-4a6b-b95a-5487d3a5550c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b7edbf57-5cb0-4263-87fe-9b92f53fa9c8" + "b8c97595-7f2b-4a6b-b95a-5487d3a5550c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,19 +1191,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "40d82dd7-4d24-4ddf-a379-0be917547052" + "a07f90d2-f9ea-441c-8cd3-251b6a54c0c0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143959Z:40d82dd7-4d24-4ddf-a379-0be917547052" + "JIOINDIACENTRAL:20220512T112152Z:a07f90d2-f9ea-441c-8cd3-251b6a54c0c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:39:59 GMT" + "Thu, 12 May 2022 11:21:51 GMT" ], "Content-Length": [ "21" @@ -1216,22 +1216,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c5e3b6c-05b0-4f70-9b81-95cefe2653c6" + "7b5229f3-292e-4aae-b52f-dde9f7828615" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1248,13 +1248,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default/operationResults/c16797ad-85fc-419d-9504-733d74f513aa?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/throughputSettings/default/operationResults/a4650c4d-e0c7-42f8-9a8a-846ac254baf8?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c16797ad-85fc-419d-9504-733d74f513aa?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a4650c4d-e0c7-42f8-9a8a-846ac254baf8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "c16797ad-85fc-419d-9504-733d74f513aa" + "a4650c4d-e0c7-42f8-9a8a-846ac254baf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1266,19 +1266,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "b24e3130-ac5a-41fd-9709-755b04618a8e" + "ad0e1280-bf6a-4668-ab2b-53a65278b3ff" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144031Z:b24e3130-ac5a-41fd-9709-755b04618a8e" + "JIOINDIACENTRAL:20220512T112227Z:ad0e1280-bf6a-4668-ab2b-53a65278b3ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:40:30 GMT" + "Thu, 12 May 2022 11:22:27 GMT" ], "Content-Length": [ "21" @@ -1291,19 +1291,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c71831bd-c718-45ad-9fea-2220a178265f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzcxODMxYmQtYzcxOC00NWFkLTlmZWEtMjIyMGExNzgyNjVmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/850b0b39-0cf5-41a3-81f4-5c1327dd650e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODUwYjBiMzktMGNmNS00MWEzLTgxZjQtNWMxMzI3ZGQ2NTBlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d5c10de-c0b7-47e7-96f9-85f39e410526" + "d41fee38-a110-4d3b-808c-ed47f85a5bc0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1323,22 +1323,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-request-id": [ - "3ed9d351-0a0b-4d7e-8d35-cfe472d9bc67" + "1232a2ff-4e15-4f8a-be43-e7ff1cfe2da9" ], "x-ms-correlation-request-id": [ - "3ed9d351-0a0b-4d7e-8d35-cfe472d9bc67" + "1232a2ff-4e15-4f8a-be43-e7ff1cfe2da9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T143958Z:3ed9d351-0a0b-4d7e-8d35-cfe472d9bc67" + "JIOINDIACENTRAL:20220512T112149Z:1232a2ff-4e15-4f8a-be43-e7ff1cfe2da9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:39:58 GMT" + "Thu, 12 May 2022 11:21:48 GMT" ], "Content-Length": [ "22" @@ -1351,19 +1351,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b7edbf57-5cb0-4263-87fe-9b92f53fa9c8?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjdlZGJmNTctNWNiMC00MjYzLTg3ZmUtOWI5MmY1M2ZhOWM4P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b8c97595-7f2b-4a6b-b95a-5487d3a5550c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjhjOTc1OTUtN2YyYi00YTZiLWI5NWEtNTQ4N2QzYTU1NTBjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0bb0da7-dc3c-4cff-aa72-4dca442bdf38" + "cb5881bf-50c3-4ead-b4cb-dfe54f0743f2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1383,22 +1383,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11975" ], "x-ms-request-id": [ - "faa05541-8f73-49a8-b6cd-444016456495" + "44fa4ba1-0f7b-4ba1-9b7d-522570cfda48" ], "x-ms-correlation-request-id": [ - "faa05541-8f73-49a8-b6cd-444016456495" + "44fa4ba1-0f7b-4ba1-9b7d-522570cfda48" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144029Z:faa05541-8f73-49a8-b6cd-444016456495" + "JIOINDIACENTRAL:20220512T112223Z:44fa4ba1-0f7b-4ba1-9b7d-522570cfda48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:40:29 GMT" + "Thu, 12 May 2022 11:22:23 GMT" ], "Content-Length": [ "22" @@ -1411,19 +1411,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c16797ad-85fc-419d-9504-733d74f513aa?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzE2Nzk3YWQtODVmYy00MTlkLTk1MDQtNzMzZDc0ZjUxM2FhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a4650c4d-e0c7-42f8-9a8a-846ac254baf8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTQ2NTBjNGQtZTBjNy00MmY4LTlhOGEtODQ2YWMyNTRiYWY4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c5e3b6c-05b0-4f70-9b81-95cefe2653c6" + "7b5229f3-292e-4aae-b52f-dde9f7828615" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1443,22 +1443,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11994" ], "x-ms-request-id": [ - "f89f96f1-5b47-48c9-829e-5b16f5be55ce" + "b7c37423-4179-4ad9-96ec-5a679a4527f1" ], "x-ms-correlation-request-id": [ - "f89f96f1-5b47-48c9-829e-5b16f5be55ce" + "b7c37423-4179-4ad9-96ec-5a679a4527f1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144101Z:f89f96f1-5b47-48c9-829e-5b16f5be55ce" + "JIOINDIACENTRAL:20220512T112258Z:b7c37423-4179-4ad9-96ec-5a679a4527f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:41:00 GMT" + "Thu, 12 May 2022 11:22:58 GMT" ], "Content-Length": [ "22" @@ -1471,22 +1471,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea57c94a-ac5a-4b5e-813d-32530f874680" + "e6632295-442a-4aea-9f31-054b6face403" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1506,47 +1506,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11979" ], "x-ms-request-id": [ - "d98d79a4-927d-40cd-bc15-2e272dfee0b8" + "b33ac131-d9f5-4528-9d1f-9cfcc38eb9c5" ], "x-ms-correlation-request-id": [ - "d98d79a4-927d-40cd-bc15-2e272dfee0b8" + "b33ac131-d9f5-4528-9d1f-9cfcc38eb9c5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144102Z:d98d79a4-927d-40cd-bc15-2e272dfee0b8" + "JIOINDIACENTRAL:20220512T112300Z:b33ac131-d9f5-4528-9d1f-9cfcc38eb9c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:41:02 GMT" + "Thu, 12 May 2022 11:23:00 GMT" ], "Content-Length": [ - "5608" + "6318" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: ea57c94a-ac5a-4b5e-813d-32530f874680, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619815s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:41:02.7676061Z, RequestEndTime: 2022-03-08T14:41:02.7676061Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:40:02.7373218Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.622,\\\\\\\"memory\\\\\\\":632930424.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0153,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:40:12.7473805Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.605,\\\\\\\"memory\\\\\\\":632284284.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0076,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:40:22.7574303Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.534,\\\\\\\"memory\\\\\\\":631760048.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0164,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:40:32.7674690Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.781,\\\\\\\"memory\\\\\\\":631509216.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0112,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:40:42.7675226Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.603,\\\\\\\"memory\\\\\\\":631166884.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.017,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:40:52.7775667Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.168,\\\\\\\"memory\\\\\\\":630947184.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0129,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:41:02.7676061Z; ResponseTime: 2022-03-08T14:41:02.7676061Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619815s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.064, ActivityId: ea57c94a-ac5a-4b5e-813d-32530f874680, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7676061Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0143},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7676204Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7676234Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2002},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7678236Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6535},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7694771Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2074},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7696845Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:41:02.7676061Z; ResponseTime: 2022-03-08T14:41:02.7676061Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619817s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.019, ActivityId: ea57c94a-ac5a-4b5e-813d-32530f874680, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7676061Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0035},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7676096Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7676108Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1506},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7677614Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4617},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7692231Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1937},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:41:02.7694168Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"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/dbName3/colls/containerName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: e6632295-442a-4aea-9f31-054b6face403, Request URI: /apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747636s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:23:00.9071882Z, RequestEndTime: 2022-05-12T11:23:00.9071882Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:22:01.1283474Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.434,\\\\\\\"memory\\\\\\\":650215604.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0132,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:22:11.1380993Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.298,\\\\\\\"memory\\\\\\\":650375684.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0167,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:22:21.1479033Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.419,\\\\\\\"memory\\\\\\\":650267372.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0179,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:22:31.1577500Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.244,\\\\\\\"memory\\\\\\\":650396244.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0216,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:22:41.1675704Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.483,\\\\\\\"memory\\\\\\\":652629736.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.01,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:22:51.1773611Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.266,\\\\\\\"memory\\\\\\\":652312816.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0129,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:23:00.9071882Z; ResponseTime: 2022-05-12T11:23:00.9071882Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747636s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.713, ActivityId: e6632295-442a-4aea-9f31-054b6face403, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9071882Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0083},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9071965Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9071985Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1789},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9073774Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9693},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9083467Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1678},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9085145Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:23:00.8971873Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:23:00.8971873Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:23:00.9071882Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:23:00.9071882Z; ResponseTime: 2022-05-12T11:23:00.9071882Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747635s, LSN: 11, GlobalCommittedLsn: 11, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#11, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.801, ActivityId: e6632295-442a-4aea-9f31-054b6face403, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9071882Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9071908Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0009},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9071917Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1182},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9073099Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0689},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9083788Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.126},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:23:00.9085048Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:23:00.9071882Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:23:00.9071882Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:23:00.9071882Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName3/colls/containerName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea57c94a-ac5a-4b5e-813d-32530f874680" + "e6632295-442a-4aea-9f31-054b6face403" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1566,22 +1566,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11977" ], "x-ms-request-id": [ - "c8337acc-7959-4913-9ae7-d2779f96cfd3" + "d8c43ef9-cfbd-4350-8077-2b59391de3b3" ], "x-ms-correlation-request-id": [ - "c8337acc-7959-4913-9ae7-d2779f96cfd3" + "d8c43ef9-cfbd-4350-8077-2b59391de3b3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144134Z:c8337acc-7959-4913-9ae7-d2779f96cfd3" + "JIOINDIACENTRAL:20220512T112334Z:d8c43ef9-cfbd-4350-8077-2b59391de3b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:41:33 GMT" + "Thu, 12 May 2022 11:23:33 GMT" ], "Content-Length": [ "1082" @@ -1590,26 +1590,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"containerName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"gQgfAJa4-FQ=\",\r\n \"_ts\": 1646750471,\r\n \"_self\": \"dbs/gQgfAA==/colls/gQgfAJa4-FQ=/\",\r\n \"_etag\": \"\\\"00007711-0000-0100-0000-62276b070000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"containerName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"OJhFAJsIkWc=\",\r\n \"_ts\": 1652354589,\r\n \"_self\": \"dbs/OJhFAA==/colls/OJhFAJsIkWc=/\",\r\n \"_etag\": \"\\\"00007c16-0000-0100-0000-627cee1d0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 800\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ea57c94a-ac5a-4b5e-813d-32530f874680" + "e6632295-442a-4aea-9f31-054b6face403" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1626,13 +1626,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/ba85a81b-b851-497a-b5fe-c91d1581c905?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/5a917670-e848-433f-b306-2e29068a99ca?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ba85a81b-b851-497a-b5fe-c91d1581c905?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5a917670-e848-433f-b306-2e29068a99ca?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ba85a81b-b851-497a-b5fe-c91d1581c905" + "5a917670-e848-433f-b306-2e29068a99ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1644,19 +1644,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "4e6fc900-e178-45a0-908a-2f29bae932b1" + "b7c79a45-c32e-4a66-b9ac-e5cd3e7af3cd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144103Z:4e6fc900-e178-45a0-908a-2f29bae932b1" + "JIOINDIACENTRAL:20220512T112302Z:b7c79a45-c32e-4a66-b9ac-e5cd3e7af3cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:41:03 GMT" + "Thu, 12 May 2022 11:23:02 GMT" ], "Content-Length": [ "21" @@ -1669,19 +1669,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ba85a81b-b851-497a-b5fe-c91d1581c905?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmE4NWE4MWItYjg1MS00OTdhLWI1ZmUtYzkxZDE1ODFjOTA1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5a917670-e848-433f-b306-2e29068a99ca?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWE5MTc2NzAtZTg0OC00MzNmLWIzMDYtMmUyOTA2OGE5OWNhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea57c94a-ac5a-4b5e-813d-32530f874680" + "e6632295-442a-4aea-9f31-054b6face403" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1701,22 +1701,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11978" ], "x-ms-request-id": [ - "d614d885-addb-4025-83c0-aa1ac1d721bc" + "5b0c2b57-5311-4c03-b375-9f2a9a83570b" ], "x-ms-correlation-request-id": [ - "d614d885-addb-4025-83c0-aa1ac1d721bc" + "5b0c2b57-5311-4c03-b375-9f2a9a83570b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144133Z:d614d885-addb-4025-83c0-aa1ac1d721bc" + "JIOINDIACENTRAL:20220512T112333Z:5b0c2b57-5311-4c03-b375-9f2a9a83570b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:41:33 GMT" + "Thu, 12 May 2022 11:23:32 GMT" ], "Content-Length": [ "22" @@ -1729,22 +1729,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "378f43fc-70c6-4ed8-8018-9dc53d3a3d3d" + "e1ddb2da-7869-49b0-b450-c5593e904120" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1764,22 +1764,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11992" ], "x-ms-request-id": [ - "c5971316-e26b-4534-b7df-23fd44682cfb" + "3c3a4979-13a0-4cdf-a88b-0ebc1d44d786" ], "x-ms-correlation-request-id": [ - "c5971316-e26b-4534-b7df-23fd44682cfb" + "3c3a4979-13a0-4cdf-a88b-0ebc1d44d786" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144134Z:c5971316-e26b-4534-b7df-23fd44682cfb" + "JIOINDIACENTRAL:20220512T112335Z:3c3a4979-13a0-4cdf-a88b-0ebc1d44d786" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:41:33 GMT" + "Thu, 12 May 2022 11:23:35 GMT" ], "Content-Length": [ "409" @@ -1788,23 +1788,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Mj2c\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"WzTa\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7ef2195-1fd0-4706-bd51-0921e0c8104e" + "1f6585a7-9719-428a-bb82-870ed414410f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1824,22 +1824,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11995" ], "x-ms-request-id": [ - "70466717-14a7-41b3-944a-cbd400b6da9f" + "a4cc297f-fc17-44a9-a67c-8c3e016071eb" ], "x-ms-correlation-request-id": [ - "70466717-14a7-41b3-944a-cbd400b6da9f" + "a4cc297f-fc17-44a9-a67c-8c3e016071eb" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144205Z:70466717-14a7-41b3-944a-cbd400b6da9f" + "CENTRALINDIA:20220512T112410Z:a4cc297f-fc17-44a9-a67c-8c3e016071eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:42:05 GMT" + "Thu, 12 May 2022 11:24:10 GMT" ], "Content-Length": [ "409" @@ -1848,23 +1848,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Mj2c\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"WzTa\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9743845c-88e4-44a9-99a6-d9ecb7364d5a" + "057f1107-4671-412e-ae58-2bdbe19bc608" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1884,22 +1884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11998" ], "x-ms-request-id": [ - "95121554-f604-4fb9-b651-7259843c2e33" + "e914fc4c-9073-403b-9836-4bdf56a5149b" ], "x-ms-correlation-request-id": [ - "95121554-f604-4fb9-b651-7259843c2e33" + "e914fc4c-9073-403b-9836-4bdf56a5149b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144237Z:95121554-f604-4fb9-b651-7259843c2e33" + "CENTRALINDIA:20220512T112444Z:e914fc4c-9073-403b-9836-4bdf56a5149b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:42:36 GMT" + "Thu, 12 May 2022 11:24:44 GMT" ], "Content-Length": [ "409" @@ -1908,23 +1908,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Mj2c\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"WzTa\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a303deea-e410-4484-951e-72c62ce8eaa3" + "21c2da53-283c-4b59-9b36-81d2c66444e9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1944,22 +1944,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11996" ], "x-ms-request-id": [ - "dbaa05ae-a08c-4358-9a8a-693b0b69d1d0" + "eb4315f2-25eb-4d13-8713-6adcb5b7aa2c" ], "x-ms-correlation-request-id": [ - "dbaa05ae-a08c-4358-9a8a-693b0b69d1d0" + "eb4315f2-25eb-4d13-8713-6adcb5b7aa2c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144308Z:dbaa05ae-a08c-4358-9a8a-693b0b69d1d0" + "CENTRALINDIA:20220512T112519Z:eb4315f2-25eb-4d13-8713-6adcb5b7aa2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:08 GMT" + "Thu, 12 May 2022 11:25:18 GMT" ], "Content-Length": [ "409" @@ -1968,26 +1968,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Mj2c\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"WzTa\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 700\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a7ef2195-1fd0-4706-bd51-0921e0c8104e" + "1f6585a7-9719-428a-bb82-870ed414410f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2004,13 +2004,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/1175c7c6-edb6-47d6-8b75-156261db5756?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/7772ca45-3f88-4f83-acdc-3410c36b46be?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1175c7c6-edb6-47d6-8b75-156261db5756?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7772ca45-3f88-4f83-acdc-3410c36b46be?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "1175c7c6-edb6-47d6-8b75-156261db5756" + "7772ca45-3f88-4f83-acdc-3410c36b46be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2022,19 +2022,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "166ffad9-93b6-4c45-99b2-5eb824a0e431" + "7dcc50c2-91b8-4e0b-9719-8c8c92cc2219" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144135Z:166ffad9-93b6-4c45-99b2-5eb824a0e431" + "CENTRALINDIA:20220512T112338Z:7dcc50c2-91b8-4e0b-9719-8c8c92cc2219" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:41:34 GMT" + "Thu, 12 May 2022 11:23:38 GMT" ], "Content-Length": [ "21" @@ -2047,22 +2047,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9743845c-88e4-44a9-99a6-d9ecb7364d5a" + "057f1107-4671-412e-ae58-2bdbe19bc608" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2079,13 +2079,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/e549fff0-cfb1-4697-8316-c5aeaa2b3354?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/af5ca8d6-4df4-4bb5-b3b1-e8d3052ac362?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e549fff0-cfb1-4697-8316-c5aeaa2b3354?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/af5ca8d6-4df4-4bb5-b3b1-e8d3052ac362?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "e549fff0-cfb1-4697-8316-c5aeaa2b3354" + "af5ca8d6-4df4-4bb5-b3b1-e8d3052ac362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2097,19 +2097,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "d0052193-01db-43d9-b4c2-b87f80234e78" + "5d57e576-c6a5-4cdd-b6bf-72eb624512a3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144206Z:d0052193-01db-43d9-b4c2-b87f80234e78" + "CENTRALINDIA:20220512T112413Z:5d57e576-c6a5-4cdd-b6bf-72eb624512a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:42:06 GMT" + "Thu, 12 May 2022 11:24:12 GMT" ], "Content-Length": [ "21" @@ -2122,22 +2122,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a303deea-e410-4484-951e-72c62ce8eaa3" + "21c2da53-283c-4b59-9b36-81d2c66444e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2154,13 +2154,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/b8924389-cefd-4525-8fcc-2c569480a905?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/45c0be2d-f90a-47a3-ac29-37edaf6da786?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b8924389-cefd-4525-8fcc-2c569480a905?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45c0be2d-f90a-47a3-ac29-37edaf6da786?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b8924389-cefd-4525-8fcc-2c569480a905" + "45c0be2d-f90a-47a3-ac29-37edaf6da786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2172,19 +2172,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "6f63306d-b22f-448f-8c75-0de3163042a9" + "c7ff2645-883c-49f9-acea-8a36402ed876" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144237Z:6f63306d-b22f-448f-8c75-0de3163042a9" + "CENTRALINDIA:20220512T112447Z:c7ff2645-883c-49f9-acea-8a36402ed876" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:42:37 GMT" + "Thu, 12 May 2022 11:24:46 GMT" ], "Content-Length": [ "21" @@ -2197,19 +2197,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1175c7c6-edb6-47d6-8b75-156261db5756?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTE3NWM3YzYtZWRiNi00N2Q2LThiNzUtMTU2MjYxZGI1NzU2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7772ca45-3f88-4f83-acdc-3410c36b46be?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzc3MmNhNDUtM2Y4OC00ZjgzLWFjZGMtMzQxMGMzNmI0NmJlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7ef2195-1fd0-4706-bd51-0921e0c8104e" + "1f6585a7-9719-428a-bb82-870ed414410f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2229,22 +2229,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11996" ], "x-ms-request-id": [ - "f5b68795-bdfc-480b-9d38-b54410d144be" + "12b4b5ad-fc41-4bd4-a550-abc75652f332" ], "x-ms-correlation-request-id": [ - "f5b68795-bdfc-480b-9d38-b54410d144be" + "12b4b5ad-fc41-4bd4-a550-abc75652f332" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144205Z:f5b68795-bdfc-480b-9d38-b54410d144be" + "CENTRALINDIA:20220512T112409Z:12b4b5ad-fc41-4bd4-a550-abc75652f332" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:42:05 GMT" + "Thu, 12 May 2022 11:24:09 GMT" ], "Content-Length": [ "22" @@ -2257,19 +2257,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e549fff0-cfb1-4697-8316-c5aeaa2b3354?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTU0OWZmZjAtY2ZiMS00Njk3LTgzMTYtYzVhZWFhMmIzMzU0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/af5ca8d6-4df4-4bb5-b3b1-e8d3052ac362?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWY1Y2E4ZDYtNGRmNC00YmI1LWIzYjEtZThkMzA1MmFjMzYyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9743845c-88e4-44a9-99a6-d9ecb7364d5a" + "057f1107-4671-412e-ae58-2bdbe19bc608" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2289,22 +2289,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-request-id": [ - "5730d868-f824-48f1-a636-26f157500b5a" + "169c7df8-8424-4f86-8bc9-4691ebc1aff9" ], "x-ms-correlation-request-id": [ - "5730d868-f824-48f1-a636-26f157500b5a" + "169c7df8-8424-4f86-8bc9-4691ebc1aff9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144236Z:5730d868-f824-48f1-a636-26f157500b5a" + "CENTRALINDIA:20220512T112443Z:169c7df8-8424-4f86-8bc9-4691ebc1aff9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:42:36 GMT" + "Thu, 12 May 2022 11:24:42 GMT" ], "Content-Length": [ "22" @@ -2317,19 +2317,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b8924389-cefd-4525-8fcc-2c569480a905?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjg5MjQzODktY2VmZC00NTI1LThmY2MtMmM1Njk0ODBhOTA1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45c0be2d-f90a-47a3-ac29-37edaf6da786?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDVjMGJlMmQtZjkwYS00N2EzLWFjMjktMzdlZGFmNmRhNzg2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a303deea-e410-4484-951e-72c62ce8eaa3" + "21c2da53-283c-4b59-9b36-81d2c66444e9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2349,22 +2349,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11997" ], "x-ms-request-id": [ - "8581cda8-83c9-49ff-bfd3-1748df3046e6" + "4aa59169-6223-4951-b6af-f33b4a19eeea" ], "x-ms-correlation-request-id": [ - "8581cda8-83c9-49ff-bfd3-1748df3046e6" + "4aa59169-6223-4951-b6af-f33b4a19eeea" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144308Z:8581cda8-83c9-49ff-bfd3-1748df3046e6" + "CENTRALINDIA:20220512T112517Z:4aa59169-6223-4951-b6af-f33b4a19eeea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:07 GMT" + "Thu, 12 May 2022 11:25:17 GMT" ], "Content-Length": [ "22" @@ -2377,22 +2377,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe7455fb-8c1b-4bd3-8dc2-334361165c41" + "d9786f78-9c54-4dac-af98-bce1fb31a031" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2412,47 +2412,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11997" ], "x-ms-request-id": [ - "bed593ba-5767-439f-9c55-dfca97193327" + "daabb3a7-e19d-4b55-b7f0-72611b43f0c9" ], "x-ms-correlation-request-id": [ - "bed593ba-5767-439f-9c55-dfca97193327" + "daabb3a7-e19d-4b55-b7f0-72611b43f0c9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144308Z:bed593ba-5767-439f-9c55-dfca97193327" + "CENTRALINDIA:20220512T112522Z:daabb3a7-e19d-4b55-b7f0-72611b43f0c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:08 GMT" + "Thu, 12 May 2022 11:25:22 GMT" ], "Content-Length": [ - "5584" + "6298" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: fe7455fb-8c1b-4bd3-8dc2-334361165c41, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619817s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:43:08.7180859Z, RequestEndTime: 2022-03-08T14:43:08.7280765Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:42:12.8478840Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.724,\\\\\\\"memory\\\\\\\":632563552.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0144,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:42:22.8579165Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.826,\\\\\\\"memory\\\\\\\":630464396.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0135,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:42:32.8579471Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.080,\\\\\\\"memory\\\\\\\":627933304.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0202,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:42:42.8679600Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.122,\\\\\\\"memory\\\\\\\":637120456.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.01,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:42:52.8779933Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.739,\\\\\\\"memory\\\\\\\":634267948.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0235,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:43:02.8880539Z\\\\\\\",\\\\\\\"cpu\\\\\\\":11.088,\\\\\\\"memory\\\\\\\":633391192.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0131,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:43:08.7180859Z; ResponseTime: 2022-03-08T14:43:08.7280765Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619817s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.266, ActivityId: fe7455fb-8c1b-4bd3-8dc2-334361165c41, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7180859Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0074},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7180933Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7180959Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0949},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7181908Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5924},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7187832Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0797},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7188629Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:43:08.7180859Z; ResponseTime: 2022-03-08T14:43:08.7280765Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619815s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.261, ActivityId: fe7455fb-8c1b-4bd3-8dc2-334361165c41, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7180859Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0034},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7180893Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7180904Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.055},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7181454Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6126},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7187580Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0731},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:08.7188311Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":456,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: d9786f78-9c54-4dac-af98-bce1fb31a031, Request URI: /apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747637s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:25:22.5661020Z, RequestEndTime: 2022-05-12T11:25:22.5661020Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:24:32.2265333Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.227,\\\\\\\"memory\\\\\\\":648544856.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0122,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:24:42.2364625Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.363,\\\\\\\"memory\\\\\\\":648413684.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0089,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:24:52.2463730Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.524,\\\\\\\"memory\\\\\\\":648253188.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0359,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:25:02.2562987Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.229,\\\\\\\"memory\\\\\\\":648250436.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0161,\\\\\\\"availableThreads\\\\\\\":32758,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:25:12.2662111Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.441,\\\\\\\"memory\\\\\\\":648251612.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0241,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:25:22.2861132Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.290,\\\\\\\"memory\\\\\\\":648127044.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0128,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:25:22.5661020Z; ResponseTime: 2022-05-12T11:25:22.5661020Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747637s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.361, ActivityId: d9786f78-9c54-4dac-af98-bce1fb31a031, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5661020Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0067},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5661087Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5661109Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0872},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5661981Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7265},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5669246Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0232},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5669478Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:25:22.5561021Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:25:22.5561021Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:25:22.5661020Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":452,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:25:22.5661020Z; ResponseTime: 2022-05-12T11:25:22.5661020Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747636s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.192, ActivityId: d9786f78-9c54-4dac-af98-bce1fb31a031, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5661020Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5661053Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5661064Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0556},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5661620Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4011},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5665631Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0408},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:22.5666039Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:25:22.5661020Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:25:22.5661020Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:25:22.5661020Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":452,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe7455fb-8c1b-4bd3-8dc2-334361165c41" + "d9786f78-9c54-4dac-af98-bce1fb31a031" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2472,22 +2472,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11995" ], "x-ms-request-id": [ - "b9962aef-d18f-4567-8a44-be89a8feb71d" + "d1425dcd-1e7c-4758-b8df-203aaa867871" ], "x-ms-correlation-request-id": [ - "b9962aef-d18f-4567-8a44-be89a8feb71d" + "d1425dcd-1e7c-4758-b8df-203aaa867871" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144339Z:b9962aef-d18f-4567-8a44-be89a8feb71d" + "CENTRALINDIA:20220512T112555Z:d1425dcd-1e7c-4758-b8df-203aaa867871" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:38 GMT" + "Thu, 12 May 2022 11:25:54 GMT" ], "Content-Length": [ "448" @@ -2496,26 +2496,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"x11fAA==\",\r\n \"_self\": \"dbs/x11fAA==/\",\r\n \"_etag\": \"\\\"00007f11-0000-0100-0000-62276b850000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1646750597\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"-9V-AA==\",\r\n \"_self\": \"dbs/-9V-AA==/\",\r\n \"_etag\": \"\\\"00008416-0000-0100-0000-627ceeaa0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1652354730\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\"\r\n },\r\n \"options\": {\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 8000\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fe7455fb-8c1b-4bd3-8dc2-334361165c41" + "d9786f78-9c54-4dac-af98-bce1fb31a031" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2532,13 +2532,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/84dded71-ce47-4c01-9389-d7376d24cef4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/9110e4c1-2403-4ca3-9ad7-baba0ac1143b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84dded71-ce47-4c01-9389-d7376d24cef4?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9110e4c1-2403-4ca3-9ad7-baba0ac1143b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "84dded71-ce47-4c01-9389-d7376d24cef4" + "9110e4c1-2403-4ca3-9ad7-baba0ac1143b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2550,19 +2550,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "cd45c7f8-4b95-44e2-9304-20e5da4344ad" + "9aaee15c-8d05-4365-a1c3-3488d282864a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144309Z:cd45c7f8-4b95-44e2-9304-20e5da4344ad" + "CENTRALINDIA:20220512T112523Z:9aaee15c-8d05-4365-a1c3-3488d282864a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:08 GMT" + "Thu, 12 May 2022 11:25:23 GMT" ], "Content-Length": [ "21" @@ -2575,19 +2575,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84dded71-ce47-4c01-9389-d7376d24cef4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRkZGVkNzEtY2U0Ny00YzAxLTkzODktZDczNzZkMjRjZWY0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9110e4c1-2403-4ca3-9ad7-baba0ac1143b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTExMGU0YzEtMjQwMy00Y2EzLTlhZDctYmFiYTBhYzExNDNiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe7455fb-8c1b-4bd3-8dc2-334361165c41" + "d9786f78-9c54-4dac-af98-bce1fb31a031" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2607,22 +2607,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11996" ], "x-ms-request-id": [ - "9d52d481-8272-4b70-bfa9-7431d080b230" + "c05511b9-2e36-41a8-8423-339f4a7964d2" ], "x-ms-correlation-request-id": [ - "9d52d481-8272-4b70-bfa9-7431d080b230" + "c05511b9-2e36-41a8-8423-339f4a7964d2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144339Z:9d52d481-8272-4b70-bfa9-7431d080b230" + "CENTRALINDIA:20220512T112554Z:c05511b9-2e36-41a8-8423-339f4a7964d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:38 GMT" + "Thu, 12 May 2022 11:25:54 GMT" ], "Content-Length": [ "22" @@ -2635,22 +2635,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab298b98-757e-4453-bf40-b18f9bff9629" + "86a92c3d-706b-4a20-a748-eb014123ff71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2670,22 +2670,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11992" ], "x-ms-request-id": [ - "3e39b6df-8747-4e54-81b9-dd8d0e725cc7" + "9f4caaf5-05d5-49a1-8a51-1aa7cb168c69" ], "x-ms-correlation-request-id": [ - "3e39b6df-8747-4e54-81b9-dd8d0e725cc7" + "9f4caaf5-05d5-49a1-8a51-1aa7cb168c69" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144340Z:3e39b6df-8747-4e54-81b9-dd8d0e725cc7" + "JIOINDIACENTRAL:20220512T112556Z:9f4caaf5-05d5-49a1-8a51-1aa7cb168c69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:40 GMT" + "Thu, 12 May 2022 11:25:56 GMT" ], "Content-Length": [ "417" @@ -2694,26 +2694,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"3TgM\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 8000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"h9at\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 800,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 8000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91491bae-86de-4ddf-b07b-91bd92d3ec3f" + "aa7ef7cb-2475-479a-bc62-4dff14d9637a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2733,47 +2733,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11989" ], "x-ms-request-id": [ - "10fbefe9-7f6e-4e0a-b4e8-e2161b44c031" + "e5bf550e-ac1b-4e4a-aa19-422db6c90701" ], "x-ms-correlation-request-id": [ - "10fbefe9-7f6e-4e0a-b4e8-e2161b44c031" + "e5bf550e-ac1b-4e4a-aa19-422db6c90701" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144340Z:10fbefe9-7f6e-4e0a-b4e8-e2161b44c031" + "JIOINDIACENTRAL:20220512T112559Z:e5bf550e-ac1b-4e4a-aa19-422db6c90701" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:40 GMT" + "Thu, 12 May 2022 11:25:58 GMT" ], "Content-Length": [ - "5609" + "6322" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 91491bae-86de-4ddf-b07b-91bd92d3ec3f, Request URI: /apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619815s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:43:40.5283002Z, RequestEndTime: 2022-03-08T14:43:40.5283002Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:42:42.8679600Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.122,\\\\\\\"memory\\\\\\\":637120456.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.01,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:42:52.8779933Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.739,\\\\\\\"memory\\\\\\\":634267948.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0235,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:43:02.8880539Z\\\\\\\",\\\\\\\"cpu\\\\\\\":11.088,\\\\\\\"memory\\\\\\\":633391192.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0131,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:43:12.8981046Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.928,\\\\\\\"memory\\\\\\\":631705788.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0157,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:43:22.9081373Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.734,\\\\\\\"memory\\\\\\\":630537876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0109,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:43:32.9181833Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.513,\\\\\\\"memory\\\\\\\":630027884.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:43:40.5283002Z; ResponseTime: 2022-03-08T14:43:40.5283002Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619815s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.215, ActivityId: 91491bae-86de-4ddf-b07b-91bd92d3ec3f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5283002Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0137},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5283139Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0025},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5283164Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1684},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5284848Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4429},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5289277Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0262},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5289539Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":493,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:43:40.5283002Z; ResponseTime: 2022-03-08T14:43:40.5283002Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/c897d528-9633-429d-a831-44567c908025/services/23219ec1-665a-45ad-9fd2-ba1894f16f31/partitions/ee06bbae-e83b-42ed-8aee-2e8a09ac0ffd/replicas/132912231035619816s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.284, ActivityId: 91491bae-86de-4ddf-b07b-91bd92d3ec3f, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5283002Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.004},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5283042Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5283053Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1367},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5284420Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5371},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5289791Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0157},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:43:40.5289948Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":493,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4/colls/containerName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: aa7ef7cb-2475-479a-bc62-4dff14d9637a, Request URI: /apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747637s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:25:59.0176152Z, RequestEndTime: 2022-05-12T11:25:59.0176152Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:24:55.4382196Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.653,\\\\\\\"memory\\\\\\\":652404144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0072,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:25:05.4480934Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.539,\\\\\\\"memory\\\\\\\":652265504.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0153,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:25:15.4580150Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.426,\\\\\\\"memory\\\\\\\":652101368.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0234,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:25:35.4678309Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.266,\\\\\\\"memory\\\\\\\":652870836.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0167,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:25:45.4777214Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.249,\\\\\\\"memory\\\\\\\":652875768.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0167,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:25:55.4976454Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.202,\\\\\\\"memory\\\\\\\":652759704.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0159,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:25:59.0176152Z; ResponseTime: 2022-05-12T11:25:59.0176152Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747637s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.524, ActivityId: aa7ef7cb-2475-479a-bc62-4dff14d9637a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0176152Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0141},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0176293Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0023},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0176316Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.183},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0178146Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9296},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0187442Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0235},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0187677Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:25:59.0076197Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:25:59.0076197Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:25:59.0076197Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":483,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:25:59.0176152Z; ResponseTime: 2022-05-12T11:25:59.0176152Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/e32395da-3276-4553-a3a0-f0b7e70f1f34/services/533ff887-2098-495f-a429-e4c29da4241a/partitions/d1f508cf-547a-4674-83b1-e8b035b32e52/replicas/132968235056747636s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.174, ActivityId: aa7ef7cb-2475-479a-bc62-4dff14d9637a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0176152Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0176183Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0009},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0176192Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1408},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0177600Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.3659},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0181259Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0405},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:25:59.0181664Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:25:59.0076197Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:25:59.0076197Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:25:59.0176152Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":483,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName4/colls/containerName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91491bae-86de-4ddf-b07b-91bd92d3ec3f" + "aa7ef7cb-2475-479a-bc62-4dff14d9637a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2793,22 +2793,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11987" ], "x-ms-request-id": [ - "c9ca43d6-c21f-4378-b711-b169f86adcb4" + "12311e38-e995-4706-b318-ca64b67fc152" ], "x-ms-correlation-request-id": [ - "c9ca43d6-c21f-4378-b711-b169f86adcb4" + "12311e38-e995-4706-b318-ca64b67fc152" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144411Z:c9ca43d6-c21f-4378-b711-b169f86adcb4" + "JIOINDIACENTRAL:20220512T112630Z:12311e38-e995-4706-b318-ca64b67fc152" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:44:11 GMT" + "Thu, 12 May 2022 11:26:29 GMT" ], "Content-Length": [ "1085" @@ -2817,26 +2817,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"containerName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName3\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"x11fAOZxq+I=\",\r\n \"_ts\": 1646750629,\r\n \"_self\": \"dbs/x11fAA==/colls/x11fAOZxq+I=/\",\r\n \"_etag\": \"\\\"00008311-0000-0100-0000-62276ba50000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"containerName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName3\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"-9V-AJgkBuk=\",\r\n \"_ts\": 1652354766,\r\n \"_self\": \"dbs/-9V-AA==/colls/-9V-AJgkBuk=/\",\r\n \"_etag\": \"\\\"00008816-0000-0100-0000-627ceece0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"containerName3\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 5000\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "91491bae-86de-4ddf-b07b-91bd92d3ec3f" + "aa7ef7cb-2475-479a-bc62-4dff14d9637a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2853,13 +2853,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/345d10db-c5dd-4fd0-928f-51ff05d9244c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/c53748f8-9d43-46fe-bccb-b4013fe99659?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/345d10db-c5dd-4fd0-928f-51ff05d9244c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c53748f8-9d43-46fe-bccb-b4013fe99659?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "345d10db-c5dd-4fd0-928f-51ff05d9244c" + "c53748f8-9d43-46fe-bccb-b4013fe99659" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2871,19 +2871,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "e532912b-6020-4c17-90b2-3432c2d9fbe1" + "027252cb-02c9-4fb9-9fc9-d045edf17f00" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144341Z:e532912b-6020-4c17-90b2-3432c2d9fbe1" + "JIOINDIACENTRAL:20220512T112600Z:027252cb-02c9-4fb9-9fc9-d045edf17f00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:43:41 GMT" + "Thu, 12 May 2022 11:25:59 GMT" ], "Content-Length": [ "21" @@ -2896,19 +2896,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/345d10db-c5dd-4fd0-928f-51ff05d9244c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzQ1ZDEwZGItYzVkZC00ZmQwLTkyOGYtNTFmZjA1ZDkyNDRjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c53748f8-9d43-46fe-bccb-b4013fe99659?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzUzNzQ4ZjgtOWQ0My00NmZlLWJjY2ItYjQwMTNmZTk5NjU5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91491bae-86de-4ddf-b07b-91bd92d3ec3f" + "aa7ef7cb-2475-479a-bc62-4dff14d9637a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2928,22 +2928,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11988" ], "x-ms-request-id": [ - "254cbb66-55ef-4409-a817-091f6afcf264" + "6a229b38-2664-482d-bdad-5347a93f360b" ], "x-ms-correlation-request-id": [ - "254cbb66-55ef-4409-a817-091f6afcf264" + "6a229b38-2664-482d-bdad-5347a93f360b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144411Z:254cbb66-55ef-4409-a817-091f6afcf264" + "JIOINDIACENTRAL:20220512T112630Z:6a229b38-2664-482d-bdad-5347a93f360b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:44:11 GMT" + "Thu, 12 May 2022 11:26:29 GMT" ], "Content-Length": [ "22" @@ -2956,22 +2956,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b229648a-6140-484f-869a-03871fa323d7" + "c23a54ff-0f0a-43b9-afac-ab57bdfeef6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2991,22 +2991,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11994" ], "x-ms-request-id": [ - "a7a545d2-94de-47c5-a012-47fc33190374" + "8e1b5c22-c180-4ad6-b2e5-db622603209f" ], "x-ms-correlation-request-id": [ - "a7a545d2-94de-47c5-a012-47fc33190374" + "8e1b5c22-c180-4ad6-b2e5-db622603209f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144412Z:a7a545d2-94de-47c5-a012-47fc33190374" + "JIOINDIACENTRAL:20220512T112632Z:8e1b5c22-c180-4ad6-b2e5-db622603209f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:44:11 GMT" + "Thu, 12 May 2022 11:26:31 GMT" ], "Content-Length": [ "454" @@ -3015,23 +3015,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"rCwz\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 5000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Hpuk\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 5000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f194d700-da59-4498-be9d-075949b9b841" + "760679a2-d6aa-47d7-8ae3-bb96613e8ee6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3051,22 +3051,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11991" ], "x-ms-request-id": [ - "459016f8-7397-4859-9609-33f9973a895d" + "173fabe8-09ed-4e49-9c4c-5387d2d63407" ], "x-ms-correlation-request-id": [ - "459016f8-7397-4859-9609-33f9973a895d" + "173fabe8-09ed-4e49-9c4c-5387d2d63407" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144443Z:459016f8-7397-4859-9609-33f9973a895d" + "JIOINDIACENTRAL:20220512T112706Z:173fabe8-09ed-4e49-9c4c-5387d2d63407" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:44:42 GMT" + "Thu, 12 May 2022 11:27:06 GMT" ], "Content-Length": [ "455" @@ -3075,26 +3075,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"rCwz\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 10000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Hpuk\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 10000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 10000\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f194d700-da59-4498-be9d-075949b9b841" + "760679a2-d6aa-47d7-8ae3-bb96613e8ee6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3111,13 +3111,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default/operationResults/b85bcec6-7b8d-4b3c-8556-a7f7a49bc27c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default/operationResults/3bd3b499-f25f-4bc8-b0f3-bcc7b1569547?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b85bcec6-7b8d-4b3c-8556-a7f7a49bc27c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bd3b499-f25f-4bc8-b0f3-bcc7b1569547?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b85bcec6-7b8d-4b3c-8556-a7f7a49bc27c" + "3bd3b499-f25f-4bc8-b0f3-bcc7b1569547" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3129,19 +3129,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1198" ], "x-ms-correlation-request-id": [ - "4350a75b-3bf9-43bd-a708-2d27df2f282f" + "56aec4c9-52ba-4f73-8f64-69d3ab64956d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144412Z:4350a75b-3bf9-43bd-a708-2d27df2f282f" + "JIOINDIACENTRAL:20220512T112635Z:56aec4c9-52ba-4f73-8f64-69d3ab64956d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:44:12 GMT" + "Thu, 12 May 2022 11:26:34 GMT" ], "Content-Length": [ "21" @@ -3154,19 +3154,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b85bcec6-7b8d-4b3c-8556-a7f7a49bc27c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjg1YmNlYzYtN2I4ZC00YjNjLTg1NTYtYTdmN2E0OWJjMjdjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3bd3b499-f25f-4bc8-b0f3-bcc7b1569547?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2JkM2I0OTktZjI1Zi00YmM4LWIwZjMtYmNjN2IxNTY5NTQ3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f194d700-da59-4498-be9d-075949b9b841" + "760679a2-d6aa-47d7-8ae3-bb96613e8ee6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3186,22 +3186,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11992" ], "x-ms-request-id": [ - "5a938c5b-2079-4cdf-99f3-9a4d7eaa5093" + "a93c0fc5-c72c-4900-a464-5ae22b492261" ], "x-ms-correlation-request-id": [ - "5a938c5b-2079-4cdf-99f3-9a4d7eaa5093" + "a93c0fc5-c72c-4900-a464-5ae22b492261" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144443Z:5a938c5b-2079-4cdf-99f3-9a4d7eaa5093" + "JIOINDIACENTRAL:20220512T112706Z:a93c0fc5-c72c-4900-a464-5ae22b492261" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:44:42 GMT" + "Thu, 12 May 2022 11:27:05 GMT" ], "Content-Length": [ "22" @@ -3214,22 +3214,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b3447a9-f196-4a23-9717-f32456b4a76f" + "0d6dad57-802b-4eb2-9b99-a19ddc922c78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3240,13 +3240,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/b62d052b-b514-4f2f-b5a3-1744a5cfa34c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/726f0ec5-fb1f-456a-8a0e-311b455ccd1d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b62d052b-b514-4f2f-b5a3-1744a5cfa34c?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/726f0ec5-fb1f-456a-8a0e-311b455ccd1d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b62d052b-b514-4f2f-b5a3-1744a5cfa34c" + "726f0ec5-fb1f-456a-8a0e-311b455ccd1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3258,19 +3258,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "4dee918e-2893-4557-8402-e21ac7911831" + "98b00fee-1661-4b73-b3fd-a619e6e09723" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144444Z:4dee918e-2893-4557-8402-e21ac7911831" + "JIOINDIACENTRAL:20220512T112710Z:98b00fee-1661-4b73-b3fd-a619e6e09723" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:44:43 GMT" + "Thu, 12 May 2022 11:27:09 GMT" ], "Content-Length": [ "21" @@ -3283,22 +3283,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41fd75a5-4df8-43fe-a713-223a33cf2009" + "6102df68-e8a1-46ed-9cac-b47f6ccb4cdc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3309,13 +3309,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/7e1fed79-ed06-4465-927d-5551f1f04f04?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/b7ba13f4-e750-40ac-a3fb-9c937d3712b1?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7e1fed79-ed06-4465-927d-5551f1f04f04?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b7ba13f4-e750-40ac-a3fb-9c937d3712b1?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "7e1fed79-ed06-4465-927d-5551f1f04f04" + "b7ba13f4-e750-40ac-a3fb-9c937d3712b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3330,16 +3330,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "52ba75eb-f13c-45cd-8531-a9c3ecc11bc6" + "2bec76b8-4ade-4da6-b96f-eb559c3cc54e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144654Z:52ba75eb-f13c-45cd-8531-a9c3ecc11bc6" + "JIOINDIACENTRAL:20220512T112923Z:2bec76b8-4ade-4da6-b96f-eb559c3cc54e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:46:54 GMT" + "Thu, 12 May 2022 11:29:23 GMT" ], "Content-Length": [ "21" @@ -3352,19 +3352,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b62d052b-b514-4f2f-b5a3-1744a5cfa34c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjYyZDA1MmItYjUxNC00ZjJmLWI1YTMtMTc0NGE1Y2ZhMzRjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/726f0ec5-fb1f-456a-8a0e-311b455ccd1d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzI2ZjBlYzUtZmIxZi00NTZhLThhMGUtMzExYjQ1NWNjZDFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b3447a9-f196-4a23-9717-f32456b4a76f" + "0d6dad57-802b-4eb2-9b99-a19ddc922c78" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3384,22 +3384,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11987" ], "x-ms-request-id": [ - "783899f0-276c-4f7d-adf8-48844cb23fbd" + "24a35cf5-8c47-4fed-9b15-3b9761da01c3" ], "x-ms-correlation-request-id": [ - "783899f0-276c-4f7d-adf8-48844cb23fbd" + "24a35cf5-8c47-4fed-9b15-3b9761da01c3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144514Z:783899f0-276c-4f7d-adf8-48844cb23fbd" + "JIOINDIACENTRAL:20220512T112741Z:24a35cf5-8c47-4fed-9b15-3b9761da01c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:45:13 GMT" + "Thu, 12 May 2022 11:27:40 GMT" ], "Content-Length": [ "22" @@ -3412,19 +3412,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/b62d052b-b514-4f2f-b5a3-1744a5cfa34c?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL29wZXJhdGlvblJlc3VsdHMvYjYyZDA1MmItYjUxNC00ZjJmLWI1YTMtMTc0NGE1Y2ZhMzRjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/726f0ec5-fb1f-456a-8a0e-311b455ccd1d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL29wZXJhdGlvblJlc3VsdHMvNzI2ZjBlYzUtZmIxZi00NTZhLThhMGUtMzExYjQ1NWNjZDFkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b3447a9-f196-4a23-9717-f32456b4a76f" + "0d6dad57-802b-4eb2-9b99-a19ddc922c78" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3444,22 +3444,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11986" ], "x-ms-request-id": [ - "019fa008-6b75-4634-a7ff-489909b0fa70" + "95430e6e-c533-48b7-9623-a14b9af351a4" ], "x-ms-correlation-request-id": [ - "019fa008-6b75-4634-a7ff-489909b0fa70" + "95430e6e-c533-48b7-9623-a14b9af351a4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144515Z:019fa008-6b75-4634-a7ff-489909b0fa70" + "JIOINDIACENTRAL:20220512T112741Z:95430e6e-c533-48b7-9623-a14b9af351a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:45:14 GMT" + "Thu, 12 May 2022 11:27:41 GMT" ], "Content-Type": [ "application/json" @@ -3469,22 +3469,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d727f11e-96b3-4d24-abd4-62dceebc129e" + "2685d6d4-c64b-44cf-a7eb-dde9d485ca02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3495,13 +3495,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/f3ce5494-90fd-454f-a1de-44b78d1b5509?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/af666fca-3b6d-4944-b002-da050868d9cd?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f3ce5494-90fd-454f-a1de-44b78d1b5509?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/af666fca-3b6d-4944-b002-da050868d9cd?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f3ce5494-90fd-454f-a1de-44b78d1b5509" + "af666fca-3b6d-4944-b002-da050868d9cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3513,19 +3513,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "d842bc5a-f4ba-4ddb-b032-2447caccf9b4" + "dae2ac2e-eb52-414b-9b91-1e02d0915781" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144516Z:d842bc5a-f4ba-4ddb-b032-2447caccf9b4" + "JIOINDIACENTRAL:20220512T112744Z:dae2ac2e-eb52-414b-9b91-1e02d0915781" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:45:15 GMT" + "Thu, 12 May 2022 11:27:43 GMT" ], "Content-Length": [ "21" @@ -3538,22 +3538,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fea2ea8-9efe-4167-9dc9-7e8fd381ae7d" + "d7b9776c-9c5f-405c-a451-906767164f0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3564,13 +3564,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/5087560f-c1c5-4ce8-ae3d-670afa2b428d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/f9709000-733e-4944-b716-8f397d5bc283?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5087560f-c1c5-4ce8-ae3d-670afa2b428d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9709000-733e-4944-b716-8f397d5bc283?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "5087560f-c1c5-4ce8-ae3d-670afa2b428d" + "f9709000-733e-4944-b716-8f397d5bc283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3585,16 +3585,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "b33683dc-91a0-496d-980e-d13e5dbe40ff" + "3bf95fde-8fef-4125-b47e-3d0ab320ddd5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144726Z:b33683dc-91a0-496d-980e-d13e5dbe40ff" + "JIOINDIACENTRAL:20220512T112957Z:3bf95fde-8fef-4125-b47e-3d0ab320ddd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:47:26 GMT" + "Thu, 12 May 2022 11:29:57 GMT" ], "Content-Length": [ "21" @@ -3607,19 +3607,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f3ce5494-90fd-454f-a1de-44b78d1b5509?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjNjZTU0OTQtOTBmZC00NTRmLWExZGUtNDRiNzhkMWI1NTA5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/af666fca-3b6d-4944-b002-da050868d9cd?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWY2NjZmY2EtM2I2ZC00OTQ0LWIwMDItZGEwNTA4NjhkOWNkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d727f11e-96b3-4d24-abd4-62dceebc129e" + "2685d6d4-c64b-44cf-a7eb-dde9d485ca02" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3639,22 +3639,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11981" ], "x-ms-request-id": [ - "432667e7-beee-436d-97f9-ff8a8ccc23ae" + "73246bbd-1442-48ae-a4e3-ce384451dd2f" ], "x-ms-correlation-request-id": [ - "432667e7-beee-436d-97f9-ff8a8ccc23ae" + "73246bbd-1442-48ae-a4e3-ce384451dd2f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144546Z:432667e7-beee-436d-97f9-ff8a8ccc23ae" + "JIOINDIACENTRAL:20220512T112815Z:73246bbd-1442-48ae-a4e3-ce384451dd2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:45:46 GMT" + "Thu, 12 May 2022 11:28:15 GMT" ], "Content-Length": [ "22" @@ -3667,19 +3667,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/f3ce5494-90fd-454f-a1de-44b78d1b5509?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy9mM2NlNTQ5NC05MGZkLTQ1NGYtYTFkZS00NGI3OGQxYjU1MDk/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/af666fca-3b6d-4944-b002-da050868d9cd?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy9hZjY2NmZjYS0zYjZkLTQ5NDQtYjAwMi1kYTA1MDg2OGQ5Y2Q/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d727f11e-96b3-4d24-abd4-62dceebc129e" + "2685d6d4-c64b-44cf-a7eb-dde9d485ca02" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3699,22 +3699,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11980" ], "x-ms-request-id": [ - "e977f44d-9022-420e-bb7e-8793c0d5cce2" + "83c9a0a1-2a04-4fbd-a79e-5d0868bce9d8" ], "x-ms-correlation-request-id": [ - "e977f44d-9022-420e-bb7e-8793c0d5cce2" + "83c9a0a1-2a04-4fbd-a79e-5d0868bce9d8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144546Z:e977f44d-9022-420e-bb7e-8793c0d5cce2" + "JIOINDIACENTRAL:20220512T112815Z:83c9a0a1-2a04-4fbd-a79e-5d0868bce9d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:45:46 GMT" + "Thu, 12 May 2022 11:28:15 GMT" ], "Content-Type": [ "application/json" @@ -3724,22 +3724,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d10550b-fb7c-4a60-a151-e2995b04746e" + "2dfb5b46-e9b4-4180-9548-c5e9f8ade82c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3750,13 +3750,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/01538264-59a8-41d1-9a2c-e56867a62d21?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/ca0ba062-c4cd-4a32-a44f-6334d7e4135a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/01538264-59a8-41d1-9a2c-e56867a62d21?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ca0ba062-c4cd-4a32-a44f-6334d7e4135a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "01538264-59a8-41d1-9a2c-e56867a62d21" + "ca0ba062-c4cd-4a32-a44f-6334d7e4135a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3768,19 +3768,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "368c04e1-ac8d-424c-b536-918cf7dbf74b" + "91916740-4766-4334-8827-75e1ee4ccd15" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144548Z:368c04e1-ac8d-424c-b536-918cf7dbf74b" + "CENTRALINDIA:20220512T112818Z:91916740-4766-4334-8827-75e1ee4ccd15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:45:47 GMT" + "Thu, 12 May 2022 11:28:18 GMT" ], "Content-Length": [ "21" @@ -3793,22 +3793,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "409f66dc-45ca-4931-a7d2-c55dbd156c84" + "9e1b9293-1948-4124-8f7d-160f8d8bd239" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3819,13 +3819,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/ca05f476-f84f-4686-aeba-05e369bb3cdc?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/4f6bd717-8f88-4934-9bb7-08ec64f54ca2?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ca05f476-f84f-4686-aeba-05e369bb3cdc?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4f6bd717-8f88-4934-9bb7-08ec64f54ca2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ca05f476-f84f-4686-aeba-05e369bb3cdc" + "4f6bd717-8f88-4934-9bb7-08ec64f54ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3837,19 +3837,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "65c86943-28ad-4402-a6d6-642a8e8d0192" + "5b5d290a-4df5-489f-85cc-ddd297225936" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144759Z:65c86943-28ad-4402-a6d6-642a8e8d0192" + "JIOINDIACENTRAL:20220512T113030Z:5b5d290a-4df5-489f-85cc-ddd297225936" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:47:58 GMT" + "Thu, 12 May 2022 11:30:30 GMT" ], "Content-Length": [ "21" @@ -3862,19 +3862,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/01538264-59a8-41d1-9a2c-e56867a62d21?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDE1MzgyNjQtNTlhOC00MWQxLTlhMmMtZTU2ODY3YTYyZDIxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ca0ba062-c4cd-4a32-a44f-6334d7e4135a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2EwYmEwNjItYzRjZC00YTMyLWE0NGYtNjMzNGQ3ZTQxMzVhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d10550b-fb7c-4a60-a151-e2995b04746e" + "2dfb5b46-e9b4-4180-9548-c5e9f8ade82c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3894,22 +3894,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11997" ], "x-ms-request-id": [ - "fc86d06f-4974-41cf-955d-18864259d933" + "4d71c1d9-d71e-4815-a966-5b3397180663" ], "x-ms-correlation-request-id": [ - "fc86d06f-4974-41cf-955d-18864259d933" + "4d71c1d9-d71e-4815-a966-5b3397180663" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144618Z:fc86d06f-4974-41cf-955d-18864259d933" + "CENTRALINDIA:20220512T112848Z:4d71c1d9-d71e-4815-a966-5b3397180663" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:46:18 GMT" + "Thu, 12 May 2022 11:28:47 GMT" ], "Content-Length": [ "22" @@ -3922,19 +3922,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/01538264-59a8-41d1-9a2c-e56867a62d21?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzAxNTM4MjY0LTU5YTgtNDFkMS05YTJjLWU1Njg2N2E2MmQyMT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/ca0ba062-c4cd-4a32-a44f-6334d7e4135a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy9vcGVyYXRpb25SZXN1bHRzL2NhMGJhMDYyLWM0Y2QtNGEzMi1hNDRmLTYzMzRkN2U0MTM1YT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d10550b-fb7c-4a60-a151-e2995b04746e" + "2dfb5b46-e9b4-4180-9548-c5e9f8ade82c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -3954,22 +3954,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11996" ], "x-ms-request-id": [ - "912fd6f3-0bb2-4c96-85ed-9f8eeccdca03" + "571df1e4-eb66-4016-8a31-399514daf537" ], "x-ms-correlation-request-id": [ - "912fd6f3-0bb2-4c96-85ed-9f8eeccdca03" + "571df1e4-eb66-4016-8a31-399514daf537" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144618Z:912fd6f3-0bb2-4c96-85ed-9f8eeccdca03" + "CENTRALINDIA:20220512T112848Z:571df1e4-eb66-4016-8a31-399514daf537" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:46:18 GMT" + "Thu, 12 May 2022 11:28:48 GMT" ], "Content-Type": [ "application/json" @@ -3979,22 +3979,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "348289eb-6fd4-49ab-a7f3-3805f9358565" + "5d244a68-bab5-43ff-92ce-011ec5037e88" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4005,13 +4005,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/46614b4d-3bf7-4a7d-8d40-585de0e9f630?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/49157b69-53d4-40cf-9838-5b3b0f31af6f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/46614b4d-3bf7-4a7d-8d40-585de0e9f630?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/49157b69-53d4-40cf-9838-5b3b0f31af6f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "46614b4d-3bf7-4a7d-8d40-585de0e9f630" + "49157b69-53d4-40cf-9838-5b3b0f31af6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4023,19 +4023,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "be75bce0-0197-4ab8-8ba2-d7ef726471c6" + "956bd7b5-cc11-4a87-a832-b075fa7ab41f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144620Z:be75bce0-0197-4ab8-8ba2-d7ef726471c6" + "JIOINDIACENTRAL:20220512T112850Z:956bd7b5-cc11-4a87-a832-b075fa7ab41f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:46:20 GMT" + "Thu, 12 May 2022 11:28:50 GMT" ], "Content-Length": [ "21" @@ -4048,22 +4048,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQ/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7062420-6c0a-409a-b986-85b82a89409e" + "95f6d376-1b82-4e87-bd1a-15a57327e69c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4074,13 +4074,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/fee34fe5-2d92-42ee-aad1-aa31aaa668d0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/9ca3cb73-6994-4b85-8d2d-f9ec10a4f516?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fee34fe5-2d92-42ee-aad1-aa31aaa668d0?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ca3cb73-6994-4b85-8d2d-f9ec10a4f516?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "fee34fe5-2d92-42ee-aad1-aa31aaa668d0" + "9ca3cb73-6994-4b85-8d2d-f9ec10a4f516" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4092,19 +4092,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "2c34f655-a470-4467-bc18-0eb947756ceb" + "d8db5050-544c-4582-9d86-9e4fbc685242" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144836Z:2c34f655-a470-4467-bc18-0eb947756ceb" + "CENTRALINDIA:20220512T113104Z:d8db5050-544c-4582-9d86-9e4fbc685242" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:48:36 GMT" + "Thu, 12 May 2022 11:31:03 GMT" ], "Content-Length": [ "21" @@ -4117,19 +4117,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/46614b4d-3bf7-4a7d-8d40-585de0e9f630?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDY2MTRiNGQtM2JmNy00YTdkLThkNDAtNTg1ZGUwZTlmNjMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/49157b69-53d4-40cf-9838-5b3b0f31af6f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDkxNTdiNjktNTNkNC00MGNmLTk4MzgtNWIzYjBmMzFhZjZmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "348289eb-6fd4-49ab-a7f3-3805f9358565" + "5d244a68-bab5-43ff-92ce-011ec5037e88" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4149,22 +4149,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11973" ], "x-ms-request-id": [ - "664df876-4d6e-4ca9-9349-6a26d56ebc8d" + "c72a1e52-f8b0-4b89-9fa4-4ce970c5adf2" ], "x-ms-correlation-request-id": [ - "664df876-4d6e-4ca9-9349-6a26d56ebc8d" + "c72a1e52-f8b0-4b89-9fa4-4ce970c5adf2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144651Z:664df876-4d6e-4ca9-9349-6a26d56ebc8d" + "JIOINDIACENTRAL:20220512T112921Z:c72a1e52-f8b0-4b89-9fa4-4ce970c5adf2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:46:50 GMT" + "Thu, 12 May 2022 11:29:20 GMT" ], "Content-Length": [ "22" @@ -4177,19 +4177,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/46614b4d-3bf7-4a7d-8d40-585de0e9f630?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy80NjYxNGI0ZC0zYmY3LTRhN2QtOGQ0MC01ODVkZTBlOWY2MzA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/49157b69-53d4-40cf-9838-5b3b0f31af6f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy80OTE1N2I2OS01M2Q0LTQwY2YtOTgzOC01YjNiMGYzMWFmNmY/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "348289eb-6fd4-49ab-a7f3-3805f9358565" + "5d244a68-bab5-43ff-92ce-011ec5037e88" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4209,22 +4209,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11972" ], "x-ms-request-id": [ - "ae4fef8c-dc4b-4ac5-8c6e-ed4f4d6aa89b" + "a9b2e1db-2e53-4f5e-bedd-1bb97ecdbb32" ], "x-ms-correlation-request-id": [ - "ae4fef8c-dc4b-4ac5-8c6e-ed4f4d6aa89b" + "a9b2e1db-2e53-4f5e-bedd-1bb97ecdbb32" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144652Z:ae4fef8c-dc4b-4ac5-8c6e-ed4f4d6aa89b" + "JIOINDIACENTRAL:20220512T112921Z:a9b2e1db-2e53-4f5e-bedd-1bb97ecdbb32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:46:51 GMT" + "Thu, 12 May 2022 11:29:21 GMT" ], "Content-Type": [ "application/json" @@ -4234,19 +4234,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7e1fed79-ed06-4465-927d-5551f1f04f04?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2UxZmVkNzktZWQwNi00NDY1LTkyN2QtNTU1MWYxZjA0ZjA0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b7ba13f4-e750-40ac-a3fb-9c937d3712b1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjdiYTEzZjQtZTc1MC00MGFjLWEzZmItOWM5MzdkMzcxMmIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41fd75a5-4df8-43fe-a713-223a33cf2009" + "6102df68-e8a1-46ed-9cac-b47f6ccb4cdc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4266,22 +4266,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-request-id": [ - "c34e9efc-5f35-4433-b4c0-e8eae8dee5c7" + "91a4c365-0316-4c30-9a0d-dcc6dc138073" ], "x-ms-correlation-request-id": [ - "c34e9efc-5f35-4433-b4c0-e8eae8dee5c7" + "91a4c365-0316-4c30-9a0d-dcc6dc138073" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144724Z:c34e9efc-5f35-4433-b4c0-e8eae8dee5c7" + "JIOINDIACENTRAL:20220512T112954Z:91a4c365-0316-4c30-9a0d-dcc6dc138073" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:47:24 GMT" + "Thu, 12 May 2022 11:29:53 GMT" ], "Content-Length": [ "22" @@ -4294,19 +4294,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/7e1fed79-ed06-4465-927d-5551f1f04f04?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL29wZXJhdGlvblJlc3VsdHMvN2UxZmVkNzktZWQwNi00NDY1LTkyN2QtNTU1MWYxZjA0ZjA0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/containers/containerName/operationResults/b7ba13f4-e750-40ac-a3fb-9c937d3712b1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvY29udGFpbmVycy9jb250YWluZXJOYW1lL29wZXJhdGlvblJlc3VsdHMvYjdiYTEzZjQtZTc1MC00MGFjLWEzZmItOWM5MzdkMzcxMmIxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41fd75a5-4df8-43fe-a713-223a33cf2009" + "6102df68-e8a1-46ed-9cac-b47f6ccb4cdc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4326,22 +4326,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-request-id": [ - "f69713a5-2330-4823-845c-a7389b57495c" + "182210a5-2064-46dd-945a-d2acd44ac4ba" ], "x-ms-correlation-request-id": [ - "f69713a5-2330-4823-845c-a7389b57495c" + "182210a5-2064-46dd-945a-d2acd44ac4ba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144724Z:f69713a5-2330-4823-845c-a7389b57495c" + "JIOINDIACENTRAL:20220512T112954Z:182210a5-2064-46dd-945a-d2acd44ac4ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:47:24 GMT" + "Thu, 12 May 2022 11:29:54 GMT" ], "Content-Type": [ "application/json" @@ -4351,19 +4351,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5087560f-c1c5-4ce8-ae3d-670afa2b428d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTA4NzU2MGYtYzFjNS00Y2U4LWFlM2QtNjcwYWZhMmI0MjhkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9709000-733e-4944-b716-8f397d5bc283?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjk3MDkwMDAtNzMzZS00OTQ0LWI3MTYtOGYzOTdkNWJjMjgzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fea2ea8-9efe-4167-9dc9-7e8fd381ae7d" + "d7b9776c-9c5f-405c-a451-906767164f0f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4383,22 +4383,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11993" ], "x-ms-request-id": [ - "15809f39-5896-45ad-8516-4790bb1cd310" + "b648efb8-7ffd-49a6-acc6-36c48ca1ce04" ], "x-ms-correlation-request-id": [ - "15809f39-5896-45ad-8516-4790bb1cd310" + "b648efb8-7ffd-49a6-acc6-36c48ca1ce04" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144757Z:15809f39-5896-45ad-8516-4790bb1cd310" + "JIOINDIACENTRAL:20220512T113028Z:b648efb8-7ffd-49a6-acc6-36c48ca1ce04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:47:56 GMT" + "Thu, 12 May 2022 11:30:27 GMT" ], "Content-Length": [ "22" @@ -4411,19 +4411,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/5087560f-c1c5-4ce8-ae3d-670afa2b428d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy81MDg3NTYwZi1jMWM1LTRjZTgtYWUzZC02NzBhZmEyYjQyOGQ/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName3/operationResults/f9709000-733e-4944-b716-8f397d5bc283?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy9mOTcwOTAwMC03MzNlLTQ5NDQtYjcxNi04ZjM5N2Q1YmMyODM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fea2ea8-9efe-4167-9dc9-7e8fd381ae7d" + "d7b9776c-9c5f-405c-a451-906767164f0f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4443,22 +4443,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-request-id": [ - "05e3ca45-94bd-4778-ac0e-35241e00a971" + "659a9607-8385-4d8f-beb9-63b88f4100f4" ], "x-ms-correlation-request-id": [ - "05e3ca45-94bd-4778-ac0e-35241e00a971" + "659a9607-8385-4d8f-beb9-63b88f4100f4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144757Z:05e3ca45-94bd-4778-ac0e-35241e00a971" + "JIOINDIACENTRAL:20220512T113028Z:659a9607-8385-4d8f-beb9-63b88f4100f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:47:56 GMT" + "Thu, 12 May 2022 11:30:27 GMT" ], "Content-Type": [ "application/json" @@ -4468,19 +4468,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ca05f476-f84f-4686-aeba-05e369bb3cdc?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2EwNWY0NzYtZjg0Zi00Njg2LWFlYmEtMDVlMzY5YmIzY2RjP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4f6bd717-8f88-4934-9bb7-08ec64f54ca2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGY2YmQ3MTctOGY4OC00OTM0LTliYjctMDhlYzY0ZjU0Y2EyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "409f66dc-45ca-4931-a7d2-c55dbd156c84" + "9e1b9293-1948-4124-8f7d-160f8d8bd239" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4500,22 +4500,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11990" ], "x-ms-request-id": [ - "fbe49e9e-9c37-4628-b894-b8ccfe7a20aa" + "54f656d8-1031-4422-a722-c15fdd8c0da5" ], "x-ms-correlation-request-id": [ - "fbe49e9e-9c37-4628-b894-b8ccfe7a20aa" + "54f656d8-1031-4422-a722-c15fdd8c0da5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144830Z:fbe49e9e-9c37-4628-b894-b8ccfe7a20aa" + "JIOINDIACENTRAL:20220512T113101Z:54f656d8-1031-4422-a722-c15fdd8c0da5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:48:29 GMT" + "Thu, 12 May 2022 11:31:00 GMT" ], "Content-Length": [ "22" @@ -4528,19 +4528,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/ca05f476-f84f-4686-aeba-05e369bb3cdc?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy9vcGVyYXRpb25SZXN1bHRzL2NhMDVmNDc2LWY4NGYtNDY4Ni1hZWJhLTA1ZTM2OWJiM2NkYz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/containers/containerName3/operationResults/4f6bd717-8f88-4934-9bb7-08ec64f54ca2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvY29udGFpbmVycy9jb250YWluZXJOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzRmNmJkNzE3LThmODgtNDkzNC05YmI3LTA4ZWM2NGY1NGNhMj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "409f66dc-45ca-4931-a7d2-c55dbd156c84" + "9e1b9293-1948-4124-8f7d-160f8d8bd239" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4560,22 +4560,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11989" ], "x-ms-request-id": [ - "7cdf3809-eb05-4083-8b9b-6daf60dc5c90" + "76b84f17-7804-4448-85a3-8904f0d5183d" ], "x-ms-correlation-request-id": [ - "7cdf3809-eb05-4083-8b9b-6daf60dc5c90" + "76b84f17-7804-4448-85a3-8904f0d5183d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T144834Z:7cdf3809-eb05-4083-8b9b-6daf60dc5c90" + "JIOINDIACENTRAL:20220512T113101Z:76b84f17-7804-4448-85a3-8904f0d5183d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:48:34 GMT" + "Thu, 12 May 2022 11:31:01 GMT" ], "Content-Type": [ "application/json" @@ -4585,19 +4585,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fee34fe5-2d92-42ee-aad1-aa31aaa668d0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmVlMzRmZTUtMmQ5Mi00MmVlLWFhZDEtYWEzMWFhYTY2OGQwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9ca3cb73-6994-4b85-8d2d-f9ec10a4f516?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWNhM2NiNzMtNjk5NC00Yjg1LThkMmQtZjllYzEwYTRmNTE2P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7062420-6c0a-409a-b986-85b82a89409e" + "95f6d376-1b82-4e87-bd1a-15a57327e69c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4617,22 +4617,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "07d9cf16-502c-4c81-8c90-5b6bf6d704d8" + "64753ab7-df3b-4b28-a16a-3a8a476d2bd5" ], "x-ms-correlation-request-id": [ - "07d9cf16-502c-4c81-8c90-5b6bf6d704d8" + "64753ab7-df3b-4b28-a16a-3a8a476d2bd5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144907Z:07d9cf16-502c-4c81-8c90-5b6bf6d704d8" + "CENTRALINDIA:20220512T113134Z:64753ab7-df3b-4b28-a16a-3a8a476d2bd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:49:07 GMT" + "Thu, 12 May 2022 11:31:34 GMT" ], "Content-Length": [ "22" @@ -4645,19 +4645,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/fee34fe5-2d92-42ee-aad1-aa31aaa668d0?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy9mZWUzNGZlNS0yZDkyLTQyZWUtYWFkMS1hYTMxYWFhNjY4ZDA/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup62/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount62-1/sqlDatabases/dbName4/operationResults/9ca3cb73-6994-4b85-8d2d-f9ec10a4f516?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYyLTEvc3FsRGF0YWJhc2VzL2RiTmFtZTQvb3BlcmF0aW9uUmVzdWx0cy85Y2EzY2I3My02OTk0LTRiODUtOGQyZC1mOWVjMTBhNGY1MTY/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7062420-6c0a-409a-b986-85b82a89409e" + "95f6d376-1b82-4e87-bd1a-15a57327e69c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -4677,22 +4677,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "66443f81-657b-49be-b1e1-a3457258b27d" + "8810e0a3-29e0-4699-a3ad-4fd0805d7ced" ], "x-ms-correlation-request-id": [ - "66443f81-657b-49be-b1e1-a3457258b27d" + "8810e0a3-29e0-4699-a3ad-4fd0805d7ced" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T144908Z:66443f81-657b-49be-b1e1-a3457258b27d" + "CENTRALINDIA:20220512T113135Z:8810e0a3-29e0-4699-a3ad-4fd0805d7ced" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:49:08 GMT" + "Thu, 12 May 2022 11:31:34 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableMigrateThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableMigrateThroughputCmdlets.json index 2e09b456f3d2..baad2eef802d 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableMigrateThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableMigrateThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "86532b62-00b1-4c75-801a-778e4aa2f956" + "764d7c2d-13d9-499a-a732-3dd9748fbacf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "61bf5ab1-e771-4d42-805a-092d231dbb1b" + "5071ef36-70f0-40b5-b16c-be04c4d52ae5" ], "x-ms-correlation-request-id": [ - "61bf5ab1-e771-4d42-805a-092d231dbb1b" + "5071ef36-70f0-40b5-b16c-be04c4d52ae5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152215Z:61bf5ab1-e771-4d42-805a-092d231dbb1b" + "JIOINDIACENTRAL:20220512T122119Z:5071ef36-70f0-40b5-b16c-be04c4d52ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:22:15 GMT" + "Thu, 12 May 2022 12:21:19 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5365154-f983-4c63-b633-dac15732207f" + "3b7c0f15-6b88-4b6d-a2bc-141191642a49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "7db5f15a-6786-4ee5-bf13-40c3aebca938" + "a8c73179-2a44-4f77-a341-a103dbcb24ff" ], "x-ms-correlation-request-id": [ - "7db5f15a-6786-4ee5-bf13-40c3aebca938" + "a8c73179-2a44-4f77-a341-a103dbcb24ff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152216Z:7db5f15a-6786-4ee5-bf13-40c3aebca938" + "JIOINDIACENTRAL:20220512T122120Z:a8c73179-2a44-4f77-a341-a103dbcb24ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:22:15 GMT" + "Thu, 12 May 2022 12:21:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5365154-f983-4c63-b633-dac15732207f" + "3b7c0f15-6b88-4b6d-a2bc-141191642a49" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11987" ], "x-ms-request-id": [ - "0038c785-5a4a-43b9-a7a8-27d32d13e6a2" + "424a5fbb-d9e4-4dd4-898c-1bb8f0b928fb" ], "x-ms-correlation-request-id": [ - "0038c785-5a4a-43b9-a7a8-27d32d13e6a2" + "424a5fbb-d9e4-4dd4-898c-1bb8f0b928fb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152459Z:0038c785-5a4a-43b9-a7a8-27d32d13e6a2" + "JIOINDIACENTRAL:20220512T122406Z:424a5fbb-d9e4-4dd4-898c-1bb8f0b928fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:24:59 GMT" + "Thu, 12 May 2022 12:24:06 GMT" ], "Content-Length": [ "2413" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529\",\r\n \"name\": \"table-db2529\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:24:51.3337358Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2529.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2529.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"bcb64096-185b-41eb-a699-7a00887378cc\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529\",\r\n \"name\": \"table-db2529\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:23:41.8444042Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2529.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2529.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"cee8abc4-79d8-47e0-87a4-3e49cde696dd\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a789af7-6d45-43b1-8127-2f1b60c54fd4" + "3845ff53-9465-4011-81b0-3f2739b5cbf1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11990" ], "x-ms-request-id": [ - "fa1815f2-949d-499c-b829-51e4aea59c6c" + "ebeb057d-ffa1-47c7-a19a-c98211316174" ], "x-ms-correlation-request-id": [ - "fa1815f2-949d-499c-b829-51e4aea59c6c" + "ebeb057d-ffa1-47c7-a19a-c98211316174" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152603Z:fa1815f2-949d-499c-b829-51e4aea59c6c" + "JIOINDIACENTRAL:20220512T122520Z:ebeb057d-ffa1-47c7-a19a-c98211316174" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:26:02 GMT" + "Thu, 12 May 2022 12:25:20 GMT" ], "Content-Length": [ "2413" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529\",\r\n \"name\": \"table-db2529\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:24:51.3337358Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2529.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2529.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"bcb64096-185b-41eb-a699-7a00887378cc\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529\",\r\n \"name\": \"table-db2529\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:23:41.8444042Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2529.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2529.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"cee8abc4-79d8-47e0-87a4-3e49cde696dd\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2529-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOT9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": true,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f5365154-f983-4c63-b633-dac15732207f" + "3b7c0f15-6b88-4b6d-a2bc-141191642a49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/operationResults/b2fc1da6-4327-4873-bab8-40b426b43df7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/operationResults/26c30cf1-6f01-416a-b49c-afdb9f7f2649?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "b2fc1da6-4327-4873-bab8-40b426b43df7" + "26c30cf1-6f01-416a-b49c-afdb9f7f2649" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b2fc1da6-4327-4873-bab8-40b426b43df7?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/26c30cf1-6f01-416a-b49c-afdb9f7f2649?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "8ae9046a-58bf-4f3a-b256-e424820a03c8" + "38ec48f2-095c-44bb-ac86-96981e3f6472" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152225Z:8ae9046a-58bf-4f3a-b256-e424820a03c8" + "JIOINDIACENTRAL:20220512T122132Z:38ec48f2-095c-44bb-ac86-96981e3f6472" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:22:24 GMT" + "Thu, 12 May 2022 12:21:32 GMT" ], "Content-Length": [ "2039" @@ -321,23 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529\",\r\n \"name\": \"table-db2529\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:22:22.9018907Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"bcb64096-185b-41eb-a699-7a00887378cc\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529\",\r\n \"name\": \"table-db2529\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:21:29.7642225Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"cee8abc4-79d8-47e0-87a4-3e49cde696dd\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2529-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b2fc1da6-4327-4873-bab8-40b426b43df7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjJmYzFkYTYtNDMyNy00ODczLWJhYjgtNDBiNDI2YjQzZGY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/26c30cf1-6f01-416a-b49c-afdb9f7f2649?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjZjMzBjZjEtNmYwMS00MTZhLWI0OWMtYWZkYjlmN2YyNjQ5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5365154-f983-4c63-b633-dac15732207f" + "3b7c0f15-6b88-4b6d-a2bc-141191642a49" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -357,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-request-id": [ - "0e7d7aab-8b65-4bf3-b776-b3650533bca9" + "0339323e-9a5d-4e4d-8a30-54919c2fee9d" ], "x-ms-correlation-request-id": [ - "0e7d7aab-8b65-4bf3-b776-b3650533bca9" + "0339323e-9a5d-4e4d-8a30-54919c2fee9d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152256Z:0e7d7aab-8b65-4bf3-b776-b3650533bca9" + "JIOINDIACENTRAL:20220512T122203Z:0339323e-9a5d-4e4d-8a30-54919c2fee9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:22:56 GMT" + "Thu, 12 May 2022 12:22:02 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b2fc1da6-4327-4873-bab8-40b426b43df7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjJmYzFkYTYtNDMyNy00ODczLWJhYjgtNDBiNDI2YjQzZGY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/26c30cf1-6f01-416a-b49c-afdb9f7f2649?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjZjMzBjZjEtNmYwMS00MTZhLWI0OWMtYWZkYjlmN2YyNjQ5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5365154-f983-4c63-b633-dac15732207f" + "3b7c0f15-6b88-4b6d-a2bc-141191642a49" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-request-id": [ - "4d49f591-7d1d-4f1f-8f23-e40b6899ea7c" + "8b85dad8-e61c-49ff-bc8d-10e64ea484af" ], "x-ms-correlation-request-id": [ - "4d49f591-7d1d-4f1f-8f23-e40b6899ea7c" + "8b85dad8-e61c-49ff-bc8d-10e64ea484af" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152326Z:4d49f591-7d1d-4f1f-8f23-e40b6899ea7c" + "JIOINDIACENTRAL:20220512T122234Z:8b85dad8-e61c-49ff-bc8d-10e64ea484af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:23:26 GMT" + "Thu, 12 May 2022 12:22:33 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b2fc1da6-4327-4873-bab8-40b426b43df7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjJmYzFkYTYtNDMyNy00ODczLWJhYjgtNDBiNDI2YjQzZGY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/26c30cf1-6f01-416a-b49c-afdb9f7f2649?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjZjMzBjZjEtNmYwMS00MTZhLWI0OWMtYWZkYjlmN2YyNjQ5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5365154-f983-4c63-b633-dac15732207f" + "3b7c0f15-6b88-4b6d-a2bc-141191642a49" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-request-id": [ - "2a3200cd-aa9a-4456-aa81-ac45a075dd57" + "c9329f2b-93c1-44c5-93e9-a61b60f60d5f" ], "x-ms-correlation-request-id": [ - "2a3200cd-aa9a-4456-aa81-ac45a075dd57" + "c9329f2b-93c1-44c5-93e9-a61b60f60d5f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152357Z:2a3200cd-aa9a-4456-aa81-ac45a075dd57" + "JIOINDIACENTRAL:20220512T122304Z:c9329f2b-93c1-44c5-93e9-a61b60f60d5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:23:57 GMT" + "Thu, 12 May 2022 12:23:04 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b2fc1da6-4327-4873-bab8-40b426b43df7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjJmYzFkYTYtNDMyNy00ODczLWJhYjgtNDBiNDI2YjQzZGY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/26c30cf1-6f01-416a-b49c-afdb9f7f2649?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjZjMzBjZjEtNmYwMS00MTZhLWI0OWMtYWZkYjlmN2YyNjQ5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5365154-f983-4c63-b633-dac15732207f" + "3b7c0f15-6b88-4b6d-a2bc-141191642a49" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11989" ], "x-ms-request-id": [ - "46bfcfd5-f363-41c9-9f08-a31b8c9fa89a" + "55bd3b4b-b99e-4c86-afbd-da9901cabb2a" ], "x-ms-correlation-request-id": [ - "46bfcfd5-f363-41c9-9f08-a31b8c9fa89a" + "55bd3b4b-b99e-4c86-afbd-da9901cabb2a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152427Z:46bfcfd5-f363-41c9-9f08-a31b8c9fa89a" + "JIOINDIACENTRAL:20220512T122335Z:55bd3b4b-b99e-4c86-afbd-da9901cabb2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:24:27 GMT" + "Thu, 12 May 2022 12:23:34 GMT" ], "Content-Length": [ "21" @@ -565,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b2fc1da6-4327-4873-bab8-40b426b43df7?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjJmYzFkYTYtNDMyNy00ODczLWJhYjgtNDBiNDI2YjQzZGY3P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/26c30cf1-6f01-416a-b49c-afdb9f7f2649?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjZjMzBjZjEtNmYwMS00MTZhLWI0OWMtYWZkYjlmN2YyNjQ5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5365154-f983-4c63-b633-dac15732207f" + "3b7c0f15-6b88-4b6d-a2bc-141191642a49" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11988" ], "x-ms-request-id": [ - "48bc9443-1506-46f9-83ac-a52eb869f6b6" + "4bb0ffa2-0124-44d0-819f-d98a8dd303f6" ], "x-ms-correlation-request-id": [ - "48bc9443-1506-46f9-83ac-a52eb869f6b6" + "4bb0ffa2-0124-44d0-819f-d98a8dd303f6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152458Z:48bc9443-1506-46f9-83ac-a52eb869f6b6" + "JIOINDIACENTRAL:20220512T122405Z:4bb0ffa2-0124-44d0-819f-d98a8dd303f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:24:58 GMT" + "Thu, 12 May 2022 12:24:04 GMT" ], "Content-Length": [ "22" @@ -625,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0d2355b-438e-4e5c-8829-07f73dcecbab" + "f5de4e7d-beed-47f3-acd6-0030df02f09a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -660,47 +660,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "8b4f4571-ee0a-47e4-8eec-1e73f80216eb" + "0867ff85-864c-4a10-9bf3-79843da228bd" ], "x-ms-correlation-request-id": [ - "8b4f4571-ee0a-47e4-8eec-1e73f80216eb" + "0867ff85-864c-4a10-9bf3-79843da228bd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152459Z:8b4f4571-ee0a-47e4-8eec-1e73f80216eb" + "JIOINDIACENTRAL:20220512T122409Z:0867ff85-864c-4a10-9bf3-79843da228bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:24:59 GMT" + "Thu, 12 May 2022 12:24:08 GMT" ], "Content-Length": [ - "5552" + "6267" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: e0d2355b-438e-4e5c-8829-07f73dcecbab, Request URI: /apps/54c90089-eb4d-4ffe-a0f9-6e8b57eb40ad/services/21d1b06e-7e6e-4b26-be32-97122a45a525/partitions/b21fda82-06b9-429e-b1fb-fc9d7ad6539e/replicas/132912264114711867s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T15:24:59.7029320Z, RequestEndTime: 2022-03-08T15:24:59.7029320Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:23:49.7624963Z\\\\\\\",\\\\\\\"cpu\\\\\\\":4.795,\\\\\\\"memory\\\\\\\":402862824.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0445,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:23:59.7725685Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.482,\\\\\\\"memory\\\\\\\":402702464.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0147,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:24:19.7826675Z\\\\\\\",\\\\\\\"cpu\\\\\\\":5.616,\\\\\\\"memory\\\\\\\":401398824.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0214,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:24:29.7927196Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.781,\\\\\\\"memory\\\\\\\":401049856.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.014,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:24:39.8028023Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.899,\\\\\\\"memory\\\\\\\":400567832.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0311,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:24:49.8128638Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.093,\\\\\\\"memory\\\\\\\":400210072.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.033,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":40,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T15:24:59.7029320Z; ResponseTime: 2022-03-08T15:24:59.7029320Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/54c90089-eb4d-4ffe-a0f9-6e8b57eb40ad/services/21d1b06e-7e6e-4b26-be32-97122a45a525/partitions/b21fda82-06b9-429e-b1fb-fc9d7ad6539e/replicas/132912264114711867s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.193, ActivityId: e0d2355b-438e-4e5c-8829-07f73dcecbab, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7029320Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.033},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7029650Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7029680Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2762},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7032442Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.8606},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7051048Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1445},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7052493Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":484,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T15:24:59.7029320Z; ResponseTime: 2022-03-08T15:24:59.7029320Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/54c90089-eb4d-4ffe-a0f9-6e8b57eb40ad/services/21d1b06e-7e6e-4b26-be32-97122a45a525/partitions/b21fda82-06b9-429e-b1fb-fc9d7ad6539e/replicas/132912264114711868s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.244, ActivityId: e0d2355b-438e-4e5c-8829-07f73dcecbab, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7029320Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0217},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7029537Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7029563Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2712},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7032275Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9298},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7051573Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0456},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:24:59.7052029Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":484,\\\\\\\"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/tableName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: f5de4e7d-beed-47f3-acd6-0030df02f09a, Request URI: /apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/1f263a68-3eaf-40f1-b15c-28cf11f3b794/partitions/26f95454-4c3b-42cb-9ca2-3f4de122b1a0/replicas/132967668065144966s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T12:24:09.1374636Z, RequestEndTime: 2022-05-12T12:24:09.1374636Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:23:00.1085310Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.234,\\\\\\\"memory\\\\\\\":656262076.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0184,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:23:10.1183517Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.637,\\\\\\\"memory\\\\\\\":656471700.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0155,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:23:20.1282037Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.271,\\\\\\\"memory\\\\\\\":656358268.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0075,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:23:30.1380479Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.280,\\\\\\\"memory\\\\\\\":656222852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0227,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:23:50.1477295Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.909,\\\\\\\"memory\\\\\\\":655632820.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0141,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:24:00.1575738Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.994,\\\\\\\"memory\\\\\\\":655378860.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0138,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T12:24:09.1374636Z; ResponseTime: 2022-05-12T12:24:09.1374636Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/1f263a68-3eaf-40f1-b15c-28cf11f3b794/partitions/26f95454-4c3b-42cb-9ca2-3f4de122b1a0/replicas/132967668065144966s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.11, ActivityId: f5de4e7d-beed-47f3-acd6-0030df02f09a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1374636Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0147},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1374783Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0025},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1374808Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2056},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1376864Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5399},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1392263Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0258},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1392521Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:24:09.0974609Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:24:09.0974609Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:24:09.0974609Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T12:24:09.1374636Z; ResponseTime: 2022-05-12T12:24:09.1374636Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/1f263a68-3eaf-40f1-b15c-28cf11f3b794/partitions/26f95454-4c3b-42cb-9ca2-3f4de122b1a0/replicas/132967668065144967s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.695, ActivityId: f5de4e7d-beed-47f3-acd6-0030df02f09a, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1374636Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0032},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1374668Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1374680Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1484},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1376164Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9612},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1385776Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0612},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:24:09.1386388Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:24:09.0974609Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:24:09.0974609Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:24:09.0974609Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TablesDB/colls/tableName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0d2355b-438e-4e5c-8829-07f73dcecbab" + "f5de4e7d-beed-47f3-acd6-0030df02f09a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "83ead4a5-e4eb-4ec4-bf9b-a501fdb0c225" + "ef311620-fcd8-400c-9a30-7507edb10121" ], "x-ms-correlation-request-id": [ - "83ead4a5-e4eb-4ec4-bf9b-a501fdb0c225" + "ef311620-fcd8-400c-9a30-7507edb10121" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152531Z:83ead4a5-e4eb-4ec4-bf9b-a501fdb0c225" + "JIOINDIACENTRAL:20220512T122443Z:ef311620-fcd8-400c-9a30-7507edb10121" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:25:30 GMT" + "Thu, 12 May 2022 12:24:42 GMT" ], "Content-Length": [ "388" @@ -744,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"tableName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName4\",\r\n \"_rid\": \"jZkHAKt78GI=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3300-b40ed80101d8\\\"\",\r\n \"_ts\": 1646753112\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"tableName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName4\",\r\n \"_rid\": \"Kz5ZAPDScb8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65fb-35674c0101d8\\\"\",\r\n \"_ts\": 1652358261\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName4\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e0d2355b-438e-4e5c-8829-07f73dcecbab" + "f5de4e7d-beed-47f3-acd6-0030df02f09a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,13 +780,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/a393415d-6171-4e68-95e8-a534e812e77d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/9c6e8e1a-fcb6-4c5f-8c6f-437bd04398d8?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a393415d-6171-4e68-95e8-a534e812e77d?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9c6e8e1a-fcb6-4c5f-8c6f-437bd04398d8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a393415d-6171-4e68-95e8-a534e812e77d" + "9c6e8e1a-fcb6-4c5f-8c6f-437bd04398d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,19 +798,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "ccdc54f4-26fd-495a-bcdd-f784c40192b6" + "5e06a587-cc92-4dda-b5b9-0b282e043088" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152500Z:ccdc54f4-26fd-495a-bcdd-f784c40192b6" + "JIOINDIACENTRAL:20220512T122411Z:5e06a587-cc92-4dda-b5b9-0b282e043088" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:25:00 GMT" + "Thu, 12 May 2022 12:24:11 GMT" ], "Content-Length": [ "21" @@ -823,19 +823,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a393415d-6171-4e68-95e8-a534e812e77d?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTM5MzQxNWQtNjE3MS00ZTY4LTk1ZTgtYTUzNGU4MTJlNzdkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9c6e8e1a-fcb6-4c5f-8c6f-437bd04398d8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWM2ZThlMWEtZmNiNi00YzVmLThjNmYtNDM3YmQwNDM5OGQ4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0d2355b-438e-4e5c-8829-07f73dcecbab" + "f5de4e7d-beed-47f3-acd6-0030df02f09a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -855,22 +855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "f518c673-deb2-4bd2-8ebd-7beb143e44a5" + "b6ec8bc5-b262-4e6b-8f65-90f058f513e6" ], "x-ms-correlation-request-id": [ - "f518c673-deb2-4bd2-8ebd-7beb143e44a5" + "b6ec8bc5-b262-4e6b-8f65-90f058f513e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152530Z:f518c673-deb2-4bd2-8ebd-7beb143e44a5" + "JIOINDIACENTRAL:20220512T122442Z:b6ec8bc5-b262-4e6b-8f65-90f058f513e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:25:30 GMT" + "Thu, 12 May 2022 12:24:41 GMT" ], "Content-Length": [ "22" @@ -883,22 +883,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87fc9012-8e93-4714-9e19-13f3c415264b" + "a3643efd-2a92-4bbe-af2f-45c9eabd27b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -918,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "0af5e34e-4a44-4899-b6bb-c233b1c44820" + "80fe3fb2-553d-4870-8bb5-fbfefc7a142d" ], "x-ms-correlation-request-id": [ - "0af5e34e-4a44-4899-b6bb-c233b1c44820" + "80fe3fb2-553d-4870-8bb5-fbfefc7a142d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152531Z:0af5e34e-4a44-4899-b6bb-c233b1c44820" + "JIOINDIACENTRAL:20220512T122445Z:80fe3fb2-553d-4870-8bb5-fbfefc7a142d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:25:30 GMT" + "Thu, 12 May 2022 12:24:44 GMT" ], "Content-Length": [ "364" @@ -942,26 +942,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"q-4F\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"o1ve\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToAutoscale?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToAutoscale?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4850972a-d0fb-46e5-a0d7-5a17ce31e940" + "dc0d99cc-4de6-4036-9f4b-83b57fa7e77d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -972,13 +972,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/6c23ba68-5e9a-404f-91e2-ab29e10cf03a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/229c8821-311e-478e-ae24-d0371886d77d?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c23ba68-5e9a-404f-91e2-ab29e10cf03a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/229c8821-311e-478e-ae24-d0371886d77d?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "6c23ba68-5e9a-404f-91e2-ab29e10cf03a" + "229c8821-311e-478e-ae24-d0371886d77d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,16 +993,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "681f12dc-5a2b-4579-9b3c-9a4a8acf23ad" + "b80342ad-939d-49c2-888f-9176524c6734" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152532Z:681f12dc-5a2b-4579-9b3c-9a4a8acf23ad" + "JIOINDIACENTRAL:20220512T122446Z:b80342ad-939d-49c2-888f-9176524c6734" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:25:31 GMT" + "Thu, 12 May 2022 12:24:45 GMT" ], "Content-Length": [ "21" @@ -1015,19 +1015,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6c23ba68-5e9a-404f-91e2-ab29e10cf03a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyM2JhNjgtNWU5YS00MDRmLTkxZTItYWIyOWUxMGNmMDNhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/229c8821-311e-478e-ae24-d0371886d77d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjI5Yzg4MjEtMzExZS00NzhlLWFlMjQtZDAzNzE4ODZkNzdkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4850972a-d0fb-46e5-a0d7-5a17ce31e940" + "dc0d99cc-4de6-4036-9f4b-83b57fa7e77d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1047,22 +1047,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "2319e4e5-c0db-4af1-a45d-576ce47ed888" + "7836841b-0b07-4be5-af70-aebd6e27413e" ], "x-ms-correlation-request-id": [ - "2319e4e5-c0db-4af1-a45d-576ce47ed888" + "7836841b-0b07-4be5-af70-aebd6e27413e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152603Z:2319e4e5-c0db-4af1-a45d-576ce47ed888" + "JIOINDIACENTRAL:20220512T122517Z:7836841b-0b07-4be5-af70-aebd6e27413e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:26:02 GMT" + "Thu, 12 May 2022 12:25:16 GMT" ], "Content-Length": [ "22" @@ -1075,19 +1075,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/6c23ba68-5e9a-404f-91e2-ab29e10cf03a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy82YzIzYmE2OC01ZTlhLTQwNGYtOTFlMi1hYjI5ZTEwY2YwM2E/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/229c8821-311e-478e-ae24-d0371886d77d?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy8yMjljODgyMS0zMTFlLTQ3OGUtYWUyNC1kMDM3MTg4NmQ3N2Q/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4850972a-d0fb-46e5-a0d7-5a17ce31e940" + "dc0d99cc-4de6-4036-9f4b-83b57fa7e77d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1107,22 +1107,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-request-id": [ - "8a5c4b47-09f8-4710-aea9-5241c5c62353" + "9f45e112-6755-4f78-b311-09f61e9ba5d4" ], "x-ms-correlation-request-id": [ - "8a5c4b47-09f8-4710-aea9-5241c5c62353" + "9f45e112-6755-4f78-b311-09f61e9ba5d4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152603Z:8a5c4b47-09f8-4710-aea9-5241c5c62353" + "JIOINDIACENTRAL:20220512T122517Z:9f45e112-6755-4f78-b311-09f61e9ba5d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:26:02 GMT" + "Thu, 12 May 2022 12:25:17 GMT" ], "Content-Length": [ "445" @@ -1131,26 +1131,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"q-4F\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 400,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 4000\r\n },\r\n \"minimumThroughput\": \"4000\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"o1ve\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 200,\r\n \"autoscaleSettings\": {\r\n \"maxThroughput\": 2000\r\n },\r\n \"minimumThroughput\": \"1000\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToManualThroughput?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToManualThroughput?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "721884e2-40cb-4d35-a9b5-7e0c0565306a" + "b16847b5-226f-4e84-9ab8-dc996eab1e60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1161,13 +1161,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/14b704fd-7038-4e4d-be99-7bd517f3d83b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/612c23e1-e229-4b35-9b0c-c8b941904f1c?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/14b704fd-7038-4e4d-be99-7bd517f3d83b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/612c23e1-e229-4b35-9b0c-c8b941904f1c?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "14b704fd-7038-4e4d-be99-7bd517f3d83b" + "612c23e1-e229-4b35-9b0c-c8b941904f1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1179,19 +1179,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "4f0b6d3f-c65f-4beb-96be-5eb9aed07cf5" + "91b91122-8081-45f1-9f90-a89591fbf435" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152604Z:4f0b6d3f-c65f-4beb-96be-5eb9aed07cf5" + "JIOINDIACENTRAL:20220512T122523Z:91b91122-8081-45f1-9f90-a89591fbf435" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:26:03 GMT" + "Thu, 12 May 2022 12:25:22 GMT" ], "Content-Length": [ "21" @@ -1204,19 +1204,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/14b704fd-7038-4e4d-be99-7bd517f3d83b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTRiNzA0ZmQtNzAzOC00ZTRkLWJlOTktN2JkNTE3ZjNkODNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/612c23e1-e229-4b35-9b0c-c8b941904f1c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjEyYzIzZTEtZTIyOS00YjM1LTliMGMtYzhiOTQxOTA0ZjFjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "721884e2-40cb-4d35-a9b5-7e0c0565306a" + "b16847b5-226f-4e84-9ab8-dc996eab1e60" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1236,22 +1236,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-request-id": [ - "4f614ee2-1a38-4260-b75e-c41f960229b1" + "6a88ade6-3a16-4ecf-a837-6169c2095cc0" ], "x-ms-correlation-request-id": [ - "4f614ee2-1a38-4260-b75e-c41f960229b1" + "6a88ade6-3a16-4ecf-a837-6169c2095cc0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152634Z:4f614ee2-1a38-4260-b75e-c41f960229b1" + "JIOINDIACENTRAL:20220512T122553Z:6a88ade6-3a16-4ecf-a837-6169c2095cc0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:26:34 GMT" + "Thu, 12 May 2022 12:25:53 GMT" ], "Content-Length": [ "22" @@ -1264,19 +1264,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/14b704fd-7038-4e4d-be99-7bd517f3d83b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvMTRiNzA0ZmQtNzAzOC00ZTRkLWJlOTktN2JkNTE3ZjNkODNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/612c23e1-e229-4b35-9b0c-c8b941904f1c?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvNjEyYzIzZTEtZTIyOS00YjM1LTliMGMtYzhiOTQxOTA0ZjFjP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "721884e2-40cb-4d35-a9b5-7e0c0565306a" + "b16847b5-226f-4e84-9ab8-dc996eab1e60" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1296,22 +1296,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-request-id": [ - "6439aed5-e94d-44fa-b173-b405103d284b" + "47609546-62e3-4486-9f59-bb9c2def41e5" ], "x-ms-correlation-request-id": [ - "6439aed5-e94d-44fa-b173-b405103d284b" + "47609546-62e3-4486-9f59-bb9c2def41e5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152635Z:6439aed5-e94d-44fa-b173-b405103d284b" + "JIOINDIACENTRAL:20220512T122554Z:47609546-62e3-4486-9f59-bb9c2def41e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:26:34 GMT" + "Thu, 12 May 2022 12:25:54 GMT" ], "Content-Length": [ "416" @@ -1320,26 +1320,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"q-4F\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"o1ve\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 2000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56c5db56-9b60-4478-81c0-7014e6f2b803" + "cc1b467d-cee5-44ce-9fac-af3af0748c9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1350,13 +1350,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/fd3121e3-d41f-4405-9f42-c8881f38f7d5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/64eeb42a-a3d6-446c-9424-0cc6c82c3918?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fd3121e3-d41f-4405-9f42-c8881f38f7d5?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/64eeb42a-a3d6-446c-9424-0cc6c82c3918?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "fd3121e3-d41f-4405-9f42-c8881f38f7d5" + "64eeb42a-a3d6-446c-9424-0cc6c82c3918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1368,19 +1368,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "efe13051-fe6f-449a-bde2-bbb639d53a4b" + "6c3f3ae1-1411-4897-90e4-8e4365e0ccbf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152635Z:efe13051-fe6f-449a-bde2-bbb639d53a4b" + "JIOINDIACENTRAL:20220512T122557Z:6c3f3ae1-1411-4897-90e4-8e4365e0ccbf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:26:35 GMT" + "Thu, 12 May 2022 12:25:57 GMT" ], "Content-Length": [ "21" @@ -1393,22 +1393,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3590e1b9-476c-4fb4-aeae-754c0563f0fd" + "c04436bf-93f0-4e23-95e5-7a9e523247ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1419,13 +1419,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/78e44049-734e-4e8b-8d0b-4d9331dad381?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/a3b8bd24-ef63-46f6-8ae0-c8b4015453bd?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/78e44049-734e-4e8b-8d0b-4d9331dad381?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a3b8bd24-ef63-46f6-8ae0-c8b4015453bd?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "78e44049-734e-4e8b-8d0b-4d9331dad381" + "a3b8bd24-ef63-46f6-8ae0-c8b4015453bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,19 +1437,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "dd4d4680-62dc-41e2-9320-4c39e9a3f780" + "92625c21-5317-4f2b-9eea-8b81709478cd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152708Z:dd4d4680-62dc-41e2-9320-4c39e9a3f780" + "JIOINDIACENTRAL:20220512T122631Z:92625c21-5317-4f2b-9eea-8b81709478cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:27:08 GMT" + "Thu, 12 May 2022 12:26:30 GMT" ], "Content-Length": [ "21" @@ -1462,19 +1462,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fd3121e3-d41f-4405-9f42-c8881f38f7d5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmQzMTIxZTMtZDQxZi00NDA1LTlmNDItYzg4ODFmMzhmN2Q1P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/64eeb42a-a3d6-446c-9424-0cc6c82c3918?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjRlZWI0MmEtYTNkNi00NDZjLTk0MjQtMGNjNmM4MmMzOTE4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56c5db56-9b60-4478-81c0-7014e6f2b803" + "cc1b467d-cee5-44ce-9fac-af3af0748c9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1494,22 +1494,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11996" ], "x-ms-request-id": [ - "7baf0b0e-bb7c-4b2f-8a63-704d6aa038d4" + "3a2d6c85-f7f7-43d9-a302-b142a60bf6d8" ], "x-ms-correlation-request-id": [ - "7baf0b0e-bb7c-4b2f-8a63-704d6aa038d4" + "3a2d6c85-f7f7-43d9-a302-b142a60bf6d8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152706Z:7baf0b0e-bb7c-4b2f-8a63-704d6aa038d4" + "JIOINDIACENTRAL:20220512T122627Z:3a2d6c85-f7f7-43d9-a302-b142a60bf6d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:27:05 GMT" + "Thu, 12 May 2022 12:26:27 GMT" ], "Content-Length": [ "22" @@ -1522,19 +1522,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/fd3121e3-d41f-4405-9f42-c8881f38f7d5?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC9vcGVyYXRpb25SZXN1bHRzL2ZkMzEyMWUzLWQ0MWYtNDQwNS05ZjQyLWM4ODgxZjM4ZjdkNT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/64eeb42a-a3d6-446c-9424-0cc6c82c3918?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzY0ZWViNDJhLWEzZDYtNDQ2Yy05NDI0LTBjYzZjODJjMzkxOD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56c5db56-9b60-4478-81c0-7014e6f2b803" + "cc1b467d-cee5-44ce-9fac-af3af0748c9f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1554,22 +1554,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11995" ], "x-ms-request-id": [ - "fc0f64bd-cc4b-47e3-b429-d8b2f346ab6a" + "c2496005-2e3f-4da4-8044-2d045192a182" ], "x-ms-correlation-request-id": [ - "fc0f64bd-cc4b-47e3-b429-d8b2f346ab6a" + "c2496005-2e3f-4da4-8044-2d045192a182" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152706Z:fc0f64bd-cc4b-47e3-b429-d8b2f346ab6a" + "JIOINDIACENTRAL:20220512T122628Z:c2496005-2e3f-4da4-8044-2d045192a182" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:27:06 GMT" + "Thu, 12 May 2022 12:26:27 GMT" ], "Content-Type": [ "application/json" @@ -1579,19 +1579,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/78e44049-734e-4e8b-8d0b-4d9331dad381?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzhlNDQwNDktNzM0ZS00ZThiLThkMGItNGQ5MzMxZGFkMzgxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a3b8bd24-ef63-46f6-8ae0-c8b4015453bd?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTNiOGJkMjQtZWY2My00NmY2LThhZTAtYzhiNDAxNTQ1M2JkP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3590e1b9-476c-4fb4-aeae-754c0563f0fd" + "c04436bf-93f0-4e23-95e5-7a9e523247ac" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1611,22 +1611,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11984" ], "x-ms-request-id": [ - "a5d69282-c267-4b17-a2fd-ee87e91c8b9b" + "158db266-e97b-4fee-b4f7-12aacb2d63c9" ], "x-ms-correlation-request-id": [ - "a5d69282-c267-4b17-a2fd-ee87e91c8b9b" + "158db266-e97b-4fee-b4f7-12aacb2d63c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152739Z:a5d69282-c267-4b17-a2fd-ee87e91c8b9b" + "JIOINDIACENTRAL:20220512T122701Z:158db266-e97b-4fee-b4f7-12aacb2d63c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:27:38 GMT" + "Thu, 12 May 2022 12:27:01 GMT" ], "Content-Length": [ "22" @@ -1639,19 +1639,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/78e44049-734e-4e8b-8d0b-4d9331dad381?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzc4ZTQ0MDQ5LTczNGUtNGU4Yi04ZDBiLTRkOTMzMWRhZDM4MT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2529/tables/tableName4/operationResults/a3b8bd24-ef63-46f6-8ae0-c8b4015453bd?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOS90YWJsZXMvdGFibGVOYW1lNC9vcGVyYXRpb25SZXN1bHRzL2EzYjhiZDI0LWVmNjMtNDZmNi04YWUwLWM4YjQwMTU0NTNiZD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3590e1b9-476c-4fb4-aeae-754c0563f0fd" + "c04436bf-93f0-4e23-95e5-7a9e523247ac" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1671,22 +1671,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11983" ], "x-ms-request-id": [ - "bfc8386a-063b-40ad-8ecf-ece2adcea25d" + "bd653645-f6e7-4841-9588-7eecc36433d8" ], "x-ms-correlation-request-id": [ - "bfc8386a-063b-40ad-8ecf-ece2adcea25d" + "bd653645-f6e7-4841-9588-7eecc36433d8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T152739Z:bfc8386a-063b-40ad-8ecf-ece2adcea25d" + "JIOINDIACENTRAL:20220512T122702Z:bd653645-f6e7-4841-9588-7eecc36433d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:27:38 GMT" + "Thu, 12 May 2022 12:27:02 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableOperationsCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableOperationsCmdlets.json index ffbf8b6ab051..4f6a54bb9a70 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableOperationsCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableOperationsCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c06f860-669a-46d7-8fe9-3abc0c0199a9" + "1c83108d-de4c-4c69-b7fd-012bc4c6f50d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "bf190b04-3d09-43f5-a213-2ec0b4b0aa64" + "4b99a5de-16d0-4077-87fc-2728fa95051f" ], "x-ms-correlation-request-id": [ - "bf190b04-3d09-43f5-a213-2ec0b4b0aa64" + "4b99a5de-16d0-4077-87fc-2728fa95051f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150053Z:bf190b04-3d09-43f5-a213-2ec0b4b0aa64" + "JIOINDIACENTRAL:20220512T113938Z:4b99a5de-16d0-4077-87fc-2728fa95051f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:00:52 GMT" + "Thu, 12 May 2022 11:39:38 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d89b6ec3-7ba3-4f76-906e-2252f7997443" + "84e90fac-336a-4317-b2da-308e4c4c93ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "a1e63bf6-4175-4460-a91a-502b4268e9c2" + "f320d732-c252-4476-806a-c947ea48a7fa" ], "x-ms-correlation-request-id": [ - "a1e63bf6-4175-4460-a91a-502b4268e9c2" + "f320d732-c252-4476-806a-c947ea48a7fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150053Z:a1e63bf6-4175-4460-a91a-502b4268e9c2" + "JIOINDIACENTRAL:20220512T113940Z:f320d732-c252-4476-806a-c947ea48a7fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:00:53 GMT" + "Thu, 12 May 2022 11:39:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d89b6ec3-7ba3-4f76-906e-2252f7997443" + "84e90fac-336a-4317-b2da-308e4c4c93ef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "ac1baaa8-3cbc-48fb-8ecc-fd8cd1934a1c" + "f96f3f75-8e9a-4485-96ad-782ad4df87b3" ], "x-ms-correlation-request-id": [ - "ac1baaa8-3cbc-48fb-8ecc-fd8cd1934a1c" + "f96f3f75-8e9a-4485-96ad-782ad4df87b3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150337Z:ac1baaa8-3cbc-48fb-8ecc-fd8cd1934a1c" + "JIOINDIACENTRAL:20220512T114229Z:f96f3f75-8e9a-4485-96ad-782ad4df87b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:03:36 GMT" + "Thu, 12 May 2022 11:42:29 GMT" ], "Content-Length": [ "2413" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528\",\r\n \"name\": \"table-db2528\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:03:10.6635562Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2528.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2528.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"13c1ff22-8d0c-44c2-be1c-e1a72e66a9e7\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2528-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2528-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2528-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528\",\r\n \"name\": \"table-db2528\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:42:03.7617284Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2528.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2528.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"b82195d4-a069-4310-a7a6-71f7646e219f\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2528-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2528-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2528-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": true,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d89b6ec3-7ba3-4f76-906e-2252f7997443" + "84e90fac-336a-4317-b2da-308e4c4c93ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -219,13 +219,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/operationResults/02695efe-d296-4434-b393-ddb2d27b5b3f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/operationResults/dce9ae4a-4ef8-4098-9cdc-6b2d2fc27c1e?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "02695efe-d296-4434-b393-ddb2d27b5b3f" + "dce9ae4a-4ef8-4098-9cdc-6b2d2fc27c1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02695efe-d296-4434-b393-ddb2d27b5b3f?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dce9ae4a-4ef8-4098-9cdc-6b2d2fc27c1e?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,19 +237,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "cada901f-f424-4c46-86cf-4fe1acad5994" + "5d7a2799-aa46-43d5-996a-7036a81b94b1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150102Z:cada901f-f424-4c46-86cf-4fe1acad5994" + "JIOINDIACENTRAL:20220512T113956Z:5d7a2799-aa46-43d5-996a-7036a81b94b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:01:02 GMT" + "Thu, 12 May 2022 11:39:55 GMT" ], "Content-Length": [ "2039" @@ -258,23 +258,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528\",\r\n \"name\": \"table-db2528\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:01:00.1571662Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"13c1ff22-8d0c-44c2-be1c-e1a72e66a9e7\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528\",\r\n \"name\": \"table-db2528\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:39:53.2085028Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"b82195d4-a069-4310-a7a6-71f7646e219f\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2528-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02695efe-d296-4434-b393-ddb2d27b5b3f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDI2OTVlZmUtZDI5Ni00NDM0LWIzOTMtZGRiMmQyN2I1YjNmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dce9ae4a-4ef8-4098-9cdc-6b2d2fc27c1e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGNlOWFlNGEtNGVmOC00MDk4LTljZGMtNmIyZDJmYzI3YzFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d89b6ec3-7ba3-4f76-906e-2252f7997443" + "84e90fac-336a-4317-b2da-308e4c4c93ef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -294,22 +294,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "2ecf9e2c-a351-4e33-885b-a4afdc9ceb9e" + "65c4fb13-35e5-408c-843c-111bca1faff1" ], "x-ms-correlation-request-id": [ - "2ecf9e2c-a351-4e33-885b-a4afdc9ceb9e" + "65c4fb13-35e5-408c-843c-111bca1faff1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150134Z:2ecf9e2c-a351-4e33-885b-a4afdc9ceb9e" + "JIOINDIACENTRAL:20220512T114026Z:65c4fb13-35e5-408c-843c-111bca1faff1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:01:33 GMT" + "Thu, 12 May 2022 11:40:26 GMT" ], "Content-Length": [ "21" @@ -322,19 +322,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02695efe-d296-4434-b393-ddb2d27b5b3f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDI2OTVlZmUtZDI5Ni00NDM0LWIzOTMtZGRiMmQyN2I1YjNmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dce9ae4a-4ef8-4098-9cdc-6b2d2fc27c1e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGNlOWFlNGEtNGVmOC00MDk4LTljZGMtNmIyZDJmYzI3YzFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d89b6ec3-7ba3-4f76-906e-2252f7997443" + "84e90fac-336a-4317-b2da-308e4c4c93ef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -354,22 +354,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "6d815a54-56bf-4901-9adb-2f6decf98d6d" + "6d0b890b-fa10-4cd6-b5c2-45c382f46ac4" ], "x-ms-correlation-request-id": [ - "6d815a54-56bf-4901-9adb-2f6decf98d6d" + "6d0b890b-fa10-4cd6-b5c2-45c382f46ac4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150204Z:6d815a54-56bf-4901-9adb-2f6decf98d6d" + "JIOINDIACENTRAL:20220512T114057Z:6d0b890b-fa10-4cd6-b5c2-45c382f46ac4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:02:03 GMT" + "Thu, 12 May 2022 11:40:56 GMT" ], "Content-Length": [ "21" @@ -382,19 +382,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02695efe-d296-4434-b393-ddb2d27b5b3f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDI2OTVlZmUtZDI5Ni00NDM0LWIzOTMtZGRiMmQyN2I1YjNmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dce9ae4a-4ef8-4098-9cdc-6b2d2fc27c1e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGNlOWFlNGEtNGVmOC00MDk4LTljZGMtNmIyZDJmYzI3YzFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d89b6ec3-7ba3-4f76-906e-2252f7997443" + "84e90fac-336a-4317-b2da-308e4c4c93ef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -414,22 +414,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "09c507bd-89a8-4aed-9e4e-4800df8dd335" + "1fcaeebc-5948-44cb-a37e-6b8e6e17e9e6" ], "x-ms-correlation-request-id": [ - "09c507bd-89a8-4aed-9e4e-4800df8dd335" + "1fcaeebc-5948-44cb-a37e-6b8e6e17e9e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150235Z:09c507bd-89a8-4aed-9e4e-4800df8dd335" + "JIOINDIACENTRAL:20220512T114127Z:1fcaeebc-5948-44cb-a37e-6b8e6e17e9e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:02:34 GMT" + "Thu, 12 May 2022 11:41:26 GMT" ], "Content-Length": [ "21" @@ -442,19 +442,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02695efe-d296-4434-b393-ddb2d27b5b3f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDI2OTVlZmUtZDI5Ni00NDM0LWIzOTMtZGRiMmQyN2I1YjNmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dce9ae4a-4ef8-4098-9cdc-6b2d2fc27c1e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGNlOWFlNGEtNGVmOC00MDk4LTljZGMtNmIyZDJmYzI3YzFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d89b6ec3-7ba3-4f76-906e-2252f7997443" + "84e90fac-336a-4317-b2da-308e4c4c93ef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -474,22 +474,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "fbaa41f0-4bb1-42e7-83c1-1356fe829fc0" + "787449a3-e856-45f7-b1f5-d0729cd69f6a" ], "x-ms-correlation-request-id": [ - "fbaa41f0-4bb1-42e7-83c1-1356fe829fc0" + "787449a3-e856-45f7-b1f5-d0729cd69f6a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150306Z:fbaa41f0-4bb1-42e7-83c1-1356fe829fc0" + "JIOINDIACENTRAL:20220512T114158Z:787449a3-e856-45f7-b1f5-d0729cd69f6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:03:06 GMT" + "Thu, 12 May 2022 11:41:58 GMT" ], "Content-Length": [ "21" @@ -502,19 +502,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/02695efe-d296-4434-b393-ddb2d27b5b3f?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDI2OTVlZmUtZDI5Ni00NDM0LWIzOTMtZGRiMmQyN2I1YjNmP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dce9ae4a-4ef8-4098-9cdc-6b2d2fc27c1e?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGNlOWFlNGEtNGVmOC00MDk4LTljZGMtNmIyZDJmYzI3YzFlP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d89b6ec3-7ba3-4f76-906e-2252f7997443" + "84e90fac-336a-4317-b2da-308e4c4c93ef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -534,22 +534,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "5c4c454c-ed65-435d-a1b2-ed2177fbf6ab" + "dc25dd9e-dd2e-490d-87e5-ddf4ef6acccc" ], "x-ms-correlation-request-id": [ - "5c4c454c-ed65-435d-a1b2-ed2177fbf6ab" + "dc25dd9e-dd2e-490d-87e5-ddf4ef6acccc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150337Z:5c4c454c-ed65-435d-a1b2-ed2177fbf6ab" + "JIOINDIACENTRAL:20220512T114228Z:dc25dd9e-dd2e-490d-87e5-ddf4ef6acccc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:03:36 GMT" + "Thu, 12 May 2022 11:42:28 GMT" ], "Content-Length": [ "22" @@ -562,22 +562,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da386364-6f16-4ddc-800a-4005702bde15" + "281179aa-925a-49f0-844e-0f58c1d22858" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,47 +597,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-request-id": [ - "049898f6-5608-4d69-92b1-b1588ff4d4a8" + "e235614c-696d-4813-bd8a-7c116e39ad5c" ], "x-ms-correlation-request-id": [ - "049898f6-5608-4d69-92b1-b1588ff4d4a8" + "e235614c-696d-4813-bd8a-7c116e39ad5c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150338Z:049898f6-5608-4d69-92b1-b1588ff4d4a8" + "JIOINDIACENTRAL:20220512T114230Z:e235614c-696d-4813-bd8a-7c116e39ad5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:03:38 GMT" + "Thu, 12 May 2022 11:42:30 GMT" ], "Content-Length": [ - "5549" + "6260" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: da386364-6f16-4ddc-800a-4005702bde15, Request URI: /apps/36edac91-621f-4f7c-9e24-ff6811433b41/services/405f0879-d495-4988-9295-d27939ea6959/partitions/7d3b0616-f600-443a-a43c-af51114e2af9/replicas/132905256052816409s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T15:03:38.8234944Z, RequestEndTime: 2022-03-08T15:03:38.8334688Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:02:29.2429417Z\\\\\\\",\\\\\\\"cpu\\\\\\\":8.876,\\\\\\\"memory\\\\\\\":464618244.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0101,\\\\\\\"availableThreads\\\\\\\":32745,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:02:39.2529863Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.935,\\\\\\\"memory\\\\\\\":463719588.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0156,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:02:49.2630579Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.744,\\\\\\\"memory\\\\\\\":462558476.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0166,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:03:09.2731974Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.389,\\\\\\\"memory\\\\\\\":461258932.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0306,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:03:19.2733292Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.789,\\\\\\\"memory\\\\\\\":460802884.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.021,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:03:29.2833989Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.895,\\\\\\\"memory\\\\\\\":460223188.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0103,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T15:03:38.8234944Z; ResponseTime: 2022-03-08T15:03:38.8334688Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/36edac91-621f-4f7c-9e24-ff6811433b41/services/405f0879-d495-4988-9295-d27939ea6959/partitions/7d3b0616-f600-443a-a43c-af51114e2af9/replicas/132905256052816409s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 3.837, ActivityId: da386364-6f16-4ddc-800a-4005702bde15, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8234944Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0109},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8235053Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0038},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8235091Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2179},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8237270Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 4.399},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8281260Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.055},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8281810Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T15:03:38.8234944Z; ResponseTime: 2022-03-08T15:03:38.8334688Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/36edac91-621f-4f7c-9e24-ff6811433b41/services/405f0879-d495-4988-9295-d27939ea6959/partitions/7d3b0616-f600-443a-a43c-af51114e2af9/replicas/132905256052816410s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.022, ActivityId: da386364-6f16-4ddc-800a-4005702bde15, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8234944Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0051},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8234995Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0014},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8235009Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1868},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8236877Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4553},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8251430Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0693},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:03:38.8252123Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"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/table1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: 281179aa-925a-49f0-844e-0f58c1d22858, Request URI: /apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/e42db6e2-f82c-4c9f-8435-1948b5a5567c/partitions/35a92fa1-ad39-4773-a8c2-4cad037b32c6/replicas/132968007146921724s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:42:30.6838023Z, RequestEndTime: 2022-05-12T11:42:30.6838023Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:41:29.8342800Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.747,\\\\\\\"memory\\\\\\\":657443572.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0087,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:41:39.8341966Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.544,\\\\\\\"memory\\\\\\\":657300204.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0281,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:41:49.8441420Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.495,\\\\\\\"memory\\\\\\\":657027172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0127,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:42:09.8539282Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.922,\\\\\\\"memory\\\\\\\":657344500.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0277,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:42:19.8638763Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.437,\\\\\\\"memory\\\\\\\":657340444.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.014,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:42:29.8738048Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.715,\\\\\\\"memory\\\\\\\":657346784.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0151,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:42:30.6838023Z; ResponseTime: 2022-05-12T11:42:30.6838023Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/e42db6e2-f82c-4c9f-8435-1948b5a5567c/partitions/35a92fa1-ad39-4773-a8c2-4cad037b32c6/replicas/132968007146921724s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.666, ActivityId: 281179aa-925a-49f0-844e-0f58c1d22858, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6838023Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0081},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6838104Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6838123Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2855},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6840978Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7485},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6848463Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.079},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6849253Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:42:30.6338102Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:42:30.6338102Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:42:30.6438017Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":474,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:42:30.6838023Z; ResponseTime: 2022-05-12T11:42:30.6838023Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/e42db6e2-f82c-4c9f-8435-1948b5a5567c/partitions/35a92fa1-ad39-4773-a8c2-4cad037b32c6/replicas/132968007146921725s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.968, ActivityId: 281179aa-925a-49f0-844e-0f58c1d22858, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6838023Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0034},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6838057Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.001},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6838067Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.159},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6839657Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2417},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6852074Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0237},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:42:30.6852311Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:42:30.5538027Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:42:30.5538027Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:42:30.5538027Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":474,\\\\\\\"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/table1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da386364-6f16-4ddc-800a-4005702bde15" + "281179aa-925a-49f0-844e-0f58c1d22858" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +657,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-request-id": [ - "b7ab282a-59db-4e4b-a938-e0cd81b091c5" + "b0c9e35f-1e6e-44e1-9a6a-39d617dacf19" ], "x-ms-correlation-request-id": [ - "b7ab282a-59db-4e4b-a938-e0cd81b091c5" + "b0c9e35f-1e6e-44e1-9a6a-39d617dacf19" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150410Z:b7ab282a-59db-4e4b-a938-e0cd81b091c5" + "JIOINDIACENTRAL:20220512T114305Z:b0c9e35f-1e6e-44e1-9a6a-39d617dacf19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:09 GMT" + "Thu, 12 May 2022 11:43:05 GMT" ], "Content-Length": [ "376" @@ -681,26 +681,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"Kf97AJJFLnQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fd-b82df00101d8\\\"\",\r\n \"_ts\": 1646751830\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"yQA3AOq+yx8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f5-6446940101d8\\\"\",\r\n \"_ts\": 1652355763\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab08bae1-25aa-4191-9fff-ce523596f9cc" + "814d8c35-1e30-4e0c-b9df-2cf09323f515" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "x-ms-request-id": [ - "902eff02-2ff7-48e5-8bd3-74bad29f9d97" + "f8a75f2b-2f4c-44dd-9b96-4f7713555266" ], "x-ms-correlation-request-id": [ - "902eff02-2ff7-48e5-8bd3-74bad29f9d97" + "f8a75f2b-2f4c-44dd-9b96-4f7713555266" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150411Z:902eff02-2ff7-48e5-8bd3-74bad29f9d97" + "JIOINDIACENTRAL:20220512T114308Z:f8a75f2b-2f4c-44dd-9b96-4f7713555266" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:10 GMT" + "Thu, 12 May 2022 11:43:07 GMT" ], "Content-Length": [ "376" @@ -744,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"Kf97AJJFLnQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fd-b82df00101d8\\\"\",\r\n \"_ts\": 1646751830\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"yQA3AOq+yx8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f5-6446940101d8\\\"\",\r\n \"_ts\": 1652355763\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c8a28f-5423-4e28-98b6-2fac375c1885" + "816a7e5d-3bfd-4078-bac5-341f0d2d62aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -783,22 +783,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-request-id": [ - "0540111f-a839-43e9-a4e9-c3556e721178" + "e55871f3-4107-4db6-b97a-51d5a7a31417" ], "x-ms-correlation-request-id": [ - "0540111f-a839-43e9-a4e9-c3556e721178" + "e55871f3-4107-4db6-b97a-51d5a7a31417" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150412Z:0540111f-a839-43e9-a4e9-c3556e721178" + "JIOINDIACENTRAL:20220512T114310Z:e55871f3-4107-4db6-b97a-51d5a7a31417" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:11 GMT" + "Thu, 12 May 2022 11:43:09 GMT" ], "Content-Length": [ "376" @@ -807,26 +807,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"Kf97AJJFLnQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fd-b82df00101d8\\\"\",\r\n \"_ts\": 1646751830\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"yQA3AOq+yx8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f5-6446940101d8\\\"\",\r\n \"_ts\": 1652355763\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4e55c76-7e18-4d34-835b-8abe7784cdfc" + "5d2470d2-e515-4d45-9a5b-d5ab589dadab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -846,22 +846,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11983" ], "x-ms-request-id": [ - "6ca1a31f-896e-4e72-b2fd-647d3e241510" + "c524e6cf-d1d3-48ab-8538-882c7bf29c91" ], "x-ms-correlation-request-id": [ - "6ca1a31f-896e-4e72-b2fd-647d3e241510" + "c524e6cf-d1d3-48ab-8538-882c7bf29c91" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150412Z:6ca1a31f-896e-4e72-b2fd-647d3e241510" + "JIOINDIACENTRAL:20220512T114311Z:c524e6cf-d1d3-48ab-8538-882c7bf29c91" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:11 GMT" + "Thu, 12 May 2022 11:43:10 GMT" ], "Content-Length": [ "376" @@ -870,23 +870,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"Kf97AJJFLnQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fd-b82df00101d8\\\"\",\r\n \"_ts\": 1646751830\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"yQA3AOq+yx8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f5-6446940101d8\\\"\",\r\n \"_ts\": 1652355763\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4e55c76-7e18-4d34-835b-8abe7784cdfc" + "5d2470d2-e515-4d45-9a5b-d5ab589dadab" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -906,22 +906,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11981" ], "x-ms-request-id": [ - "a14797f9-4388-46cb-a715-a3fc98fd146b" + "e882d4f8-bbc4-48fe-a40d-245f8ca7a5c9" ], "x-ms-correlation-request-id": [ - "a14797f9-4388-46cb-a715-a3fc98fd146b" + "e882d4f8-bbc4-48fe-a40d-245f8ca7a5c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150443Z:a14797f9-4388-46cb-a715-a3fc98fd146b" + "JIOINDIACENTRAL:20220512T114343Z:e882d4f8-bbc4-48fe-a40d-245f8ca7a5c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:43 GMT" + "Thu, 12 May 2022 11:43:42 GMT" ], "Content-Length": [ "376" @@ -930,26 +930,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"Kf97AJJFLnQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fd-b82df00101d8\\\"\",\r\n \"_ts\": 1646751830\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"yQA3AOq+yx8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f5-6446940101d8\\\"\",\r\n \"_ts\": 1652355763\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\"\r\n },\r\n \"options\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "da386364-6f16-4ddc-800a-4005702bde15" + "281179aa-925a-49f0-844e-0f58c1d22858" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -966,13 +966,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/4af44fdb-ffaa-4597-adc3-bdbfbb72430e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/10bafbff-4d51-423a-bb74-e499f33ba5c1?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4af44fdb-ffaa-4597-adc3-bdbfbb72430e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10bafbff-4d51-423a-bb74-e499f33ba5c1?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "4af44fdb-ffaa-4597-adc3-bdbfbb72430e" + "10bafbff-4d51-423a-bb74-e499f33ba5c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -987,16 +987,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "76deb76e-a461-4d83-a33b-ee89fecc2d17" + "12956295-b80d-4c19-a939-4f7e1d52eced" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150339Z:76deb76e-a461-4d83-a33b-ee89fecc2d17" + "JIOINDIACENTRAL:20220512T114233Z:12956295-b80d-4c19-a939-4f7e1d52eced" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:03:39 GMT" + "Thu, 12 May 2022 11:42:33 GMT" ], "Content-Length": [ "21" @@ -1009,22 +1009,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\"\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e4e55c76-7e18-4d34-835b-8abe7784cdfc" + "5d2470d2-e515-4d45-9a5b-d5ab589dadab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,13 +1041,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/44fec28c-d89e-465a-b015-db6c925d1f59?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/24754b0e-c12f-4312-9de4-84fe8ba1c2a8?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/44fec28c-d89e-465a-b015-db6c925d1f59?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/24754b0e-c12f-4312-9de4-84fe8ba1c2a8?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "44fec28c-d89e-465a-b015-db6c925d1f59" + "24754b0e-c12f-4312-9de4-84fe8ba1c2a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1059,19 +1059,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "23460fd9-a6fc-4c11-a516-892df3b0d15c" + "efae153e-c514-40d1-a1b8-9c9b7aafabfa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150413Z:23460fd9-a6fc-4c11-a516-892df3b0d15c" + "JIOINDIACENTRAL:20220512T114312Z:efae153e-c514-40d1-a1b8-9c9b7aafabfa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:12 GMT" + "Thu, 12 May 2022 11:43:12 GMT" ], "Content-Length": [ "21" @@ -1084,19 +1084,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4af44fdb-ffaa-4597-adc3-bdbfbb72430e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGFmNDRmZGItZmZhYS00NTk3LWFkYzMtYmRiZmJiNzI0MzBlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10bafbff-4d51-423a-bb74-e499f33ba5c1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTBiYWZiZmYtNGQ1MS00MjNhLWJiNzQtZTQ5OWYzM2JhNWMxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da386364-6f16-4ddc-800a-4005702bde15" + "281179aa-925a-49f0-844e-0f58c1d22858" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1116,22 +1116,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-request-id": [ - "af1daa02-c8ff-481b-979c-4e8430d03b26" + "a4a33e23-3bc3-43d9-a3e3-0e7013fde458" ], "x-ms-correlation-request-id": [ - "af1daa02-c8ff-481b-979c-4e8430d03b26" + "a4a33e23-3bc3-43d9-a3e3-0e7013fde458" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150409Z:af1daa02-c8ff-481b-979c-4e8430d03b26" + "JIOINDIACENTRAL:20220512T114304Z:a4a33e23-3bc3-43d9-a3e3-0e7013fde458" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:09 GMT" + "Thu, 12 May 2022 11:43:04 GMT" ], "Content-Length": [ "22" @@ -1144,22 +1144,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a043f58-313f-47b9-b6da-f02806e36141" + "7c6cafdd-ede5-497e-84c6-609aa2385cf4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1179,22 +1179,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "0e35966e-a726-4bf0-9d85-47d3d8e15dbc" + "012c0c23-1e40-464e-b1ce-ef39cb9d0473" ], "x-ms-correlation-request-id": [ - "0e35966e-a726-4bf0-9d85-47d3d8e15dbc" + "012c0c23-1e40-464e-b1ce-ef39cb9d0473" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150410Z:0e35966e-a726-4bf0-9d85-47d3d8e15dbc" + "JIOINDIACENTRAL:20220512T114306Z:012c0c23-1e40-464e-b1ce-ef39cb9d0473" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:10 GMT" + "Thu, 12 May 2022 11:43:06 GMT" ], "Content-Length": [ "359" @@ -1203,26 +1203,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"gEqD\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"uqO0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c3ae441-3c34-4499-97cd-3ad05ef71ccd" + "76b7b401-65df-4d94-829d-9e76086850ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1242,22 +1242,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11992" ], "x-ms-request-id": [ - "ff55b686-89ef-4c93-b6ea-5a7c439c6c29" + "e5d9dcd6-b790-461b-b695-43fac4bdce98" ], "x-ms-correlation-request-id": [ - "ff55b686-89ef-4c93-b6ea-5a7c439c6c29" + "e5d9dcd6-b790-461b-b695-43fac4bdce98" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150443Z:ff55b686-89ef-4c93-b6ea-5a7c439c6c29" + "JIOINDIACENTRAL:20220512T114343Z:e5d9dcd6-b790-461b-b695-43fac4bdce98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:43 GMT" + "Thu, 12 May 2022 11:43:43 GMT" ], "Content-Length": [ "359" @@ -1266,23 +1266,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"gEqD\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"uqO0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/44fec28c-d89e-465a-b015-db6c925d1f59?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDRmZWMyOGMtZDg5ZS00NjVhLWIwMTUtZGI2YzkyNWQxZjU5P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/24754b0e-c12f-4312-9de4-84fe8ba1c2a8?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjQ3NTRiMGUtYzEyZi00MzEyLTlkZTQtODRmZThiYTFjMmE4P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4e55c76-7e18-4d34-835b-8abe7784cdfc" + "5d2470d2-e515-4d45-9a5b-d5ab589dadab" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1302,22 +1302,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11982" ], "x-ms-request-id": [ - "50571a18-c7fa-43ca-aff9-1a814054f280" + "5d33ce81-9077-442a-9ab5-5e3671485acb" ], "x-ms-correlation-request-id": [ - "50571a18-c7fa-43ca-aff9-1a814054f280" + "5d33ce81-9077-442a-9ab5-5e3671485acb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150443Z:50571a18-c7fa-43ca-aff9-1a814054f280" + "JIOINDIACENTRAL:20220512T114342Z:5d33ce81-9077-442a-9ab5-5e3671485acb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:43 GMT" + "Thu, 12 May 2022 11:43:42 GMT" ], "Content-Length": [ "22" @@ -1330,22 +1330,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table2?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f69ad2b-d771-4dca-a4dc-e84b346bb9b7" + "3c8d557d-17d0-4151-8bf0-47e38c6c0dfb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1365,50 +1365,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11991" ], "x-ms-request-id": [ - "a8ad2c9f-1a09-452b-b20a-bfc98afd6e5b" + "c5bb3f43-cf9c-4a41-9491-1d9803e31e10" ], "x-ms-correlation-request-id": [ - "a8ad2c9f-1a09-452b-b20a-bfc98afd6e5b" + "c5bb3f43-cf9c-4a41-9491-1d9803e31e10" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150444Z:a8ad2c9f-1a09-452b-b20a-bfc98afd6e5b" + "JIOINDIACENTRAL:20220512T114344Z:c5bb3f43-cf9c-4a41-9491-1d9803e31e10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:44 GMT" + "Thu, 12 May 2022 11:43:44 GMT" ], "Content-Length": [ - "5599" + "6316" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 8f69ad2b-d771-4dca-a4dc-e84b346bb9b7, Request URI: /apps/36edac91-621f-4f7c-9e24-ff6811433b41/services/405f0879-d495-4988-9295-d27939ea6959/partitions/7d3b0616-f600-443a-a43c-af51114e2af9/replicas/132905256052816409s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T15:04:44.1638783Z, RequestEndTime: 2022-03-08T15:04:44.1738781Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:03:49.3035426Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.409,\\\\\\\"memory\\\\\\\":463244496.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0127,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:03:59.3236030Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.735,\\\\\\\"memory\\\\\\\":462643424.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0151,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:04:09.3337130Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.522,\\\\\\\"memory\\\\\\\":462129692.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0167,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:04:19.3437934Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.713,\\\\\\\"memory\\\\\\\":461500412.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0305,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:04:29.3538038Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.458,\\\\\\\"memory\\\\\\\":461218548.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0146,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:04:39.3639118Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.347,\\\\\\\"memory\\\\\\\":460828456.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0123,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T15:04:44.1638783Z; ResponseTime: 2022-03-08T15:04:44.1738781Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/36edac91-621f-4f7c-9e24-ff6811433b41/services/405f0879-d495-4988-9295-d27939ea6959/partitions/7d3b0616-f600-443a-a43c-af51114e2af9/replicas/132905256052816409s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.28, ActivityId: 8f69ad2b-d771-4dca-a4dc-e84b346bb9b7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1638783Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0183},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1638966Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1638996Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2034},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1641030Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.731},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1648340Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0356},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1648696Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T15:04:44.1638783Z; ResponseTime: 2022-03-08T15:04:44.1738781Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/36edac91-621f-4f7c-9e24-ff6811433b41/services/405f0879-d495-4988-9295-d27939ea6959/partitions/7d3b0616-f600-443a-a43c-af51114e2af9/replicas/132905256052816410s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.28, ActivityId: 8f69ad2b-d771-4dca-a4dc-e84b346bb9b7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1638783Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1638838Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1638851Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1927},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1640778Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.648},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1647258Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0623},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:04:44.1647881Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TablesDB/colls/table2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 3c8d557d-17d0-4151-8bf0-47e38c6c0dfb, Request URI: /apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/e42db6e2-f82c-4c9f-8435-1948b5a5567c/partitions/35a92fa1-ad39-4773-a8c2-4cad037b32c6/replicas/132968007146921723s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:43:44.3759561Z, RequestEndTime: 2022-05-12T11:43:44.3759561Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:42:43.3171909Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.224,\\\\\\\"memory\\\\\\\":649221040.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0181,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:42:53.3269814Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.388,\\\\\\\"memory\\\\\\\":649092960.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0547,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:43:03.3367949Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.188,\\\\\\\"memory\\\\\\\":649082700.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0189,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:43:13.3465858Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.495,\\\\\\\"memory\\\\\\\":648888768.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0176,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:43:23.3563886Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.541,\\\\\\\"memory\\\\\\\":648575556.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0182,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:43:33.3662030Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.945,\\\\\\\"memory\\\\\\\":648464544.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0261,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:43:44.3759561Z; ResponseTime: 2022-05-12T11:43:44.3759561Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/e42db6e2-f82c-4c9f-8435-1948b5a5567c/partitions/35a92fa1-ad39-4773-a8c2-4cad037b32c6/replicas/132968007146921723s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.432, ActivityId: 3c8d557d-17d0-4151-8bf0-47e38c6c0dfb, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3759561Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0155},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3759716Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0029},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3759745Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2053},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3761798Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8976},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3770774Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0512},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3771286Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:43:43.7559668Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:43:43.7559668Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:43:43.7559668Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:43:44.3759561Z; ResponseTime: 2022-05-12T11:43:44.3759561Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/d2c00173-f149-46fc-8e0a-c0b5f152256c/services/e42db6e2-f82c-4c9f-8435-1948b5a5567c/partitions/35a92fa1-ad39-4773-a8c2-4cad037b32c6/replicas/132968007146921724s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.227, ActivityId: 3c8d557d-17d0-4151-8bf0-47e38c6c0dfb, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3759561Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0036},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3759597Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0009},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3759606Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1531},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3761137Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5128},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3766265Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0754},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:43:44.3767019Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:43:43.7159682Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:43:43.7159682Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:43:43.7159682Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TablesDB/colls/table2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b58301d-37a1-46af-8de6-f94840ab16f2" + "401ef0f8-6b0d-4172-a266-0cea8217ca2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1428,22 +1428,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11983" ], "x-ms-request-id": [ - "222929b2-60de-48bd-8d69-92ab04fd99d4" + "02abdb66-33f7-4717-94c2-500adbe7d04c" ], "x-ms-correlation-request-id": [ - "222929b2-60de-48bd-8d69-92ab04fd99d4" + "02abdb66-33f7-4717-94c2-500adbe7d04c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150444Z:222929b2-60de-48bd-8d69-92ab04fd99d4" + "JIOINDIACENTRAL:20220512T114345Z:02abdb66-33f7-4717-94c2-500adbe7d04c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:44 GMT" + "Thu, 12 May 2022 11:43:45 GMT" ], "Content-Length": [ "388" @@ -1452,26 +1452,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"Kf97AJJFLnQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fd-b82df00101d8\\\"\",\r\n \"_ts\": 1646751830\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"yQA3AOq+yx8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f5-6446940101d8\\\"\",\r\n \"_ts\": 1652355763\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f80232cb-4743-4d36-a5ae-e02ab0e83a2e" + "a731387d-8f85-47da-b107-715aa0fe2dc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1482,13 +1482,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/58d27981-bcb4-42fa-a9c6-4685cc1a6b4a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/8be8d4c8-f89a-4831-8437-8dbb3e44dfa0?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/58d27981-bcb4-42fa-a9c6-4685cc1a6b4a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8be8d4c8-f89a-4831-8437-8dbb3e44dfa0?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "58d27981-bcb4-42fa-a9c6-4685cc1a6b4a" + "8be8d4c8-f89a-4831-8437-8dbb3e44dfa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,19 +1500,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "6d649cb8-ce4d-4f10-8dcc-98f943de9424" + "f6f18a03-6911-424f-a460-ed7c34302d71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150445Z:6d649cb8-ce4d-4f10-8dcc-98f943de9424" + "JIOINDIACENTRAL:20220512T114347Z:f6f18a03-6911-424f-a460-ed7c34302d71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:04:45 GMT" + "Thu, 12 May 2022 11:43:46 GMT" ], "Content-Length": [ "21" @@ -1525,22 +1525,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32e6a47d-d96c-47e1-9fa1-d43d65fb1977" + "501e7a11-b0d8-47ef-9b37-f8d820d45b98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1551,13 +1551,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/f81a5910-d80f-4c56-900b-a412fb1cc0d3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/c7c08076-02b5-4b86-b39d-357e1bbcd603?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f81a5910-d80f-4c56-900b-a412fb1cc0d3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7c08076-02b5-4b86-b39d-357e1bbcd603?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "f81a5910-d80f-4c56-900b-a412fb1cc0d3" + "c7c08076-02b5-4b86-b39d-357e1bbcd603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1569,19 +1569,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "789fb09a-e33e-4415-bdb3-e348eed1e238" + "ddc30f36-de52-496f-968c-551da39bd4d1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150517Z:789fb09a-e33e-4415-bdb3-e348eed1e238" + "JIOINDIACENTRAL:20220512T114419Z:ddc30f36-de52-496f-968c-551da39bd4d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:05:17 GMT" + "Thu, 12 May 2022 11:44:19 GMT" ], "Content-Length": [ "21" @@ -1594,19 +1594,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/58d27981-bcb4-42fa-a9c6-4685cc1a6b4a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNThkMjc5ODEtYmNiNC00MmZhLWE5YzYtNDY4NWNjMWE2YjRhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8be8d4c8-f89a-4831-8437-8dbb3e44dfa0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGJlOGQ0YzgtZjg5YS00ODMxLTg0MzctOGRiYjNlNDRkZmEwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f80232cb-4743-4d36-a5ae-e02ab0e83a2e" + "a731387d-8f85-47da-b107-715aa0fe2dc5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1626,22 +1626,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11987" ], "x-ms-request-id": [ - "958c7ef2-7fa3-4ee8-b005-4ec81cda4d0c" + "3c3ef9fd-305c-4ba5-88f9-72903aae841d" ], "x-ms-correlation-request-id": [ - "958c7ef2-7fa3-4ee8-b005-4ec81cda4d0c" + "3c3ef9fd-305c-4ba5-88f9-72903aae841d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150516Z:958c7ef2-7fa3-4ee8-b005-4ec81cda4d0c" + "JIOINDIACENTRAL:20220512T114417Z:3c3ef9fd-305c-4ba5-88f9-72903aae841d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:05:15 GMT" + "Thu, 12 May 2022 11:44:16 GMT" ], "Content-Length": [ "22" @@ -1654,19 +1654,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/58d27981-bcb4-42fa-a9c6-4685cc1a6b4a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxL29wZXJhdGlvblJlc3VsdHMvNThkMjc5ODEtYmNiNC00MmZhLWE5YzYtNDY4NWNjMWE2YjRhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/8be8d4c8-f89a-4831-8437-8dbb3e44dfa0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxL29wZXJhdGlvblJlc3VsdHMvOGJlOGQ0YzgtZjg5YS00ODMxLTg0MzctOGRiYjNlNDRkZmEwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f80232cb-4743-4d36-a5ae-e02ab0e83a2e" + "a731387d-8f85-47da-b107-715aa0fe2dc5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1686,22 +1686,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11986" ], "x-ms-request-id": [ - "9e9515e9-a6cb-44bd-b77a-4ddd13c1b37e" + "287d8d85-afe0-4f95-b61a-de2ffecc0a18" ], "x-ms-correlation-request-id": [ - "9e9515e9-a6cb-44bd-b77a-4ddd13c1b37e" + "287d8d85-afe0-4f95-b61a-de2ffecc0a18" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150516Z:9e9515e9-a6cb-44bd-b77a-4ddd13c1b37e" + "JIOINDIACENTRAL:20220512T114417Z:287d8d85-afe0-4f95-b61a-de2ffecc0a18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:05:15 GMT" + "Thu, 12 May 2022 11:44:17 GMT" ], "Content-Type": [ "application/json" @@ -1711,19 +1711,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f81a5910-d80f-4c56-900b-a412fb1cc0d3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjgxYTU5MTAtZDgwZi00YzU2LTkwMGItYTQxMmZiMWNjMGQzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c7c08076-02b5-4b86-b39d-357e1bbcd603?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzdjMDgwNzYtMDJiNS00Yjg2LWIzOWQtMzU3ZTFiYmNkNjAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32e6a47d-d96c-47e1-9fa1-d43d65fb1977" + "501e7a11-b0d8-47ef-9b37-f8d820d45b98" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1743,22 +1743,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11991" ], "x-ms-request-id": [ - "1a9faf6a-1092-4633-9fd4-e8a563a4ff4c" + "0a963321-0127-400d-b859-26eedf65fbac" ], "x-ms-correlation-request-id": [ - "1a9faf6a-1092-4633-9fd4-e8a563a4ff4c" + "0a963321-0127-400d-b859-26eedf65fbac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150548Z:1a9faf6a-1092-4633-9fd4-e8a563a4ff4c" + "JIOINDIACENTRAL:20220512T114450Z:0a963321-0127-400d-b859-26eedf65fbac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:05:48 GMT" + "Thu, 12 May 2022 11:44:50 GMT" ], "Content-Length": [ "22" @@ -1771,19 +1771,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/f81a5910-d80f-4c56-900b-a412fb1cc0d3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxL29wZXJhdGlvblJlc3VsdHMvZjgxYTU5MTAtZDgwZi00YzU2LTkwMGItYTQxMmZiMWNjMGQzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup38/providers/Microsoft.DocumentDB/databaseAccounts/table-db2528/tables/table1/operationResults/c7c08076-02b5-4b86-b39d-357e1bbcd603?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyOC90YWJsZXMvdGFibGUxL29wZXJhdGlvblJlc3VsdHMvYzdjMDgwNzYtMDJiNS00Yjg2LWIzOWQtMzU3ZTFiYmNkNjAzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32e6a47d-d96c-47e1-9fa1-d43d65fb1977" + "501e7a11-b0d8-47ef-9b37-f8d820d45b98" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1803,22 +1803,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11990" ], "x-ms-request-id": [ - "65803788-9d37-4ee7-bcd5-5c60b0910915" + "1129b7cd-cd14-405c-b2cb-27a382e7df3b" ], "x-ms-correlation-request-id": [ - "65803788-9d37-4ee7-bcd5-5c60b0910915" + "1129b7cd-cd14-405c-b2cb-27a382e7df3b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T150549Z:65803788-9d37-4ee7-bcd5-5c60b0910915" + "JIOINDIACENTRAL:20220512T114451Z:1129b7cd-cd14-405c-b2cb-27a382e7df3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:05:48 GMT" + "Thu, 12 May 2022 11:44:50 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableOperationsCmdletsUsingInputObject.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableOperationsCmdletsUsingInputObject.json index 627d34da577c..7ad312ebfb15 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableOperationsCmdletsUsingInputObject.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableOperationsCmdletsUsingInputObject.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8f49d063-04f1-4147-a337-adb9d25a71f9" + "b36c81a3-284d-4492-9303-aa87224808b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "94cb70e1-b010-44ff-8654-7ac1959c47b8" + "2f0c6e9a-3b97-4feb-b190-3eab002706fb" ], "x-ms-correlation-request-id": [ - "94cb70e1-b010-44ff-8654-7ac1959c47b8" + "2f0c6e9a-3b97-4feb-b190-3eab002706fb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145439Z:94cb70e1-b010-44ff-8654-7ac1959c47b8" + "JIOINDIACENTRAL:20220512T113307Z:2f0c6e9a-3b97-4feb-b190-3eab002706fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:54:39 GMT" + "Thu, 12 May 2022 11:33:06 GMT" ], "Content-Length": [ "200" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a07f188-af8c-48fc-a5b0-97e85efd16da" + "80d8299e-ecb2-45ea-8e1c-c6f2b064e7e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "8f72ded1-1667-4bfd-a14c-4da06336d78b" + "d52e5c9e-89a2-4902-aa6e-19420e3bd860" ], "x-ms-correlation-request-id": [ - "8f72ded1-1667-4bfd-a14c-4da06336d78b" + "d52e5c9e-89a2-4902-aa6e-19420e3bd860" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145441Z:8f72ded1-1667-4bfd-a14c-4da06336d78b" + "JIOINDIACENTRAL:20220512T113309Z:d52e5c9e-89a2-4902-aa6e-19420e3bd860" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:54:40 GMT" + "Thu, 12 May 2022 11:33:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,19 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a07f188-af8c-48fc-a5b0-97e85efd16da" + "80d8299e-ecb2-45ea-8e1c-c6f2b064e7e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11979" ], "x-ms-request-id": [ - "ef276f3c-62cc-4e97-8fef-5d7a9341afaf" + "6a3ed297-f656-40a2-a39a-e1843d33b976" ], "x-ms-correlation-request-id": [ - "ef276f3c-62cc-4e97-8fef-5d7a9341afaf" + "6a3ed297-f656-40a2-a39a-e1843d33b976" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145727Z:ef276f3c-62cc-4e97-8fef-5d7a9341afaf" + "JIOINDIACENTRAL:20220512T113553Z:6a3ed297-f656-40a2-a39a-e1843d33b976" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:26 GMT" + "Thu, 12 May 2022 11:35:52 GMT" ], "Content-Length": [ "2413" @@ -183,26 +183,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:57:02.8454467Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2527.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d548efdf-f868-4b59-b2d3-de0c4d821f5e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:35:24.8546146Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2527.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e9e85e60-1178-49cb-b52b-25e65131814e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de394e6e-5c01-43bf-814a-878786a7f80f" + "70344b10-281a-4cb7-bc92-cf34f8c73106" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "eede9a55-11e0-419d-97c8-3dcc5604280b" + "881bedb3-6957-4a64-94c2-119dfafb2fed" ], "x-ms-correlation-request-id": [ - "eede9a55-11e0-419d-97c8-3dcc5604280b" + "881bedb3-6957-4a64-94c2-119dfafb2fed" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145727Z:eede9a55-11e0-419d-97c8-3dcc5604280b" + "CENTRALINDIA:20220512T113554Z:881bedb3-6957-4a64-94c2-119dfafb2fed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:27 GMT" + "Thu, 12 May 2022 11:35:54 GMT" ], "Content-Length": [ "2413" @@ -246,26 +246,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:57:02.8454467Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2527.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d548efdf-f868-4b59-b2d3-de0c4d821f5e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:35:24.8546146Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2527.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e9e85e60-1178-49cb-b52b-25e65131814e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": true,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8a07f188-af8c-48fc-a5b0-97e85efd16da" + "80d8299e-ecb2-45ea-8e1c-c6f2b064e7e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/operationResults/60a34ba2-7533-41a8-adfa-8207953ad4ad?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/operationResults/5c8d8399-76ff-4d3f-be00-04d297a555d2?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "60a34ba2-7533-41a8-adfa-8207953ad4ad" + "5c8d8399-76ff-4d3f-be00-04d297a555d2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/60a34ba2-7533-41a8-adfa-8207953ad4ad?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5c8d8399-76ff-4d3f-be00-04d297a555d2?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "d815400a-7c5d-4742-ac5d-609706b81ce5" + "97e903b3-db49-4184-9c6e-cc5506c1c5a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145452Z:d815400a-7c5d-4742-ac5d-609706b81ce5" + "JIOINDIACENTRAL:20220512T113319Z:97e903b3-db49-4184-9c6e-cc5506c1c5a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:54:51 GMT" + "Thu, 12 May 2022 11:33:19 GMT" ], "Content-Length": [ "2039" @@ -321,23 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T14:54:49.3322125Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d548efdf-f868-4b59-b2d3-de0c4d821f5e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T11:33:17.2862639Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"e9e85e60-1178-49cb-b52b-25e65131814e\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/60a34ba2-7533-41a8-adfa-8207953ad4ad?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjBhMzRiYTItNzUzMy00MWE4LWFkZmEtODIwNzk1M2FkNGFkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5c8d8399-76ff-4d3f-be00-04d297a555d2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWM4ZDgzOTktNzZmZi00ZDNmLWJlMDAtMDRkMjk3YTU1NWQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a07f188-af8c-48fc-a5b0-97e85efd16da" + "80d8299e-ecb2-45ea-8e1c-c6f2b064e7e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -357,22 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11978" ], "x-ms-request-id": [ - "3400b43c-ae85-4965-bb90-73fdea9a801c" + "e250c5f6-6adf-4a69-9e55-11f9e0e1810f" ], "x-ms-correlation-request-id": [ - "3400b43c-ae85-4965-bb90-73fdea9a801c" + "e250c5f6-6adf-4a69-9e55-11f9e0e1810f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145523Z:3400b43c-ae85-4965-bb90-73fdea9a801c" + "JIOINDIACENTRAL:20220512T113350Z:e250c5f6-6adf-4a69-9e55-11f9e0e1810f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:55:23 GMT" + "Thu, 12 May 2022 11:33:50 GMT" ], "Content-Length": [ "21" @@ -385,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/60a34ba2-7533-41a8-adfa-8207953ad4ad?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjBhMzRiYTItNzUzMy00MWE4LWFkZmEtODIwNzk1M2FkNGFkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5c8d8399-76ff-4d3f-be00-04d297a555d2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWM4ZDgzOTktNzZmZi00ZDNmLWJlMDAtMDRkMjk3YTU1NWQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a07f188-af8c-48fc-a5b0-97e85efd16da" + "80d8299e-ecb2-45ea-8e1c-c6f2b064e7e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11977" ], "x-ms-request-id": [ - "5047f37b-cc71-43da-a0f0-f67a8068074f" + "ef689e8e-9916-4bd1-ba08-c08d9c74e75f" ], "x-ms-correlation-request-id": [ - "5047f37b-cc71-43da-a0f0-f67a8068074f" + "ef689e8e-9916-4bd1-ba08-c08d9c74e75f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145554Z:5047f37b-cc71-43da-a0f0-f67a8068074f" + "JIOINDIACENTRAL:20220512T113421Z:ef689e8e-9916-4bd1-ba08-c08d9c74e75f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:55:53 GMT" + "Thu, 12 May 2022 11:34:20 GMT" ], "Content-Length": [ "21" @@ -445,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/60a34ba2-7533-41a8-adfa-8207953ad4ad?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjBhMzRiYTItNzUzMy00MWE4LWFkZmEtODIwNzk1M2FkNGFkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5c8d8399-76ff-4d3f-be00-04d297a555d2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWM4ZDgzOTktNzZmZi00ZDNmLWJlMDAtMDRkMjk3YTU1NWQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a07f188-af8c-48fc-a5b0-97e85efd16da" + "80d8299e-ecb2-45ea-8e1c-c6f2b064e7e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -477,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11976" ], "x-ms-request-id": [ - "df432099-2e50-496d-998f-50c828887b2c" + "f3553101-dff8-4fca-aab1-6cb1735b0cdf" ], "x-ms-correlation-request-id": [ - "df432099-2e50-496d-998f-50c828887b2c" + "f3553101-dff8-4fca-aab1-6cb1735b0cdf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145625Z:df432099-2e50-496d-998f-50c828887b2c" + "JIOINDIACENTRAL:20220512T113452Z:f3553101-dff8-4fca-aab1-6cb1735b0cdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:56:24 GMT" + "Thu, 12 May 2022 11:34:51 GMT" ], "Content-Length": [ "21" @@ -505,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/60a34ba2-7533-41a8-adfa-8207953ad4ad?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjBhMzRiYTItNzUzMy00MWE4LWFkZmEtODIwNzk1M2FkNGFkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5c8d8399-76ff-4d3f-be00-04d297a555d2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWM4ZDgzOTktNzZmZi00ZDNmLWJlMDAtMDRkMjk3YTU1NWQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a07f188-af8c-48fc-a5b0-97e85efd16da" + "80d8299e-ecb2-45ea-8e1c-c6f2b064e7e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11981" ], "x-ms-request-id": [ - "56831de1-9fe5-47b3-b75e-6e00c6cbca61" + "3324791d-698d-4026-ac3a-fc2ee955b0fd" ], "x-ms-correlation-request-id": [ - "56831de1-9fe5-47b3-b75e-6e00c6cbca61" + "3324791d-698d-4026-ac3a-fc2ee955b0fd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145656Z:56831de1-9fe5-47b3-b75e-6e00c6cbca61" + "JIOINDIACENTRAL:20220512T113522Z:3324791d-698d-4026-ac3a-fc2ee955b0fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:56:55 GMT" + "Thu, 12 May 2022 11:35:21 GMT" ], "Content-Length": [ "21" @@ -565,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/60a34ba2-7533-41a8-adfa-8207953ad4ad?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjBhMzRiYTItNzUzMy00MWE4LWFkZmEtODIwNzk1M2FkNGFkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5c8d8399-76ff-4d3f-be00-04d297a555d2?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWM4ZDgzOTktNzZmZi00ZDNmLWJlMDAtMDRkMjk3YTU1NWQyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a07f188-af8c-48fc-a5b0-97e85efd16da" + "80d8299e-ecb2-45ea-8e1c-c6f2b064e7e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11980" ], "x-ms-request-id": [ - "024ddd6d-0fde-4486-8587-9d4d0c031b95" + "f97b4c11-ef10-4529-9cb6-e793a26c17fd" ], "x-ms-correlation-request-id": [ - "024ddd6d-0fde-4486-8587-9d4d0c031b95" + "f97b4c11-ef10-4529-9cb6-e793a26c17fd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145726Z:024ddd6d-0fde-4486-8587-9d4d0c031b95" + "JIOINDIACENTRAL:20220512T113553Z:f97b4c11-ef10-4529-9cb6-e793a26c17fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:26 GMT" + "Thu, 12 May 2022 11:35:52 GMT" ], "Content-Length": [ "22" @@ -625,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2cda8d7-696d-404b-abed-12bccf32edde" + "829419ba-500b-4d26-a8b5-e81b59688c17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -660,47 +660,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-request-id": [ - "7fb4d217-6889-4ec9-9c9b-33b862a4882d" + "324820df-c131-44c0-95c4-acde16c9997c" ], "x-ms-correlation-request-id": [ - "7fb4d217-6889-4ec9-9c9b-33b862a4882d" + "324820df-c131-44c0-95c4-acde16c9997c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145727Z:7fb4d217-6889-4ec9-9c9b-33b862a4882d" + "CENTRALINDIA:20220512T113556Z:324820df-c131-44c0-95c4-acde16c9997c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:27 GMT" + "Thu, 12 May 2022 11:35:55 GMT" ], "Content-Length": [ - "5551" + "6256" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: a2cda8d7-696d-404b-abed-12bccf32edde, Request URI: /apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/d39e98ca-3d29-4bf5-8dca-3758d7196a1a/partitions/b0811532-a8de-4968-a41e-fe3530930923/replicas/132911610052854584s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T14:57:27.8668733Z, RequestEndTime: 2022-03-08T14:57:27.8668733Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:56:36.4275944Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.787,\\\\\\\"memory\\\\\\\":627128476.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0113,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:56:46.4374641Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.649,\\\\\\\"memory\\\\\\\":631026408.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0199,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:56:56.4473278Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.604,\\\\\\\"memory\\\\\\\":630179000.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0106,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:57:06.4571941Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.073,\\\\\\\"memory\\\\\\\":629948676.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0158,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:57:16.4670413Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.242,\\\\\\\"memory\\\\\\\":629520616.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0136,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T14:57:26.4768955Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.278,\\\\\\\"memory\\\\\\\":629401832.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0267,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T14:57:27.8668733Z; ResponseTime: 2022-03-08T14:57:27.8668733Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/d39e98ca-3d29-4bf5-8dca-3758d7196a1a/partitions/b0811532-a8de-4968-a41e-fe3530930923/replicas/132911610052854584s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.774, ActivityId: a2cda8d7-696d-404b-abed-12bccf32edde, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8668733Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0136},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8668869Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8668896Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1866},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8670762Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9983},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8680745Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0608},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8681353Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T14:57:27.8668733Z; ResponseTime: 2022-03-08T14:57:27.8668733Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/5d8c4665-3942-4750-9f7e-14f66cc8a423/services/d39e98ca-3d29-4bf5-8dca-3758d7196a1a/partitions/b0811532-a8de-4968-a41e-fe3530930923/replicas/132911610052854586s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.841, ActivityId: a2cda8d7-696d-404b-abed-12bccf32edde, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8668733Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0035},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8668768Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8668788Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1436},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8670224Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1286},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8681510Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0238},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T14:57:27.8681748Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"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/table1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: 829419ba-500b-4d26-a8b5-e81b59688c17, Request URI: /apps/65add265-bb3e-485f-9962-6e664a860882/services/af106dff-489e-4fd0-9cde-e04b402031ab/partitions/bd2a77c9-d1b0-41e9-a3a4-6bc70b8ad896/replicas/132968103162440664s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T11:35:56.2915398Z, RequestEndTime: 2022-05-12T11:35:56.2915398Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:34:53.5821048Z\\\\\\\",\\\\\\\"cpu\\\\\\\":3.125,\\\\\\\"memory\\\\\\\":657084120.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0149,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:35:03.5920094Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.155,\\\\\\\"memory\\\\\\\":656839364.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0218,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:35:23.6018443Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.693,\\\\\\\"memory\\\\\\\":657219428.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0158,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:35:33.6117246Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.661,\\\\\\\"memory\\\\\\\":656967544.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0149,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:35:43.6316158Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.312,\\\\\\\"memory\\\\\\\":656724980.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0293,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T11:35:53.6415478Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.348,\\\\\\\"memory\\\\\\\":657168920.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0092,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T11:35:56.2915398Z; ResponseTime: 2022-05-12T11:35:56.2915398Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/65add265-bb3e-485f-9962-6e664a860882/services/af106dff-489e-4fd0-9cde-e04b402031ab/partitions/bd2a77c9-d1b0-41e9-a3a4-6bc70b8ad896/replicas/132968103162440664s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.709, ActivityId: 829419ba-500b-4d26-a8b5-e81b59688c17, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2915398Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0096},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2915494Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2915520Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.3179},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2918699Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2928699Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1894},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2930593Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:35:56.2515302Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:35:56.2515302Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:35:56.2515302Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T11:35:56.2915398Z; ResponseTime: 2022-05-12T11:35:56.2915398Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/65add265-bb3e-485f-9962-6e664a860882/services/af106dff-489e-4fd0-9cde-e04b402031ab/partitions/bd2a77c9-d1b0-41e9-a3a4-6bc70b8ad896/replicas/132968103162440663s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.15, ActivityId: 829419ba-500b-4d26-a8b5-e81b59688c17, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2915398Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.003},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2915428Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2915436Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2621},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2918057Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5173},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2933230Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.142},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T11:35:56.2934650Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T11:35:56.2515302Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T11:35:56.2515302Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T11:35:56.2515302Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":478,\\\\\\\"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/table1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2cda8d7-696d-404b-abed-12bccf32edde" + "829419ba-500b-4d26-a8b5-e81b59688c17" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -720,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11994" ], "x-ms-request-id": [ - "d36714ce-0212-4066-812b-47286c52fb87" + "d45595a8-4b3a-4269-8745-47c3166fdcf4" ], "x-ms-correlation-request-id": [ - "d36714ce-0212-4066-812b-47286c52fb87" + "d45595a8-4b3a-4269-8745-47c3166fdcf4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145800Z:d36714ce-0212-4066-812b-47286c52fb87" + "CENTRALINDIA:20220512T113628Z:d45595a8-4b3a-4269-8745-47c3166fdcf4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:59 GMT" + "Thu, 12 May 2022 11:36:28 GMT" ], "Content-Length": [ "376" @@ -744,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"7XNTAP4BJEQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fc-db1bf40101d8\\\"\",\r\n \"_ts\": 1646751459\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"bKQaAK1Yq-Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f4-7813dc0101d8\\\"\",\r\n \"_ts\": 1652355366\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5e76839-8f26-4150-b868-2873528f7f95" + "ed584fe0-e34b-45bc-a1df-6d07d61ae92a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -786,19 +786,19 @@ "11985" ], "x-ms-request-id": [ - "21bef6f0-bf19-4fc2-962a-51b5b813db71" + "511ad808-033c-44da-9fbb-23bcc29da591" ], "x-ms-correlation-request-id": [ - "21bef6f0-bf19-4fc2-962a-51b5b813db71" + "511ad808-033c-44da-9fbb-23bcc29da591" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145800Z:21bef6f0-bf19-4fc2-962a-51b5b813db71" + "JIOINDIACENTRAL:20220512T113630Z:511ad808-033c-44da-9fbb-23bcc29da591" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:59 GMT" + "Thu, 12 May 2022 11:36:29 GMT" ], "Content-Length": [ "376" @@ -807,26 +807,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"7XNTAP4BJEQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fc-db1bf40101d8\\\"\",\r\n \"_ts\": 1646751459\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"bKQaAK1Yq-Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f4-7813dc0101d8\\\"\",\r\n \"_ts\": 1652355366\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "940fdec9-0123-4274-a1e5-8f1e78132b17" + "f8116572-e09f-410a-adba-6cd232cbf9be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -846,22 +846,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11986" ], "x-ms-request-id": [ - "e558d489-f6c4-4dd2-9f89-90dc3a29bb1f" + "e3d18b6a-417d-44d9-8c7e-f37f880bb018" ], "x-ms-correlation-request-id": [ - "e558d489-f6c4-4dd2-9f89-90dc3a29bb1f" + "e3d18b6a-417d-44d9-8c7e-f37f880bb018" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145801Z:e558d489-f6c4-4dd2-9f89-90dc3a29bb1f" + "JIOINDIACENTRAL:20220512T113633Z:e3d18b6a-417d-44d9-8c7e-f37f880bb018" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:58:00 GMT" + "Thu, 12 May 2022 11:36:32 GMT" ], "Content-Length": [ "376" @@ -870,23 +870,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"7XNTAP4BJEQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fc-db1bf40101d8\\\"\",\r\n \"_ts\": 1646751459\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"bKQaAK1Yq-Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f4-7813dc0101d8\\\"\",\r\n \"_ts\": 1652355366\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "940fdec9-0123-4274-a1e5-8f1e78132b17" + "f8116572-e09f-410a-adba-6cd232cbf9be" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -906,22 +906,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11984" ], "x-ms-request-id": [ - "f3e4171c-26f1-47b1-8c3a-e026c15e296e" + "dcdecc88-318a-4560-aec9-6f0594ed8f35" ], "x-ms-correlation-request-id": [ - "f3e4171c-26f1-47b1-8c3a-e026c15e296e" + "dcdecc88-318a-4560-aec9-6f0594ed8f35" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145832Z:f3e4171c-26f1-47b1-8c3a-e026c15e296e" + "JIOINDIACENTRAL:20220512T113707Z:dcdecc88-318a-4560-aec9-6f0594ed8f35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:58:32 GMT" + "Thu, 12 May 2022 11:37:07 GMT" ], "Content-Length": [ "376" @@ -930,26 +930,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"7XNTAP4BJEQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fc-db1bf40101d8\\\"\",\r\n \"_ts\": 1646751459\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"bKQaAK1Yq-Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f4-7813dc0101d8\\\"\",\r\n \"_ts\": 1652355366\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c48232e9-1e3a-4aae-b58e-01759ef941e4" + "8f3a49b1-d4c5-4cde-a679-7abbd7f3b616" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -969,22 +969,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-request-id": [ - "f25ca23c-fff6-4451-bfa4-96cac91ea641" + "40c03cca-7cfa-44b0-916e-2a2eb721ff50" ], "x-ms-correlation-request-id": [ - "f25ca23c-fff6-4451-bfa4-96cac91ea641" + "40c03cca-7cfa-44b0-916e-2a2eb721ff50" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145833Z:f25ca23c-fff6-4451-bfa4-96cac91ea641" + "CENTRALINDIA:20220512T113710Z:40c03cca-7cfa-44b0-916e-2a2eb721ff50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:58:33 GMT" + "Thu, 12 May 2022 11:37:09 GMT" ], "Content-Length": [ "376" @@ -993,23 +993,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"7XNTAP4BJEQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fc-db1bf40101d8\\\"\",\r\n \"_ts\": 1646751459\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"bKQaAK1Yq-Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f4-7813dc0101d8\\\"\",\r\n \"_ts\": 1652355366\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c48232e9-1e3a-4aae-b58e-01759ef941e4" + "8f3a49b1-d4c5-4cde-a679-7abbd7f3b616" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1029,22 +1029,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11997" ], "x-ms-request-id": [ - "5252288a-ecf9-454f-9838-cc8296684d6d" + "c9fbe0fb-02e4-40d9-a125-e1d6c6a9e00b" ], "x-ms-correlation-request-id": [ - "5252288a-ecf9-454f-9838-cc8296684d6d" + "c9fbe0fb-02e4-40d9-a125-e1d6c6a9e00b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145905Z:5252288a-ecf9-454f-9838-cc8296684d6d" + "CENTRALINDIA:20220512T113742Z:c9fbe0fb-02e4-40d9-a125-e1d6c6a9e00b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:59:04 GMT" + "Thu, 12 May 2022 11:37:42 GMT" ], "Content-Length": [ "376" @@ -1053,26 +1053,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"7XNTAP4BJEQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fc-db1bf40101d8\\\"\",\r\n \"_ts\": 1646751459\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"bKQaAK1Yq-Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f4-7813dc0101d8\\\"\",\r\n \"_ts\": 1652355366\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\"\r\n },\r\n \"options\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a2cda8d7-696d-404b-abed-12bccf32edde" + "829419ba-500b-4d26-a8b5-e81b59688c17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1089,13 +1089,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/ed16d430-602e-4394-86a8-29c102effa2a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/19175541-0d5c-4387-a125-9e0bbe5efac3?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ed16d430-602e-4394-86a8-29c102effa2a?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19175541-0d5c-4387-a125-9e0bbe5efac3?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ed16d430-602e-4394-86a8-29c102effa2a" + "19175541-0d5c-4387-a125-9e0bbe5efac3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,16 +1110,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "a7ca0c4b-9dc0-41af-9f4d-fa7ef37f5694" + "aa3b4bbc-7436-4566-bd29-c5d913ddbcfa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145728Z:a7ca0c4b-9dc0-41af-9f4d-fa7ef37f5694" + "CENTRALINDIA:20220512T113557Z:aa3b4bbc-7436-4566-bd29-c5d913ddbcfa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:28 GMT" + "Thu, 12 May 2022 11:35:56 GMT" ], "Content-Length": [ "21" @@ -1132,22 +1132,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\"\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "940fdec9-0123-4274-a1e5-8f1e78132b17" + "f8116572-e09f-410a-adba-6cd232cbf9be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1164,13 +1164,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/ddc075cf-b9a7-4a92-97e8-18e58120cb56?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/2ee44422-b7b5-4dc4-8399-cf85b0799f72?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ddc075cf-b9a7-4a92-97e8-18e58120cb56?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ee44422-b7b5-4dc4-8399-cf85b0799f72?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "ddc075cf-b9a7-4a92-97e8-18e58120cb56" + "2ee44422-b7b5-4dc4-8399-cf85b0799f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1182,19 +1182,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "2713f0ef-b4b5-4ca8-b087-723579c427a7" + "13b69864-322a-44e8-8fe4-b32f57d010e7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145801Z:2713f0ef-b4b5-4ca8-b087-723579c427a7" + "JIOINDIACENTRAL:20220512T113636Z:13b69864-322a-44e8-8fe4-b32f57d010e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:58:00 GMT" + "Thu, 12 May 2022 11:36:35 GMT" ], "Content-Length": [ "21" @@ -1207,22 +1207,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\"\r\n },\r\n \"options\": {\r\n \"throughput\": 500\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c48232e9-1e3a-4aae-b58e-01759ef941e4" + "8f3a49b1-d4c5-4cde-a679-7abbd7f3b616" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1239,13 +1239,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/5530ca58-c3f0-4e21-a0df-d61acd9e1d14?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/85a0e73e-c119-4bda-b8a2-f32215f7c50a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5530ca58-c3f0-4e21-a0df-d61acd9e1d14?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/85a0e73e-c119-4bda-b8a2-f32215f7c50a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "5530ca58-c3f0-4e21-a0df-d61acd9e1d14" + "85a0e73e-c119-4bda-b8a2-f32215f7c50a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,19 +1257,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "30cfdd3f-f4cf-4d6a-afa3-ece69455ff28" + "1a24b105-f8dc-4874-a0df-45be74d7b691" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145834Z:30cfdd3f-f4cf-4d6a-afa3-ece69455ff28" + "CENTRALINDIA:20220512T113712Z:1a24b105-f8dc-4874-a0df-45be74d7b691" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:58:33 GMT" + "Thu, 12 May 2022 11:37:12 GMT" ], "Content-Length": [ "21" @@ -1282,19 +1282,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ed16d430-602e-4394-86a8-29c102effa2a?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQxNmQ0MzAtNjAyZS00Mzk0LTg2YTgtMjljMTAyZWZmYTJhP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19175541-0d5c-4387-a125-9e0bbe5efac3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTkxNzU1NDEtMGQ1Yy00Mzg3LWExMjUtOWUwYmJlNWVmYWMzP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2cda8d7-696d-404b-abed-12bccf32edde" + "829419ba-500b-4d26-a8b5-e81b59688c17" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1314,22 +1314,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-request-id": [ - "ea35f697-cb0a-4d91-a4e8-e20427d53110" + "3a8145e4-7bc4-4263-a8b0-724c53e50fca" ], "x-ms-correlation-request-id": [ - "ea35f697-cb0a-4d91-a4e8-e20427d53110" + "3a8145e4-7bc4-4263-a8b0-724c53e50fca" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145759Z:ea35f697-cb0a-4d91-a4e8-e20427d53110" + "CENTRALINDIA:20220512T113628Z:3a8145e4-7bc4-4263-a8b0-724c53e50fca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:58 GMT" + "Thu, 12 May 2022 11:36:27 GMT" ], "Content-Length": [ "22" @@ -1342,22 +1342,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e3b55fb-7085-49a7-b47f-bf7dedc5bc49" + "c26b7970-011a-41f0-bbee-cb36bef8f65b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1380,19 +1380,19 @@ "11986" ], "x-ms-request-id": [ - "a9f45dea-3ba6-428a-8726-8918492f0afd" + "791f1abe-931b-4a52-a96d-a8e14335c924" ], "x-ms-correlation-request-id": [ - "a9f45dea-3ba6-428a-8726-8918492f0afd" + "791f1abe-931b-4a52-a96d-a8e14335c924" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145800Z:a9f45dea-3ba6-428a-8726-8918492f0afd" + "JIOINDIACENTRAL:20220512T113630Z:791f1abe-931b-4a52-a96d-a8e14335c924" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:57:59 GMT" + "Thu, 12 May 2022 11:36:29 GMT" ], "Content-Length": [ "359" @@ -1401,26 +1401,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"U-dJ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"6XHH\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca3a2d64-fc5a-4728-b9cf-13065d3a219a" + "c3cdef62-6c4d-4636-b8e8-0b88aa3c1c7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1440,22 +1440,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11994" ], "x-ms-request-id": [ - "373c76de-a227-4ce0-b1cb-71d3fe5fddc4" + "2afdba57-ffaf-4b2c-8d32-23ea795691c7" ], "x-ms-correlation-request-id": [ - "373c76de-a227-4ce0-b1cb-71d3fe5fddc4" + "2afdba57-ffaf-4b2c-8d32-23ea795691c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145833Z:373c76de-a227-4ce0-b1cb-71d3fe5fddc4" + "CENTRALINDIA:20220512T113709Z:2afdba57-ffaf-4b2c-8d32-23ea795691c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:58:33 GMT" + "Thu, 12 May 2022 11:37:08 GMT" ], "Content-Length": [ "359" @@ -1464,26 +1464,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"U-dJ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"6XHH\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 600,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e79bee68-88e1-498c-a793-3d901f424eb3" + "ea36b9fe-7974-4f9e-8779-74739fb32ac6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1503,22 +1503,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-request-id": [ - "7084b538-27ea-4516-a4c6-86c4dba88757" + "c4ab0417-404a-40b0-bbe5-0ddc63462e01" ], "x-ms-correlation-request-id": [ - "7084b538-27ea-4516-a4c6-86c4dba88757" + "c4ab0417-404a-40b0-bbe5-0ddc63462e01" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145906Z:7084b538-27ea-4516-a4c6-86c4dba88757" + "CENTRALINDIA:20220512T113745Z:c4ab0417-404a-40b0-bbe5-0ddc63462e01" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:59:05 GMT" + "Thu, 12 May 2022 11:37:44 GMT" ], "Content-Length": [ "359" @@ -1527,23 +1527,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"U-dJ\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"6XHH\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 500,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ddc075cf-b9a7-4a92-97e8-18e58120cb56?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGRjMDc1Y2YtYjlhNy00YTkyLTk3ZTgtMThlNTgxMjBjYjU2P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ee44422-b7b5-4dc4-8399-cf85b0799f72?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmVlNDQ0MjItYjdiNS00ZGM0LTgzOTktY2Y4NWIwNzk5ZjcyP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "940fdec9-0123-4274-a1e5-8f1e78132b17" + "f8116572-e09f-410a-adba-6cd232cbf9be" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1563,22 +1563,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11985" ], "x-ms-request-id": [ - "fc84f27d-36d4-493d-b43b-43339b89d7de" + "9c2fc87b-c31d-404c-b326-4d1d846370f9" ], "x-ms-correlation-request-id": [ - "fc84f27d-36d4-493d-b43b-43339b89d7de" + "9c2fc87b-c31d-404c-b326-4d1d846370f9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145832Z:fc84f27d-36d4-493d-b43b-43339b89d7de" + "JIOINDIACENTRAL:20220512T113707Z:9c2fc87b-c31d-404c-b326-4d1d846370f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:58:32 GMT" + "Thu, 12 May 2022 11:37:06 GMT" ], "Content-Length": [ "22" @@ -1591,19 +1591,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5530ca58-c3f0-4e21-a0df-d61acd9e1d14?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTUzMGNhNTgtYzNmMC00ZTIxLWEwZGYtZDYxYWNkOWUxZDE0P2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/85a0e73e-c119-4bda-b8a2-f32215f7c50a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODVhMGU3M2UtYzExOS00YmRhLWI4YTItZjMyMjE1ZjdjNTBhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c48232e9-1e3a-4aae-b58e-01759ef941e4" + "8f3a49b1-d4c5-4cde-a679-7abbd7f3b616" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1623,22 +1623,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11998" ], "x-ms-request-id": [ - "3d7b7dd6-7d55-431b-a77e-a3d947428688" + "03bd49e1-ca4d-4221-b99b-b6bb51f2e545" ], "x-ms-correlation-request-id": [ - "3d7b7dd6-7d55-431b-a77e-a3d947428688" + "03bd49e1-ca4d-4221-b99b-b6bb51f2e545" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145905Z:3d7b7dd6-7d55-431b-a77e-a3d947428688" + "CENTRALINDIA:20220512T113742Z:03bd49e1-ca4d-4221-b99b-b6bb51f2e545" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:59:04 GMT" + "Thu, 12 May 2022 11:37:42 GMT" ], "Content-Length": [ "22" @@ -1651,22 +1651,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXM/YXBpLXZlcnNpb249MjAyMS0xMS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXM/YXBpLXZlcnNpb249MjAyMi0wMi0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b0ec01b-d926-4ddb-a4ca-b60cec86187d" + "6f4bdf13-3750-40b3-ab74-47c85fb2d163" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1686,22 +1686,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-request-id": [ - "857185b2-54dc-4d66-a9cd-cf4a3d2c6ceb" + "0e6907a2-8920-48a2-a593-45b711abbd0e" ], "x-ms-correlation-request-id": [ - "857185b2-54dc-4d66-a9cd-cf4a3d2c6ceb" + "0e6907a2-8920-48a2-a593-45b711abbd0e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145906Z:857185b2-54dc-4d66-a9cd-cf4a3d2c6ceb" + "CENTRALINDIA:20220512T113747Z:0e6907a2-8920-48a2-a593-45b711abbd0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:59:06 GMT" + "Thu, 12 May 2022 11:37:47 GMT" ], "Content-Length": [ "388" @@ -1710,26 +1710,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"7XNTAP4BJEQ=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-32fc-db1bf40101d8\\\"\",\r\n \"_ts\": 1646751459\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"table1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table1\",\r\n \"_rid\": \"bKQaAK1Yq-Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65f4-7813dc0101d8\\\"\",\r\n \"_ts\": 1652355366\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46832165-b219-4aef-8760-96660f8f80bb" + "102ed68c-2289-4e80-89a9-a326053431f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1740,13 +1740,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/a8bccd47-33b3-41d4-9019-12b040333642?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/fbdbbd21-ccb3-4615-be33-a1918f59be07?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a8bccd47-33b3-41d4-9019-12b040333642?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbdbbd21-ccb3-4615-be33-a1918f59be07?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "a8bccd47-33b3-41d4-9019-12b040333642" + "fbdbbd21-ccb3-4615-be33-a1918f59be07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1758,19 +1758,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "51f9a6ba-a10a-475d-8c67-e7a956ed3763" + "6b08d3bd-1397-4bfe-b836-e00b415dff05" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145907Z:51f9a6ba-a10a-475d-8c67-e7a956ed3763" + "CENTRALINDIA:20220512T113751Z:6b08d3bd-1397-4bfe-b836-e00b415dff05" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:59:06 GMT" + "Thu, 12 May 2022 11:37:51 GMT" ], "Content-Length": [ "21" @@ -1783,22 +1783,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afe554a4-7403-4b4d-8f0e-8536a9112563" + "9cd97bea-9d8d-4aae-8ec3-20c621388d57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1809,13 +1809,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/d73db120-648c-4c78-b7d3-7846edb00e90?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/3c86d9aa-ef05-4d5a-8c4b-cd0df82821f9?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d73db120-648c-4c78-b7d3-7846edb00e90?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c86d9aa-ef05-4d5a-8c4b-cd0df82821f9?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d73db120-648c-4c78-b7d3-7846edb00e90" + "3c86d9aa-ef05-4d5a-8c4b-cd0df82821f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1827,19 +1827,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "59c44f29-0191-49f7-a3a8-4bbfac7d2c8d" + "29b674fa-c4fa-4362-92e5-98299aa64643" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T145940Z:59c44f29-0191-49f7-a3a8-4bbfac7d2c8d" + "JIOINDIACENTRAL:20220512T113827Z:29b674fa-c4fa-4362-92e5-98299aa64643" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:59:40 GMT" + "Thu, 12 May 2022 11:38:27 GMT" ], "Content-Length": [ "21" @@ -1852,19 +1852,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a8bccd47-33b3-41d4-9019-12b040333642?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYThiY2NkNDctMzNiMy00MWQ0LTkwMTktMTJiMDQwMzMzNjQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbdbbd21-ccb3-4615-be33-a1918f59be07?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJkYmJkMjEtY2NiMy00NjE1LWJlMzMtYTE5MThmNTliZTA3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46832165-b219-4aef-8760-96660f8f80bb" + "102ed68c-2289-4e80-89a9-a326053431f8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1884,22 +1884,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11997" ], "x-ms-request-id": [ - "5544b220-c66a-48a0-9d8e-2bd5deffb0ae" + "3840acd6-55fe-4fac-9f9f-8cf8891f048a" ], "x-ms-correlation-request-id": [ - "5544b220-c66a-48a0-9d8e-2bd5deffb0ae" + "3840acd6-55fe-4fac-9f9f-8cf8891f048a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145937Z:5544b220-c66a-48a0-9d8e-2bd5deffb0ae" + "CENTRALINDIA:20220512T113822Z:3840acd6-55fe-4fac-9f9f-8cf8891f048a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:59:37 GMT" + "Thu, 12 May 2022 11:38:21 GMT" ], "Content-Length": [ "22" @@ -1912,19 +1912,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/a8bccd47-33b3-41d4-9019-12b040333642?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL29wZXJhdGlvblJlc3VsdHMvYThiY2NkNDctMzNiMy00MWQ0LTkwMTktMTJiMDQwMzMzNjQyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/fbdbbd21-ccb3-4615-be33-a1918f59be07?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL29wZXJhdGlvblJlc3VsdHMvZmJkYmJkMjEtY2NiMy00NjE1LWJlMzMtYTE5MThmNTliZTA3P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46832165-b219-4aef-8760-96660f8f80bb" + "102ed68c-2289-4e80-89a9-a326053431f8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1944,22 +1944,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11996" ], "x-ms-request-id": [ - "f00bd644-2a59-4fe7-b2cc-6e9101e052c8" + "8781a525-13ef-4f2f-a503-b920e57769f3" ], "x-ms-correlation-request-id": [ - "f00bd644-2a59-4fe7-b2cc-6e9101e052c8" + "8781a525-13ef-4f2f-a503-b920e57769f3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20220308T145938Z:f00bd644-2a59-4fe7-b2cc-6e9101e052c8" + "CENTRALINDIA:20220512T113822Z:8781a525-13ef-4f2f-a503-b920e57769f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 14:59:37 GMT" + "Thu, 12 May 2022 11:38:22 GMT" ], "Content-Type": [ "application/json" @@ -1969,19 +1969,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d73db120-648c-4c78-b7d3-7846edb00e90?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDczZGIxMjAtNjQ4Yy00Yzc4LWI3ZDMtNzg0NmVkYjAwZTkwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3c86d9aa-ef05-4d5a-8c4b-cd0df82821f9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2M4NmQ5YWEtZWYwNS00ZDVhLThjNGItY2QwZGY4MjgyMWY5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afe554a4-7403-4b4d-8f0e-8536a9112563" + "9cd97bea-9d8d-4aae-8ec3-20c621388d57" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2001,22 +2001,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "fa156db9-6e19-4ab7-a4dd-bd26289c7c4e" + "5b9f9a59-747c-4511-a28b-27cb87b42602" ], "x-ms-correlation-request-id": [ - "fa156db9-6e19-4ab7-a4dd-bd26289c7c4e" + "5b9f9a59-747c-4511-a28b-27cb87b42602" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T150010Z:fa156db9-6e19-4ab7-a4dd-bd26289c7c4e" + "JIOINDIACENTRAL:20220512T113857Z:5b9f9a59-747c-4511-a28b-27cb87b42602" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:00:10 GMT" + "Thu, 12 May 2022 11:38:57 GMT" ], "Content-Length": [ "22" @@ -2029,19 +2029,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/d73db120-648c-4c78-b7d3-7846edb00e90?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL29wZXJhdGlvblJlc3VsdHMvZDczZGIxMjAtNjQ4Yy00Yzc4LWI3ZDMtNzg0NmVkYjAwZTkwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/table1/operationResults/3c86d9aa-ef05-4d5a-8c4b-cd0df82821f9?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGUxL29wZXJhdGlvblJlc3VsdHMvM2M4NmQ5YWEtZWYwNS00ZDVhLThjNGItY2QwZGY4MjgyMWY5P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afe554a4-7403-4b4d-8f0e-8536a9112563" + "9cd97bea-9d8d-4aae-8ec3-20c621388d57" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -2061,22 +2061,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "f390f647-3590-443b-9c68-b0be7232f160" + "634e3f11-0608-45fc-ab9a-9175332a580c" ], "x-ms-correlation-request-id": [ - "f390f647-3590-443b-9c68-b0be7232f160" + "634e3f11-0608-45fc-ab9a-9175332a580c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T150010Z:f390f647-3590-443b-9c68-b0be7232f160" + "JIOINDIACENTRAL:20220512T113859Z:634e3f11-0608-45fc-ab9a-9175332a580c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:00:10 GMT" + "Thu, 12 May 2022 11:38:59 GMT" ], "Content-Type": [ "application/json" diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableThroughputCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableThroughputCmdlets.json index 0903e60e9a06..e3833df660e4 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableThroughputCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableThroughputCmdlets.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c8d77bfc-2790-4fde-bca0-fcf109a4d440" + "b09d571d-410d-4efb-9b64-a943802aa276" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "6d361f0f-1a06-4ecd-bd32-7902b82f7d62" + "fbda1f9b-f146-4d39-a532-e0f49fd3de1b" ], "x-ms-correlation-request-id": [ - "6d361f0f-1a06-4ecd-bd32-7902b82f7d62" + "fbda1f9b-f146-4d39-a532-e0f49fd3de1b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154022Z:6d361f0f-1a06-4ecd-bd32-7902b82f7d62" + "JIOINDIACENTRAL:20220512T123941Z:fbda1f9b-f146-4d39-a532-e0f49fd3de1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:40:21 GMT" + "Thu, 12 May 2022 12:39:40 GMT" ], "Content-Length": [ "199" @@ -67,22 +67,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" + "dfc0504d-a471-4a4f-9f1b-ceeded91aba3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "8b9b748d-d3fe-4d91-8ee3-a3ba81252f9b" + "50c630a8-0516-4c2d-865d-a465d8321ba4" ], "x-ms-correlation-request-id": [ - "8b9b748d-d3fe-4d91-8ee3-a3ba81252f9b" + "50c630a8-0516-4c2d-865d-a465d8321ba4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154023Z:8b9b748d-d3fe-4d91-8ee3-a3ba81252f9b" + "JIOINDIACENTRAL:20220512T123941Z:50c630a8-0516-4c2d-865d-a465d8321ba4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:40:23 GMT" + "Thu, 12 May 2022 12:39:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,23 +123,23 @@ "245" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/table-db2530' under resource group 'CosmosDBResourceGroup34' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/table-db2527' under resource group 'CosmosDBResourceGroup34' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" + "dfc0504d-a471-4a4f-9f1b-ceeded91aba3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -159,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "e33542e4-c47f-4ef8-a460-d439cfc80017" + "34c59e78-8b28-4bb2-bbc3-0c326f4df148" ], "x-ms-correlation-request-id": [ - "e33542e4-c47f-4ef8-a460-d439cfc80017" + "34c59e78-8b28-4bb2-bbc3-0c326f4df148" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154406Z:e33542e4-c47f-4ef8-a460-d439cfc80017" + "JIOINDIACENTRAL:20220512T124226Z:34c59e78-8b28-4bb2-bbc3-0c326f4df148" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:44:06 GMT" + "Thu, 12 May 2022 12:42:25 GMT" ], "Content-Length": [ - "2413" + "2412" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530\",\r\n \"name\": \"table-db2530\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:43:02.7204577Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2530.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2530.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f77de8c6-4cd2-4acb-9d04-948b916f7d61\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2530-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2530-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2530-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:42:07.862333Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2527.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"b66b9418-e872-4bfa-8595-9369bad44fc5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc4b075b-a09a-4cb1-b127-f6deb37405c7" + "c5f4fdd8-2046-4a4e-8b95-7803ad5069ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -222,50 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-request-id": [ - "a3404e3c-2f16-4377-a1d4-9594c02ce0f3" + "91033a11-e63e-43dc-925d-7292185f878c" ], "x-ms-correlation-request-id": [ - "a3404e3c-2f16-4377-a1d4-9594c02ce0f3" + "91033a11-e63e-43dc-925d-7292185f878c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154510Z:a3404e3c-2f16-4377-a1d4-9594c02ce0f3" + "CENTRALINDIA:20220512T124344Z:91033a11-e63e-43dc-925d-7292185f878c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:45:09 GMT" + "Thu, 12 May 2022 12:43:43 GMT" ], "Content-Length": [ - "2413" + "2412" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530\",\r\n \"name\": \"table-db2530\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:43:02.7204577Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2530.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2530.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f77de8c6-4cd2-4acb-9d04-948b916f7d61\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2530-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2530-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2530-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:42:07.862333Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://table-db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://table-db2527.table.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"b66b9418-e872-4bfa-8595-9369bad44fc5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://table-db2527-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Geo\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East Us\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": true,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East Us\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" + "dfc0504d-a471-4a4f-9f1b-ceeded91aba3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/operationResults/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/operationResults/dc9756fe-878b-42bf-9670-b43cd98ee411?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d4ba7b96-7403-4606-988b-1e2335ba22bd" + "dc9756fe-878b-42bf-9670-b43cd98ee411" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9756fe-878b-42bf-9670-b43cd98ee411?api-version=2022-02-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,16 +303,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "c5689aeb-bdea-485c-ac9d-590d111cd3a6" + "49614fba-ed22-41b3-befa-c02a98e17ef7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154034Z:c5689aeb-bdea-485c-ac9d-590d111cd3a6" + "JIOINDIACENTRAL:20220512T123952Z:49614fba-ed22-41b3-befa-c02a98e17ef7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:40:34 GMT" + "Thu, 12 May 2022 12:39:52 GMT" ], "Content-Length": [ "2039" @@ -321,83 +321,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530\",\r\n \"name\": \"table-db2530\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-03-08T15:40:31.4737483Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f77de8c6-4cd2-4acb-9d04-948b916f7d61\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2530-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRiYTdiOTYtNzQwMy00NjA2LTk4OGItMWUyMzM1YmEyMmJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "3ef12c5a-4b92-4729-a5ef-e3a75338e1a3" - ], - "x-ms-correlation-request-id": [ - "3ef12c5a-4b92-4729-a5ef-e3a75338e1a3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154105Z:3ef12c5a-4b92-4729-a5ef-e3a75338e1a3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 15:41:04 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527\",\r\n \"name\": \"table-db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2022-05-12T12:39:49.9016255Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"b66b9418-e872-4bfa-8595-9369bad44fc5\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"enableMaterializedViews\": false,\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"table-db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": \"Invalid\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"diagnosticLogSettings\": {\r\n \"enableFullTextQuery\": \"None\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRiYTdiOTYtNzQwMy00NjA2LTk4OGItMWUyMzM1YmEyMmJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9756fe-878b-42bf-9670-b43cd98ee411?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGM5NzU2ZmUtODc4Yi00MmJmLTk2NzAtYjQzY2Q5OGVlNDExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" + "dfc0504d-a471-4a4f-9f1b-ceeded91aba3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -417,82 +357,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "88d2f87f-b0b6-410a-8710-2d11a95eccf3" - ], - "x-ms-correlation-request-id": [ - "88d2f87f-b0b6-410a-8710-2d11a95eccf3" - ], - "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154135Z:88d2f87f-b0b6-410a-8710-2d11a95eccf3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Mar 2022 15:41:35 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRiYTdiOTYtNzQwMy00NjA2LTk4OGItMWUyMzM1YmEyMmJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.14.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "d13bb114-9272-4e34-897b-b292fd539515" + "6f35c287-e872-4024-9a0d-3dd28eafdc33" ], "x-ms-correlation-request-id": [ - "d13bb114-9272-4e34-897b-b292fd539515" + "6f35c287-e872-4024-9a0d-3dd28eafdc33" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154205Z:d13bb114-9272-4e34-897b-b292fd539515" + "JIOINDIACENTRAL:20220512T124023Z:6f35c287-e872-4024-9a0d-3dd28eafdc33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:42:05 GMT" + "Thu, 12 May 2022 12:40:22 GMT" ], "Content-Length": [ "21" @@ -505,19 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRiYTdiOTYtNzQwMy00NjA2LTk4OGItMWUyMzM1YmEyMmJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9756fe-878b-42bf-9670-b43cd98ee411?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGM5NzU2ZmUtODc4Yi00MmJmLTk2NzAtYjQzY2Q5OGVlNDExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" + "dfc0504d-a471-4a4f-9f1b-ceeded91aba3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -537,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "16721102-3bd0-402a-b624-9d1a87016bda" + "74951d0a-3d22-426a-8a93-0a2799bc87ee" ], "x-ms-correlation-request-id": [ - "16721102-3bd0-402a-b624-9d1a87016bda" + "74951d0a-3d22-426a-8a93-0a2799bc87ee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154235Z:16721102-3bd0-402a-b624-9d1a87016bda" + "JIOINDIACENTRAL:20220512T124053Z:74951d0a-3d22-426a-8a93-0a2799bc87ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:42:35 GMT" + "Thu, 12 May 2022 12:40:53 GMT" ], "Content-Length": [ "21" @@ -565,19 +445,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRiYTdiOTYtNzQwMy00NjA2LTk4OGItMWUyMzM1YmEyMmJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9756fe-878b-42bf-9670-b43cd98ee411?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGM5NzU2ZmUtODc4Yi00MmJmLTk2NzAtYjQzY2Q5OGVlNDExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" + "dfc0504d-a471-4a4f-9f1b-ceeded91aba3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -597,22 +477,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "2915d9b0-18e2-4470-b4ba-18eb596178c4" + "114d2e29-d503-49ae-8a6f-9b73c79b57dc" ], "x-ms-correlation-request-id": [ - "2915d9b0-18e2-4470-b4ba-18eb596178c4" + "114d2e29-d503-49ae-8a6f-9b73c79b57dc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154306Z:2915d9b0-18e2-4470-b4ba-18eb596178c4" + "JIOINDIACENTRAL:20220512T124124Z:114d2e29-d503-49ae-8a6f-9b73c79b57dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:43:05 GMT" + "Thu, 12 May 2022 12:41:23 GMT" ], "Content-Length": [ "21" @@ -625,19 +505,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRiYTdiOTYtNzQwMy00NjA2LTk4OGItMWUyMzM1YmEyMmJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9756fe-878b-42bf-9670-b43cd98ee411?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGM5NzU2ZmUtODc4Yi00MmJmLTk2NzAtYjQzY2Q5OGVlNDExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" + "dfc0504d-a471-4a4f-9f1b-ceeded91aba3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -657,22 +537,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "b5828e00-7e4b-46af-975c-611368488525" + "cd8d48cc-497d-4381-b89f-e1266fd4d8b6" ], "x-ms-correlation-request-id": [ - "b5828e00-7e4b-46af-975c-611368488525" + "cd8d48cc-497d-4381-b89f-e1266fd4d8b6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154336Z:b5828e00-7e4b-46af-975c-611368488525" + "JIOINDIACENTRAL:20220512T124155Z:cd8d48cc-497d-4381-b89f-e1266fd4d8b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:43:36 GMT" + "Thu, 12 May 2022 12:41:54 GMT" ], "Content-Length": [ "21" @@ -685,19 +565,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d4ba7b96-7403-4606-988b-1e2335ba22bd?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRiYTdiOTYtNzQwMy00NjA2LTk4OGItMWUyMzM1YmEyMmJkP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9756fe-878b-42bf-9670-b43cd98ee411?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGM5NzU2ZmUtODc4Yi00MmJmLTk2NzAtYjQzY2Q5OGVlNDExP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d70c842-a366-4f97-b807-b01dc7659de6" + "dfc0504d-a471-4a4f-9f1b-ceeded91aba3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -717,22 +597,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "1485085a-a2af-4890-b6e4-aa83679771ca" + "26c4b2be-898a-46ec-a412-a355c32cc223" ], "x-ms-correlation-request-id": [ - "1485085a-a2af-4890-b6e4-aa83679771ca" + "26c4b2be-898a-46ec-a412-a355c32cc223" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154406Z:1485085a-a2af-4890-b6e4-aa83679771ca" + "JIOINDIACENTRAL:20220512T124225Z:26c4b2be-898a-46ec-a412-a355c32cc223" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:44:06 GMT" + "Thu, 12 May 2022 12:42:24 GMT" ], "Content-Length": [ "22" @@ -745,22 +625,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09405cc7-d1ef-4c46-86f5-0fd6588a7a43" + "8693f885-e032-4e24-a688-19689eb604d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -780,47 +660,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "b88f3cf8-f8e0-49fc-b397-dff8d71f4de7" + "1a4e0589-3a7c-43bd-9432-f8514be3de46" ], "x-ms-correlation-request-id": [ - "b88f3cf8-f8e0-49fc-b397-dff8d71f4de7" + "1a4e0589-3a7c-43bd-9432-f8514be3de46" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154407Z:b88f3cf8-f8e0-49fc-b397-dff8d71f4de7" + "JIOINDIACENTRAL:20220512T124228Z:1a4e0589-3a7c-43bd-9432-f8514be3de46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:44:07 GMT" + "Thu, 12 May 2022 12:42:27 GMT" ], "Content-Length": [ - "5554" + "6267" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: 09405cc7-d1ef-4c46-86f5-0fd6588a7a43, Request URI: /apps/b300ecd9-cf2a-430a-b529-5a1b93fd4f8d/services/b6b89058-9fa8-4576-849e-16a9c3783484/partitions/047edc4c-2d46-498b-920e-83533bcbcfdc/replicas/132910626362026931s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-03-08T15:44:07.2108764Z, RequestEndTime: 2022-03-08T15:44:07.2108764Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:43:12.2120879Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.110,\\\\\\\"memory\\\\\\\":628599176.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.016,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:43:22.2218715Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.387,\\\\\\\"memory\\\\\\\":628550092.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0181,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:43:32.2316472Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.138,\\\\\\\"memory\\\\\\\":628190076.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0072,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:43:42.2414362Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.675,\\\\\\\"memory\\\\\\\":627993936.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0158,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:43:52.2512118Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.771,\\\\\\\"memory\\\\\\\":627432748.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0124,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-03-08T15:44:02.2609844Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.281,\\\\\\\"memory\\\\\\\":626734676.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0206,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-03-08T15:44:07.2108764Z; ResponseTime: 2022-03-08T15:44:07.2108764Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/b300ecd9-cf2a-430a-b529-5a1b93fd4f8d/services/b6b89058-9fa8-4576-849e-16a9c3783484/partitions/047edc4c-2d46-498b-920e-83533bcbcfdc/replicas/132910626362026931s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.804, ActivityId: 09405cc7-d1ef-4c46-86f5-0fd6588a7a43, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2108764Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.014},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2108904Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0037},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2108941Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1897},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2110838Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0932},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2121770Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1522},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2123292Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":484,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-03-08T15:44:07.2108764Z; ResponseTime: 2022-03-08T15:44:07.2108764Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/b300ecd9-cf2a-430a-b529-5a1b93fd4f8d/services/b6b89058-9fa8-4576-849e-16a9c3783484/partitions/047edc4c-2d46-498b-920e-83533bcbcfdc/replicas/132910626362026932s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.817, ActivityId: 09405cc7-d1ef-4c46-86f5-0fd6588a7a43, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2108764Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0034},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2108798Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2108817Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1445},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2110262Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0812},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2121074Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0723},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-03-08T15:44:07.2121797Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"requestSizeInBytes\\\\\\\":484,\\\\\\\"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/tableName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: 8693f885-e032-4e24-a688-19689eb604d7, Request URI: /apps/ecdb578f-3ff3-4c71-b1d1-4ce047734200/services/bb840cbf-74c3-4a30-9774-9391fcda14c4/partitions/f37ca516-d4ee-491c-bcf6-92a3508b0ef8/replicas/132965784248191003s, RequestStats: \\\\r\\\\nRequestStartTime: 2022-05-12T12:42:28.5503999Z, RequestEndTime: 2022-05-12T12:42:28.5503999Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:41:29.8305069Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.371,\\\\\\\"memory\\\\\\\":658813780.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0438,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:41:39.8405005Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.502,\\\\\\\"memory\\\\\\\":658558216.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0227,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:41:49.8504765Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.647,\\\\\\\"memory\\\\\\\":658420072.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0159,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:41:59.8504667Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.247,\\\\\\\"memory\\\\\\\":658595668.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0212,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:42:09.8604483Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.430,\\\\\\\"memory\\\\\\\":658359724.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0271,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2022-05-12T12:42:19.8704207Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.843,\\\\\\\"memory\\\\\\\":658420608.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0174,\\\\\\\"availableThreads\\\\\\\":32757,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767}}]}\\\\r\\\\nRequestStart: 2022-05-12T12:42:28.5503999Z; ResponseTime: 2022-05-12T12:42:28.5503999Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/ecdb578f-3ff3-4c71-b1d1-4ce047734200/services/bb840cbf-74c3-4a30-9774-9391fcda14c4/partitions/f37ca516-d4ee-491c-bcf6-92a3508b0ef8/replicas/132965784248191003s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.803, ActivityId: 8693f885-e032-4e24-a688-19689eb604d7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5503999Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0152},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5504151Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5504178Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1868},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5506046Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2034},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5518080Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1049},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5519129Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:42:28.5104328Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:42:28.5104328Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:42:28.5104328Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2022-05-12T12:42:28.5503999Z; ResponseTime: 2022-05-12T12:42:28.5503999Z; StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11300/apps/ecdb578f-3ff3-4c71-b1d1-4ce047734200/services/bb840cbf-74c3-4a30-9774-9391fcda14c4/partitions/f37ca516-d4ee-491c-bcf6-92a3508b0ef8/replicas/132965784248191001s, LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.677, ActivityId: 8693f885-e032-4e24-a688-19689eb604d7, RetryAfterInMs: , TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5503999Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0035},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5504034Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.001},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5504044Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1475},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5505519Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0859},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5516378Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0955},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2022-05-12T12:42:28.5517333Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2022-05-12T12:42:28.5104328Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2022-05-12T12:42:28.5104328Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2022-05-12T12:42:28.5104328Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"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/tableName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09405cc7-d1ef-4c46-86f5-0fd6588a7a43" + "8693f885-e032-4e24-a688-19689eb604d7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -840,22 +720,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "9f01d92b-18fe-4d76-94c1-ee08b6f39dbf" + "c23fe54c-bd90-4962-90ea-b736fb045edf" ], "x-ms-correlation-request-id": [ - "9f01d92b-18fe-4d76-94c1-ee08b6f39dbf" + "c23fe54c-bd90-4962-90ea-b736fb045edf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154438Z:9f01d92b-18fe-4d76-94c1-ee08b6f39dbf" + "JIOINDIACENTRAL:20220512T124303Z:c23fe54c-bd90-4962-90ea-b736fb045edf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:44:38 GMT" + "Thu, 12 May 2022 12:43:03 GMT" ], "Content-Length": [ "388" @@ -864,26 +744,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"tableName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName3\",\r\n \"_rid\": \"I8QwAMJHdN8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3303-5f74840101d8\\\"\",\r\n \"_ts\": 1646754258\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"tableName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName3\",\r\n \"_rid\": \"4rtVAMF2yMg=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-65fd-c50fbc0101d8\\\"\",\r\n \"_ts\": 1652359361\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"tableName3\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "09405cc7-d1ef-4c46-86f5-0fd6588a7a43" + "8693f885-e032-4e24-a688-19689eb604d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -900,13 +780,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/operationResults/bec3505e-ec7c-44af-88ff-2bf3ee2a665e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/operationResults/f5963891-7385-4e61-9393-672f1191a924?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bec3505e-ec7c-44af-88ff-2bf3ee2a665e?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5963891-7385-4e61-9393-672f1191a924?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "bec3505e-ec7c-44af-88ff-2bf3ee2a665e" + "f5963891-7385-4e61-9393-672f1191a924" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -921,16 +801,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "9548e24e-e199-45d8-85e5-6772843bfc29" + "cacdf9b5-525f-452b-9532-c6c067cc5a9a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154408Z:9548e24e-e199-45d8-85e5-6772843bfc29" + "JIOINDIACENTRAL:20220512T124231Z:cacdf9b5-525f-452b-9532-c6c067cc5a9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:44:07 GMT" + "Thu, 12 May 2022 12:42:31 GMT" ], "Content-Length": [ "21" @@ -943,19 +823,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bec3505e-ec7c-44af-88ff-2bf3ee2a665e?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmVjMzUwNWUtZWM3Yy00NGFmLTg4ZmYtMmJmM2VlMmE2NjVlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5963891-7385-4e61-9393-672f1191a924?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjU5NjM4OTEtNzM4NS00ZTYxLTkzOTMtNjcyZjExOTFhOTI0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09405cc7-d1ef-4c46-86f5-0fd6588a7a43" + "8693f885-e032-4e24-a688-19689eb604d7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -975,22 +855,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "df6c82eb-1642-4ff5-a055-a39715f74eb5" + "a463a69d-fc2c-4805-a2eb-d80031a6d295" ], "x-ms-correlation-request-id": [ - "df6c82eb-1642-4ff5-a055-a39715f74eb5" + "a463a69d-fc2c-4805-a2eb-d80031a6d295" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154438Z:df6c82eb-1642-4ff5-a055-a39715f74eb5" + "JIOINDIACENTRAL:20220512T124302Z:a463a69d-fc2c-4805-a2eb-d80031a6d295" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:44:37 GMT" + "Thu, 12 May 2022 12:43:02 GMT" ], "Content-Length": [ "22" @@ -1003,22 +883,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24e815ca-9a55-4abc-9e50-788388cbd2ed" + "b6a370ca-4a8c-4a24-9f44-66b522a6da93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1038,22 +918,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "ea21e245-dd1b-4f6a-a3b7-9e2a58d00fc2" + "8b59f7f2-d04a-45d7-a9ac-de6e86078d05" ], "x-ms-correlation-request-id": [ - "ea21e245-dd1b-4f6a-a3b7-9e2a58d00fc2" + "8b59f7f2-d04a-45d7-a9ac-de6e86078d05" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154439Z:ea21e245-dd1b-4f6a-a3b7-9e2a58d00fc2" + "CENTRALINDIA:20220512T124307Z:8b59f7f2-d04a-45d7-a9ac-de6e86078d05" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:44:38 GMT" + "Thu, 12 May 2022 12:43:07 GMT" ], "Content-Length": [ "364" @@ -1062,23 +942,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"-xZ0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"btGo\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1200,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dbc772e-478b-4e51-96cb-e7015ddec8d6" + "2652494d-419a-4f09-9650-2f3fe1d4f376" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1098,22 +978,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-request-id": [ - "01c60c50-4892-405a-aaf3-15dc08d35aaf" + "148af65e-d63a-4d31-a90e-78f3f6e28144" ], "x-ms-correlation-request-id": [ - "01c60c50-4892-405a-aaf3-15dc08d35aaf" + "148af65e-d63a-4d31-a90e-78f3f6e28144" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154510Z:01c60c50-4892-405a-aaf3-15dc08d35aaf" + "CENTRALINDIA:20220512T124342Z:148af65e-d63a-4d31-a90e-78f3f6e28144" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:45:09 GMT" + "Thu, 12 May 2022 12:43:41 GMT" ], "Content-Length": [ "364" @@ -1122,23 +1002,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"-xZ0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"btGo\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a3e79b9-b6fc-413f-8dde-12903d63974d" + "85a99301-ba6f-4272-be26-15e317aa4d6b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1158,22 +1038,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "ad4e2b60-0128-4d19-b013-3754f639fd21" + "d1dd349b-c002-4eb9-be1b-10e8e1ee304e" ], "x-ms-correlation-request-id": [ - "ad4e2b60-0128-4d19-b013-3754f639fd21" + "d1dd349b-c002-4eb9-be1b-10e8e1ee304e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154541Z:ad4e2b60-0128-4d19-b013-3754f639fd21" + "CENTRALINDIA:20220512T124418Z:d1dd349b-c002-4eb9-be1b-10e8e1ee304e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:45:41 GMT" + "Thu, 12 May 2022 12:44:18 GMT" ], "Content-Length": [ "364" @@ -1182,23 +1062,23 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"-xZ0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"btGo\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "111b0cd5-b1a8-4b91-8ec1-1b4761371d26" + "4d1785bc-941b-4ed8-b315-6cf401328d4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1218,22 +1098,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-request-id": [ - "8d81063f-7942-439b-82a8-0f7a94988fc3" + "7dc06c4a-0719-4db9-95bc-a58efecf268e" ], "x-ms-correlation-request-id": [ - "8d81063f-7942-439b-82a8-0f7a94988fc3" + "7dc06c4a-0719-4db9-95bc-a58efecf268e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154614Z:8d81063f-7942-439b-82a8-0f7a94988fc3" + "CENTRALINDIA:20220512T124452Z:7dc06c4a-0719-4db9-95bc-a58efecf268e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:46:13 GMT" + "Thu, 12 May 2022 12:44:52 GMT" ], "Content-Length": [ "363" @@ -1242,26 +1122,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"-xZ0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"btGo\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1100\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8dbc772e-478b-4e51-96cb-e7015ddec8d6" + "2652494d-419a-4f09-9650-2f3fe1d4f376" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1278,13 +1158,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default/operationResults/56d41141-f3b5-4a0d-ad38-d9373150c4e3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default/operationResults/5b4c2f5a-2ac4-4518-bf93-183641adb6f0?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/56d41141-f3b5-4a0d-ad38-d9373150c4e3?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5b4c2f5a-2ac4-4518-bf93-183641adb6f0?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "56d41141-f3b5-4a0d-ad38-d9373150c4e3" + "5b4c2f5a-2ac4-4518-bf93-183641adb6f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1296,19 +1176,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "c404c486-8973-4fce-992b-d744883b9c47" + "2676acd8-44f0-44a9-b19b-6bbb1786bca0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154439Z:c404c486-8973-4fce-992b-d744883b9c47" + "CENTRALINDIA:20220512T124310Z:2676acd8-44f0-44a9-b19b-6bbb1786bca0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:44:39 GMT" + "Thu, 12 May 2022 12:43:10 GMT" ], "Content-Length": [ "21" @@ -1321,22 +1201,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 1000\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a3e79b9-b6fc-413f-8dde-12903d63974d" + "85a99301-ba6f-4272-be26-15e317aa4d6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1353,13 +1233,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default/operationResults/d83c8a39-42d1-413c-8d3b-e7299a84c43b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default/operationResults/1766f8a2-e9bc-4258-a2aa-15ecf6c3d53b?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d83c8a39-42d1-413c-8d3b-e7299a84c43b?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1766f8a2-e9bc-4258-a2aa-15ecf6c3d53b?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "d83c8a39-42d1-413c-8d3b-e7299a84c43b" + "1766f8a2-e9bc-4258-a2aa-15ecf6c3d53b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,19 +1251,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "a8ba104c-738f-4124-920a-73b978065f25" + "f6c3ad15-a7bb-43b7-bc29-bcf3292d6070" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154511Z:a8ba104c-738f-4124-920a-73b978065f25" + "CENTRALINDIA:20220512T124347Z:f6c3ad15-a7bb-43b7-bc29-bcf3292d6070" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:45:10 GMT" + "Thu, 12 May 2022 12:43:47 GMT" ], "Content-Length": [ "21" @@ -1396,22 +1276,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 900\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "111b0cd5-b1a8-4b91-8ec1-1b4761371d26" + "4d1785bc-941b-4ed8-b315-6cf401328d4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1428,13 +1308,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/throughputSettings/default/operationResults/0cf5b791-e80c-43f5-8be4-e82dd1566c30?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/throughputSettings/default/operationResults/7919a05d-0b08-47f6-aeac-0b4289b22f3a?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0cf5b791-e80c-43f5-8be4-e82dd1566c30?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7919a05d-0b08-47f6-aeac-0b4289b22f3a?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "0cf5b791-e80c-43f5-8be4-e82dd1566c30" + "7919a05d-0b08-47f6-aeac-0b4289b22f3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,19 +1326,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "330d0963-adf4-4faa-9d80-addcd5c08994" + "1592f684-af32-4a49-8dc6-5934fbe09401" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154543Z:330d0963-adf4-4faa-9d80-addcd5c08994" + "CENTRALINDIA:20220512T124421Z:1592f684-af32-4a49-8dc6-5934fbe09401" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:45:42 GMT" + "Thu, 12 May 2022 12:44:20 GMT" ], "Content-Length": [ "21" @@ -1471,19 +1351,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/56d41141-f3b5-4a0d-ad38-d9373150c4e3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTZkNDExNDEtZjNiNS00YTBkLWFkMzgtZDkzNzMxNTBjNGUzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5b4c2f5a-2ac4-4518-bf93-183641adb6f0?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWI0YzJmNWEtMmFjNC00NTE4LWJmOTMtMTgzNjQxYWRiNmYwP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dbc772e-478b-4e51-96cb-e7015ddec8d6" + "2652494d-419a-4f09-9650-2f3fe1d4f376" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1503,22 +1383,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "2a86f2b4-4a72-428d-aa44-17043bf7ffa9" + "f60268b1-1fa5-4f0a-af74-ead3e35e6856" ], "x-ms-correlation-request-id": [ - "2a86f2b4-4a72-428d-aa44-17043bf7ffa9" + "f60268b1-1fa5-4f0a-af74-ead3e35e6856" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154509Z:2a86f2b4-4a72-428d-aa44-17043bf7ffa9" + "CENTRALINDIA:20220512T124340Z:f60268b1-1fa5-4f0a-af74-ead3e35e6856" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:45:09 GMT" + "Thu, 12 May 2022 12:43:40 GMT" ], "Content-Length": [ "22" @@ -1531,19 +1411,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d83c8a39-42d1-413c-8d3b-e7299a84c43b?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDgzYzhhMzktNDJkMS00MTNjLThkM2ItZTcyOTlhODRjNDNiP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1766f8a2-e9bc-4258-a2aa-15ecf6c3d53b?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTc2NmY4YTItZTliYy00MjU4LWEyYWEtMTVlY2Y2YzNkNTNiP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a3e79b9-b6fc-413f-8dde-12903d63974d" + "85a99301-ba6f-4272-be26-15e317aa4d6b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1563,22 +1443,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "57320490-10fb-48d7-a05f-38ff7aae2747" + "04e6ea5f-4b96-430e-b9ca-670895cba902" ], "x-ms-correlation-request-id": [ - "57320490-10fb-48d7-a05f-38ff7aae2747" + "04e6ea5f-4b96-430e-b9ca-670895cba902" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154541Z:57320490-10fb-48d7-a05f-38ff7aae2747" + "CENTRALINDIA:20220512T124418Z:04e6ea5f-4b96-430e-b9ca-670895cba902" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:45:41 GMT" + "Thu, 12 May 2022 12:44:17 GMT" ], "Content-Length": [ "22" @@ -1591,19 +1471,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0cf5b791-e80c-43f5-8be4-e82dd1566c30?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGNmNWI3OTEtZTgwYy00M2Y1LThiZTQtZTgyZGQxNTY2YzMwP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7919a05d-0b08-47f6-aeac-0b4289b22f3a?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzkxOWEwNWQtMGIwOC00N2Y2LWFlYWMtMGI0Mjg5YjIyZjNhP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "111b0cd5-b1a8-4b91-8ec1-1b4761371d26" + "4d1785bc-941b-4ed8-b315-6cf401328d4c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1623,22 +1503,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-request-id": [ - "ce6e1bb9-b2a5-4bf1-889d-f8fa4e65bc0e" + "c854b4ae-218c-4871-9b8c-39f340787203" ], "x-ms-correlation-request-id": [ - "ce6e1bb9-b2a5-4bf1-889d-f8fa4e65bc0e" + "c854b4ae-218c-4871-9b8c-39f340787203" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154613Z:ce6e1bb9-b2a5-4bf1-889d-f8fa4e65bc0e" + "CENTRALINDIA:20220512T124451Z:c854b4ae-218c-4871-9b8c-39f340787203" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:46:13 GMT" + "Thu, 12 May 2022 12:44:51 GMT" ], "Content-Length": [ "22" @@ -1651,22 +1531,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5eab6d7-ce5f-4ca6-8331-7139776f3dbb" + "067a2f32-2d7e-41bb-a618-d13b3af60f63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1677,13 +1557,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/operationResults/db8b70ed-2bec-4477-ae14-6036599b43fe?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/operationResults/890bd63e-49bf-46a8-874a-db67c98d6a2f?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db8b70ed-2bec-4477-ae14-6036599b43fe?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/890bd63e-49bf-46a8-874a-db67c98d6a2f?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "db8b70ed-2bec-4477-ae14-6036599b43fe" + "890bd63e-49bf-46a8-874a-db67c98d6a2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1695,19 +1575,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "2dede436-b9c0-41a4-891e-58adc265ac06" + "e1d2fb82-ea2d-4837-af17-955670328ca7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154614Z:2dede436-b9c0-41a4-891e-58adc265ac06" + "JIOINDIACENTRAL:20220512T124455Z:e1d2fb82-ea2d-4837-af17-955670328ca7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:46:14 GMT" + "Thu, 12 May 2022 12:44:55 GMT" ], "Content-Length": [ "21" @@ -1720,22 +1600,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMz9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b23f7df-41b4-4506-b978-3422d794c1b6" + "f9cf2dff-8d51-486f-ac3b-e559c9d553af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1746,13 +1626,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/operationResults/64a2c8f4-9bbf-4b5a-a877-8eaeb50d7351?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/operationResults/54fce8c4-2233-4515-b9a4-36352d137234?api-version=2022-02-15-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/64a2c8f4-9bbf-4b5a-a877-8eaeb50d7351?api-version=2021-11-15-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/54fce8c4-2233-4515-b9a4-36352d137234?api-version=2022-02-15-preview" ], "x-ms-request-id": [ - "64a2c8f4-9bbf-4b5a-a877-8eaeb50d7351" + "54fce8c4-2233-4515-b9a4-36352d137234" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1764,19 +1644,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "82c916cb-28cd-41e8-b85d-c11f5e4ae191" + "c677d723-1aae-439c-af93-fe4a19fb4eb1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154647Z:82c916cb-28cd-41e8-b85d-c11f5e4ae191" + "JIOINDIACENTRAL:20220512T124529Z:c677d723-1aae-439c-af93-fe4a19fb4eb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:46:47 GMT" + "Thu, 12 May 2022 12:45:29 GMT" ], "Content-Length": [ "21" @@ -1789,19 +1669,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db8b70ed-2bec-4477-ae14-6036599b43fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGI4YjcwZWQtMmJlYy00NDc3LWFlMTQtNjAzNjU5OWI0M2ZlP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/890bd63e-49bf-46a8-874a-db67c98d6a2f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODkwYmQ2M2UtNDliZi00NmE4LTg3NGEtZGI2N2M5OGQ2YTJmP2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5eab6d7-ce5f-4ca6-8331-7139776f3dbb" + "067a2f32-2d7e-41bb-a618-d13b3af60f63" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1821,22 +1701,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11998" ], "x-ms-request-id": [ - "c7ea6a2d-66b9-4908-b723-6aa05bd80568" + "4bc72a20-64e6-40dd-b75e-049c574d77e8" ], "x-ms-correlation-request-id": [ - "c7ea6a2d-66b9-4908-b723-6aa05bd80568" + "4bc72a20-64e6-40dd-b75e-049c574d77e8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154644Z:c7ea6a2d-66b9-4908-b723-6aa05bd80568" + "JIOINDIACENTRAL:20220512T124525Z:4bc72a20-64e6-40dd-b75e-049c574d77e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:46:44 GMT" + "Thu, 12 May 2022 12:45:25 GMT" ], "Content-Length": [ "22" @@ -1849,19 +1729,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/operationResults/db8b70ed-2bec-4477-ae14-6036599b43fe?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy9vcGVyYXRpb25SZXN1bHRzL2RiOGI3MGVkLTJiZWMtNDQ3Ny1hZTE0LTYwMzY1OTliNDNmZT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/operationResults/890bd63e-49bf-46a8-874a-db67c98d6a2f?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzg5MGJkNjNlLTQ5YmYtNDZhOC04NzRhLWRiNjdjOThkNmEyZj9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5eab6d7-ce5f-4ca6-8331-7139776f3dbb" + "067a2f32-2d7e-41bb-a618-d13b3af60f63" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1881,22 +1761,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11997" ], "x-ms-request-id": [ - "d88d4dcd-e603-451e-b4fb-644c949b1915" + "bb754671-30ae-4c9a-b152-273bc1d56487" ], "x-ms-correlation-request-id": [ - "d88d4dcd-e603-451e-b4fb-644c949b1915" + "bb754671-30ae-4c9a-b152-273bc1d56487" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154645Z:d88d4dcd-e603-451e-b4fb-644c949b1915" + "JIOINDIACENTRAL:20220512T124526Z:bb754671-30ae-4c9a-b152-273bc1d56487" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:46:45 GMT" + "Thu, 12 May 2022 12:45:25 GMT" ], "Content-Type": [ "application/json" @@ -1906,19 +1786,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/64a2c8f4-9bbf-4b5a-a877-8eaeb50d7351?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjRhMmM4ZjQtOWJiZi00YjVhLWE4NzctOGVhZWI1MGQ3MzUxP2FwaS12ZXJzaW9uPTIwMjEtMTEtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/54fce8c4-2233-4515-b9a4-36352d137234?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRmY2U4YzQtMjIzMy00NTE1LWI5YTQtMzYzNTJkMTM3MjM0P2FwaS12ZXJzaW9uPTIwMjItMDItMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b23f7df-41b4-4506-b978-3422d794c1b6" + "f9cf2dff-8d51-486f-ac3b-e559c9d553af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1938,22 +1818,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "e490f648-099e-4cc1-a31d-c2896c4b68f4" + "d397d2ac-99af-4e9d-94df-2595edaac603" ], "x-ms-correlation-request-id": [ - "e490f648-099e-4cc1-a31d-c2896c4b68f4" + "d397d2ac-99af-4e9d-94df-2595edaac603" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154718Z:e490f648-099e-4cc1-a31d-c2896c4b68f4" + "JIOINDIACENTRAL:20220512T124600Z:d397d2ac-99af-4e9d-94df-2595edaac603" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:47:17 GMT" + "Thu, 12 May 2022 12:45:59 GMT" ], "Content-Length": [ "22" @@ -1966,19 +1846,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2530/tables/tableName3/operationResults/64a2c8f4-9bbf-4b5a-a877-8eaeb50d7351?api-version=2021-11-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUzMC90YWJsZXMvdGFibGVOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzY0YTJjOGY0LTliYmYtNGI1YS1hODc3LThlYWViNTBkNzM1MT9hcGktdmVyc2lvbj0yMDIxLTExLTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup34/providers/Microsoft.DocumentDB/databaseAccounts/table-db2527/tables/tableName3/operationResults/54fce8c4-2233-4515-b9a4-36352d137234?api-version=2022-02-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL3RhYmxlLWRiMjUyNy90YWJsZXMvdGFibGVOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzU0ZmNlOGM0LTIyMzMtNDUxNS1iOWE0LTM2MzUyZDEzNzIzND9hcGktdmVyc2lvbj0yMDIyLTAyLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b23f7df-41b4-4506-b978-3422d794c1b6" + "f9cf2dff-8d51-486f-ac3b-e559c9d553af" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.5.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/3.7.0.0" ] }, "ResponseHeaders": { @@ -1998,22 +1878,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "c3f56fcf-bd63-462b-8432-db2e96ad9025" + "b01109aa-8d18-4cc9-be30-bb4247c7064d" ], "x-ms-correlation-request-id": [ - "c3f56fcf-bd63-462b-8432-db2e96ad9025" + "b01109aa-8d18-4cc9-be30-bb4247c7064d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20220308T154718Z:c3f56fcf-bd63-462b-8432-db2e96ad9025" + "JIOINDIACENTRAL:20220512T124600Z:b01109aa-8d18-4cc9-be30-bb4247c7064d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Mar 2022 15:47:18 GMT" + "Thu, 12 May 2022 12:46:00 GMT" ], "Content-Type": [ "application/json" From b3029977a3376f51ea8ba43286d9f7368aeb179d Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Mon, 13 Jun 2022 10:25:14 +0530 Subject: [PATCH 11/18] Fixes update container command on containers with client encryption policy. --- .../CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 | 3 +++ src/CosmosDB/CosmosDB/SQL/UpdateAzCosmosDBSqlContainer.cs | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 index 824bd6e2d3fe..57b78f31ce38 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 @@ -1019,6 +1019,9 @@ function Test-ClientEncryptionKeyCmdlets Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[1].EncryptionType $EncryptionType_2 Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.PolicyFormatVersion 1 + #validate update container works on container with encryption policy. + updateContainerTtl = Update-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -TtlInSeconds 7200 + Assert-AreEqual updateContainerTtl.Resource.DefaultTtl 7200 } Finally { Remove-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName diff --git a/src/CosmosDB/CosmosDB/SQL/UpdateAzCosmosDBSqlContainer.cs b/src/CosmosDB/CosmosDB/SQL/UpdateAzCosmosDBSqlContainer.cs index c820a8df5eae..d2121ced28ba 100644 --- a/src/CosmosDB/CosmosDB/SQL/UpdateAzCosmosDBSqlContainer.cs +++ b/src/CosmosDB/CosmosDB/SQL/UpdateAzCosmosDBSqlContainer.cs @@ -216,7 +216,8 @@ private static SqlContainerResource PopulateSqlContainerResource(SqlContainerGet DefaultTtl = sqlContainerGetPropertiesResource.DefaultTtl, Id = sqlContainerGetPropertiesResource.Id, IndexingPolicy = sqlContainerGetPropertiesResource.IndexingPolicy, - PartitionKey = sqlContainerGetPropertiesResource.PartitionKey + PartitionKey = sqlContainerGetPropertiesResource.PartitionKey, + ClientEncryptionPolicy = sqlContainerGetPropertiesResource.ClientEncryptionPolicy }; } } From 52532523c2d6a5744397f7adb1155e1a3225c076 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Mon, 13 Jun 2022 10:59:02 +0530 Subject: [PATCH 12/18] Update ChangeLog.md --- src/CosmosDB/CosmosDB/ChangeLog.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index e038c1b07efc..524db2765637 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -19,7 +19,6 @@ --> ## Upcoming Release -* Introduced support for creating containers with Client Encryption Policy. The current supported version of Client Encryption Policy is 1. ## Version 1.8.0 * Introduced support for creating containers with Client Encryption Policy. The current supported version of Client Encryption Policy is 1. From b04c5b7289bf69ee5b6ae9facd529db43e1938ac Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Mon, 13 Jun 2022 11:01:40 +0530 Subject: [PATCH 13/18] Update ChangeLog.md --- src/CosmosDB/CosmosDB/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index 524db2765637..01bf0a504d31 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Fixed bug related to Update-AzCosmosDBSqlContainer command on containers with Client Encryption Policy. ## Version 1.8.0 * Introduced support for creating containers with Client Encryption Policy. The current supported version of Client Encryption Policy is 1. From a0e19e25f6d0a1549dd71cbaa4a249ee4a71cac5 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Mon, 20 Jun 2022 13:59:46 +0530 Subject: [PATCH 14/18] Support partition key and id paths to be part of client encryption policy --- src/CosmosDB/CosmosDB/ChangeLog.md | 1 + .../Models/PSClientEncryptionPolicy.cs | 59 +++++++++++++++---- .../Models/Sql/PSSqlClientEncryptionPolicy.cs | 22 +++++-- 3 files changed, 65 insertions(+), 17 deletions(-) diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index 01bf0a504d31..4260ea3ee249 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Adds support for partition key and id paths to be part of client encryption policy. * Fixed bug related to Update-AzCosmosDBSqlContainer command on containers with Client Encryption Policy. ## Version 1.8.0 diff --git a/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs index 2063716d1dd7..80afe4835fc8 100644 --- a/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs +++ b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs @@ -36,7 +36,7 @@ public PSClientEncryptionPolicy(ClientEncryptionPolicy clientEncryptionPolicy) if (ModelHelper.IsNotNullOrEmpty(clientEncryptionPolicy.IncludedPaths)) { - PSClientEncryptionPolicy.ValidateIncludedPaths(clientEncryptionPolicy.IncludedPaths); + PSClientEncryptionPolicy.ValidateIncludedPaths(clientEncryptionPolicy.IncludedPaths, (int)clientEncryptionPolicy.PolicyFormatVersion); IncludedPaths = new List(); foreach (ClientEncryptionIncludedPath key in clientEncryptionPolicy.IncludedPaths) @@ -87,9 +87,12 @@ public static ClientEncryptionPolicy ToSDKModel(PSClientEncryptionPolicy pSClien } } - PSClientEncryptionPolicy.ValidatePartitionKeyPathsAreNotEncrypted(clientEncryptionPolicy.IncludedPaths, partitionKeyPathTokens); + PSClientEncryptionPolicy.ValidatePartitionKeyPathsAreNotEncrypted( + clientEncryptionPolicy.IncludedPaths, + partitionKeyPathTokens, + pSClientEncryptionPolicy.PolicyFormatVersion); - if(clientEncryptionPolicy.PolicyFormatVersion != 1) + if(clientEncryptionPolicy.PolicyFormatVersion < 1 || clientEncryptionPolicy.PolicyFormatVersion > 2) { throw new InvalidOperationException($"Invalid PolicyFormatVersion:{clientEncryptionPolicy.PolicyFormatVersion} used in Client Encryption Policy. "); } @@ -102,26 +105,44 @@ public static ClientEncryptionPolicy ToSDKModel(PSClientEncryptionPolicy pSClien /// /// Included paths of the client encryption policy. /// Tokens corresponding to validated partition key. - private static void ValidatePartitionKeyPathsAreNotEncrypted(IEnumerable clientEncryptionIncludedPath, List partitionKeyPathTokens) + /// Client encryption policy format version. + private static void ValidatePartitionKeyPathsAreNotEncrypted( + IEnumerable clientEncryptionIncludedPath, + List partitionKeyPathTokens, + int policyFormatVersion) { Debug.Assert(partitionKeyPathTokens != null); - IEnumerable propertiesToEncrypt = clientEncryptionIncludedPath.Select(p => p.Path.Substring(1)); + foreach (string tokenInPath in partitionKeyPathTokens) { - Debug.Assert(String.IsNullOrEmpty(tokenInPath)); - if (propertiesToEncrypt.Contains(tokenInPath.Substring(1))) + Debug.Assert(String.IsNullOrEmpty(tokenInPath)); + + string topLevelPath = tokenInPath.Split('/')[1]; + // paths in included paths start with "/". Get the ClientEncryptionIncludedPath and validate. + IEnumerable encryptedPartitionKeyPath = clientEncryptionIncludedPath.Where(p => p.Path.Substring(1).Equals(topLevelPath)); + + if (encryptedPartitionKeyPath.Any()) { - throw new ArgumentException($"Paths which are part of the partition key({tokenInPath}) may not be included in the Client Encryption Policy. "); + if (policyFormatVersion < 2) + { + throw new ArgumentException($"Path: {encryptedPartitionKeyPath} which is part of the partition key cannot be encrypted with PolicyFormatVersion: {policyFormatVersion}. Please use PolicyFormatVersion: 2. "); + } + + // for the ClientEncryptionIncludedPath found check the encryption type. + if (encryptedPartitionKeyPath.Select(et => et.EncryptionType).FirstOrDefault() != "Deterministic") + { + throw new ArgumentException($"Path: {tokenInPath} which is part of the partition key has to be encrypted with Deterministic type Encryption."); + } } } } - private static void ValidateIncludedPaths(IEnumerable clientEncryptionIncludedPath) + private static void ValidateIncludedPaths(IEnumerable clientEncryptionIncludedPath, int policyFormatVersion) { List includedPathsList = new List(); foreach (ClientEncryptionIncludedPath path in clientEncryptionIncludedPath) { - PSClientEncryptionPolicy.ValidateClientEncryptionIncludedPath(path); + PSClientEncryptionPolicy.ValidateClientEncryptionIncludedPath(path, policyFormatVersion); if (includedPathsList.Contains(path.Path)) { throw new ArgumentException($"Duplicate Path({path.Path}) found.", nameof(clientEncryptionIncludedPath)); @@ -131,7 +152,7 @@ private static void ValidateIncludedPaths(IEnumerable 2 || policyFormatVersion < 1) + { + throw new ArgumentException($"Supported versions of client encryption policy are 1 and 2. "); + } + + clientEncryptionPolicy.PolicyFormatVersion = policyFormatVersion; + } + return clientEncryptionPolicy; } } From be4c25f110515deddbcf6569b9fb40e3202f0a66 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Mon, 20 Jun 2022 14:03:23 +0530 Subject: [PATCH 15/18] Update ChangeLog.md --- src/CosmosDB/CosmosDB/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index 891a1072678d..6beda2c70b04 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Adds support for partition key and id paths to be part of client encryption policy. * Fixed bug related to Update-AzCosmosDBSqlContainer command on containers with Client Encryption Policy. ## Version 1.9.0 From 08c7bdc4023bfeef1ba55e3d98189fb450fd5a49 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Mon, 20 Jun 2022 18:04:36 +0530 Subject: [PATCH 16/18] Update New-AzCosmosDBSqlContainer.md --- src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md index bdda3038d94a..69bbbd9cce5c 100644 --- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md +++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBSqlContainer.md @@ -62,8 +62,7 @@ PS C:\> $includedPath2 = [Microsoft.Azure.Management.CosmosDB.Models.ClientEncry PS C:\> $listofIncludedPaths = New-Object Collections.Generic.List[Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionIncludedPath] PS C:\> $listofIncludedPaths.Add($includedPath1) PS C:\> $listofIncludedPaths.Add($includedPath2) -PS C:\> $newClientEncryptionPolicy = New-Object Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionPolicy -PS C:\> $newClientEncryptionPolicy.IncludedPaths = $listofIncludedPaths +PS C:\> $newClientEncryptionPolicy = [Microsoft.Azure.Management.CosmosDB.Models.ClientEncryptionPolicy]::new($listofIncludedPaths, 2) PS C:\> $newPSSqlClientEncryptionPolicy = [Microsoft.Azure.Commands.CosmosDB.Models.PSSqlClientEncryptionPolicy]::new($newClientEncryptionPolicy) PS C:\> New-AzCosmosDBSqlContainer -AccountName myAccountName -DatabaseName myDatabaseName -ResourceGroupName myRgName -Name myContainerName -PartitionKeyPath /a/b/c -PartitionKeyKind Hash -ClientEncryptionPolicy $newPSSqlClientEncryptionPolicy ``` From fd7a1b10e7b25597a8ebe31c757459df68e289c9 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Tue, 21 Jun 2022 10:08:20 +0530 Subject: [PATCH 17/18] Update PSClientEncryptionPolicy.cs --- src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs index 80afe4835fc8..8b16c1531170 100644 --- a/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs +++ b/src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs @@ -125,13 +125,13 @@ private static void ValidatePartitionKeyPathsAreNotEncrypted( { if (policyFormatVersion < 2) { - throw new ArgumentException($"Path: {encryptedPartitionKeyPath} which is part of the partition key cannot be encrypted with PolicyFormatVersion: {policyFormatVersion}. Please use PolicyFormatVersion: 2. "); + throw new ArgumentException($"Path: {encryptedPartitionKeyPath.Select(et => et.Path).FirstOrDefault()} which is part of the partition key cannot be encrypted with PolicyFormatVersion: {policyFormatVersion}. Please use PolicyFormatVersion: 2. "); } // for the ClientEncryptionIncludedPath found check the encryption type. if (encryptedPartitionKeyPath.Select(et => et.EncryptionType).FirstOrDefault() != "Deterministic") { - throw new ArgumentException($"Path: {tokenInPath} which is part of the partition key has to be encrypted with Deterministic type Encryption."); + throw new ArgumentException($"Path: {encryptedPartitionKeyPath.Select(et => et.Path).FirstOrDefault()} which is part of the partition key has to be encrypted with Deterministic type Encryption."); } } } From 6efbf8bcce3b3bd90fd06c330bdf0e935dddfe54 Mon Sep 17 00:00:00 2001 From: Santosh Kulkarni <66682828+kr-santosh@users.noreply.github.com> Date: Tue, 21 Jun 2022 11:45:25 +0530 Subject: [PATCH 18/18] Update src/CosmosDB/CosmosDB/ChangeLog.md Co-authored-by: Beisi Zhou --- src/CosmosDB/CosmosDB/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index 6beda2c70b04..adb00f14b1a6 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release -* Adds support for partition key and id paths to be part of client encryption policy. +* Added support for partition key and id paths to be part of client encryption policy. * Fixed bug related to Update-AzCosmosDBSqlContainer command on containers with Client Encryption Policy. ## Version 1.9.0